Fix the ChangeLog to reflect what's actually in SVN.
[mono.git] / mono / metadata / ChangeLog
1 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
2
3         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
4         part of #498692.
5
6 2009-04-23 Tom Hindle <tom_hindle@sil.org>
7
8         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
9         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
10
11 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
12
13         * security-core-clr.c: Avoid redundant checks for platform code, 
14         e.g. check for method and for class (very common) and check
15         for class and outer class (less common)...
16
17 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
18
19         * reflection.c: Avoid returning random cattrs for synthetic methods.
20         Fixes #498545.
21
22 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
23
24         * assembly.c: assemblies in the GAC should never be shadow-copied.
25
26 2009-04-26  Mark Probst  <mark.probst@gmail.com>
27
28         * domain.c, domain-internals.h: Disable
29         track_resurrection_{objects,handles}_hash in MonoDomain if using
30         SGen.
31
32 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
33
34         * metadata-verify.c: Verify the param table.
35
36 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
37
38         * metadata-verify.c (verify_typedef_table): Range check FieldList and
39         MethodList.
40
41         * metadata-verify.c (verify_method_table): Proper check the ParamList
42         field.
43
44 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
45
46         * metadata-verify.c (verify_method_table): Check for runtime
47         implemented functions such as delegate .ctors. Remove spurious
48         printf.
49         
50 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
51
52         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
53
54 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
55
56         Don't allocate MonoGenericInfo for ownerless generic params.
57         * class-internals.h (MonoGenericParam::info): Move field to ...
58         (MonoGenericParamFull): ... this.  New struct.
59         (MonoGenericContainer::type_params): Change type to
60         MonoGenericParamFull.
61         (MonoGenericParam, MonoGenericContainer): Update accessors.
62         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
63         'info' field for ownerless generic param.
64         (mono_metadata_load_generic_params): Update to changes.
65         * reflection.c (mono_reflection_create_generic_class): Likewise.
66         (reflection_methodbuilder_to_mono_method): Likewise.
67         (mono_reflection_initialize_generic_parameter): Likewise.
68
69 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
70
71         Don't use MonoGenericParamInfo for ownerless generic params.
72         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
73         use ParamInfo class at all.
74         (mono_class_from_generic_parameter): Use them.
75         (make_generic_param_class): Fix a couple of instances where 'pinfo
76         == NULL' wasn't handle.
77
78 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
79
80         * class.c (make_generic_param_class): Carve out of ...
81         (mono_class_from_generic_parameter): ... here.
82
83 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
84
85         Simplify mono_class_from_generic_parameter
86         * class-internals.h (MonoGenericParamInfo::token): New field.
87         * metadata.c (mono_metadata_load_generic_params): Initialize it
88         from metadata.
89         * class.c (mono_class_from_generic_parameter): Use it instead of
90         searching through metadata.
91
92 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
93
94         * metadata-verify.c: Add verification of the method table.
95
96 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
97
98         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
99         Delegate::Invoke optimization.
100
101 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
102
103         * appdomain.c (mono_domain_create_appdomain_internal): Free the
104         string returned by get_shadow_assembly_location_base.
105
106         * appdomain.c (get_shadow_assembly_location_base): Add a comment
107         about caller's ownership.
108
109 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
110
111         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
112         reflection memory on domain unload.
113
114         * domain.c (mono_domain_free): Don't free refobject_hash, let the
115         reflection cleanup code do it.
116
117         * domain-internals.h: Add mono_reflection_cleanup_domain.
118
119         This fixes a memory leak for managed mirrors of reflection objects
120         on domain unload. 
121
122 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
123
124         * metadata-verify.c: Implement more verification of the field table.
125
126 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
127
128         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
129         doesn't try to parse the input assembly, which can be broken.
130
131 2009-04-23  Mark Probst  <mark.probst@gmail.com>
132
133         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
134         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
135         by using the lowest bit in the link to store whether the link is
136         tracked.  Move the track_resurrection hashes into boehm-gc.c.
137
138 2009-04-22  Miguel de Icaza  <miguel@novell.com>
139
140         * Makefile.am: Split the console support in platform specific code
141         and put together a framework for making this easy in the future so
142         that we can start splitting code instead of having a mess of PLATFORM_WIN32
143
144 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
145
146         * pedump.c: Fix a warning.
147
148 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
149
150         * verify.c (mono_delegate_type_equal): Compare valuetypes using
151         mono_class_from_mono_type to avoid bad interactions with the dual representation
152         of the generic type definition.
153
154 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
155
156         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
157         get the MonoClass for the call context type as it might be a generic
158         instance.
159
160         Fixes #491483.
161
162 2009-04-21  Mark Probst  <mark.probst@gmail.com>
163
164         * object-internals.h: The Thread object has no execution_context
165         member anymore.
166
167         * threads.c, threadpool.c, threads-types.h: Accessor functions for
168         the execution context.
169
170         * appdomain.c: Bump corlib version.
171
172 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
173
174         * verify.c (do_newobj): Improve error message.
175
176 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
177
178         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
179         is nested in the filter block.
180
181         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
182         block is not fully nested.
183
184         Fixes #495656.
185
186 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
187
188         * verify.c (verify_type_compatibility_full): Compare MonoClass and
189         not MonoType to check for equality of valuetypes as the generic type
190         definition allows for two different encodings: the generic type definition
191         class or a generic instance over the GTD arguments.
192
193         Fixes #496175.
194
195 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
196
197         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
198
199         * verify.c (do_initobj): Improve error message.
200
201 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
202
203         * metadata-verify.c: Enable pe verification as the issue with #496453
204         is that the authenticode data directory have a different unspecified
205         format. Ignore it for now.
206
207         * pedump.c: Run the metadata verifier together with the IL verifier.
208
209         Fixes ##496453.
210
211 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
212
213         * metadata-verify.c: Temporarily disable pe verification due to #496453.
214
215 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
216
217         * class.c (can_access_type): Check visibility against
218         the element type for pointers and arrays.
219
220         Fixes #496150.
221
222 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
223
224         * metadata-verify.c: Fix cli and table verification to use information
225         from the MonoImage. A lot of duplicated code got killed.
226
227 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
228
229
230         This patch starts to integrate the metadata verifier with the runtime code.
231
232         This patch causes major regression in functionality for the metadata verifier
233         as cli and table verification are disabled since they require to be ported to
234         use MonoImage information.
235
236         * image.c (do_mono_image_load): Split the code in this function
237         into mono_image_load_pe_data and mono_image_load_cli_data.
238         Add     care_about_pecoff parameter to not load pecoff data.
239         Call into the metadata verifier for pecoff and cli verification.
240
241         * image.c (mono_image_open_raw): New function that doesn't perform
242         any parsing of the image contents.
243         
244         The reason for the 3 new functions is to give pedump better control
245         into the interaction with the verifier.
246
247         * metadata-internals.h: Add new functions from image.c as part of the
248         internal mono API.
249
250         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
251         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
252         to make those functions work together with the runtime.
253
254         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
255         true if the image needs to be verified.
256
257         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
258
259         * pedump.c: Use new metadata verifier API.
260
261 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
262
263         * object.c (mono_install_vtable_trampoline): Make this receive a
264         trampoline creation function instead of trampoline, allowing the JIT
265         to use a different trampoline for each vtable.
266
267 2009-04-18  Mark Probst  <mark.probst@gmail.com>
268
269         * object.c (mono_raise_exception): Don't reset the thread abort
270         exception state here.
271
272 2009-04-18  Mark Probst  <mark.probst@gmail.com>
273
274         * icall-def.h: New icall for getting the thread abort exception
275         state for a thread.
276
277         * object.c, thread.c, object-internals.h: A thread's abort
278         exception state is now a GC handle.  To get the object it stands
279         for, we must move it into the current app domain, if it's
280         different than the one where it originated from.
281
282         * appdomain.c: Bump corlib version.
283
284         * domain.c, domain-internals.h: New function for setting the
285         domain and migrate the thread abort exception or not.
286
287 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
288
289         * metadata-verify.c: Add initial verification of the
290         field table.
291
292 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
293
294         * metadata-verify.c: Add a macro to conditionally enable
295         dumping of verification information. Add  make_coded_token
296         and search_sorted_table to enable search sorted tables
297         by a given coded token.
298
299 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
300
301         * metadata-verify.c: Add array mapping from table index
302         to description offset. Add get_col_offset and get_col_size
303         functions.
304
305 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
306
307         * metadata-verify.c: Add remaining table descriptions offsets.
308         Add remaining coded index descriptions.
309
310 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
311
312         * metadata-verify.c: Fixed constant table description.
313         Fixed calculation of HasCustomAttribute coded index size.
314         Fixed calculation of size for many table indexes. 
315
316 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
317
318         * pedump.c (dump_metadata): Dump table offset instead
319         of useless pointer in memory.
320
321 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
322
323         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
324
325 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
326
327         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
328         a missing of for interface types.
329
330 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
331
332         * metadata-verify.c (verify_pe_optional_header): Add comment of why
333         the code is commented.
334
335         * metadata-verify.c (verify_resources_table): Remove spurious printf
336         and don't fail if there are unmanaged resources. Gmcs generates a useless
337         one     for all assemblies - I bet it's some MS compatibility junk.
338
339 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
340
341         * metadata-verify.c (verify_typedef_table): Verify the extends field.
342
343         * metadata-verify.c (mono_image_verify): Add a is_corlib.
344
345         * verify-internals.h: Same.
346
347         * pedump.c: Fix for mono_image_verify new signature.
348
349 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
350
351         * metadata-verify.c (verify_typedef_table): Verify for some invalid
352         flags combinations.
353
354 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
355
356         * metadata-verify.c (verify_module_table): Ignore the generation field.
357
358 2009-04-15  Martin Baulig  <martin@ximian.com>
359
360         * debug-mono-symfile.c
361         (mono_debug_symfile_lookup_location): Don't print a warning for
362         unknown extended opcodes if they're within 0x40 and 0x7f.
363
364 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
365
366         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
367         invoke signatures returning an enum. Fixes #494847.
368
369 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
370
371         * metadata-verify.c: Initial code to verify the typedef table.
372
373 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
374
375         * verify.c (mono_method_verify): Don't fail if an unconditional branch
376         with non empty stack happens before the beginning of a try block.
377
378         Fixes #494812.
379
380 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
381
382         * metadata-verify.c: Verify typename and typenamespace fields of
383         the typeref table.
384
385 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
386
387         * metadata-verify.c: Initial code to verify the typeref table.
388
389 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
390
391         * verify.c (verify_delegate_compatibility): Fix error message.
392
393 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
394
395         * security-core-clr.c: Fix typo
396
397 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
398
399         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
400         a MonoGHashTable to keep its values alive.
401         (emit_marshal_boolean): Fix a warning.
402
403 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
404
405         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
406         not have any interface configured for IPv4/IPv6.
407
408 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
409
410         * assembly.c: fix typo in error message.
411
412 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
413
414         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
415         allocating the location holding the this argument to prevent
416         'too many root sets' errors.
417
418         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
419         to mark fields as special static.
420         (mono_field_static_get_value): Handle special static fields.
421         (mono_field_static_set_value): Ditto.
422
423         * class-internals.h (struct _MonoClassField): Document this.
424
425 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
426
427         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
428           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
429           case.  This will handle when managed code returns null to native code.
430
431         Code is contributed under MIT/X11 license.
432
433 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
434
435         * object.c (build_imt_slots): Changing a free to a g_free to match
436           the g_malloc0 in add_imt_builder_entry that allocated this memory.
437
438         Code is contributed under MIT/X11 license.
439
440 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
441
442         * marshal.c (emit_marshal_boolean): Adding code to ensure that
443           the correct TRUE value is passed through the marshaling layer.
444
445         Code is contributed under MIT/X11 license.
446
447 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
448
449         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
450         correctly. Fixes #492330.
451         
452         * marshal.c: Fix the embedding of object pointers into JITted code in
453         the native-to-managed wrappers by allocating some GC tracked memory, and
454         embedding the address of that.
455
456 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
457
458         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
459         pointers into the vtable.
460
461 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
462
463         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
464
465         * verify.c (verify_ldftn_delegate): Improve error message.
466
467 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
468
469         * reflection.c (my_mono_class_from_mono_type): Remove.
470
471 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
472
473         Prepare to reduce memory usage of owner-less generic parameters (1/n)
474         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
475         and constraints fields into ...
476         (MonoGenericParamInfo): ... this.
477         (mono_generic_param_info, mono_generic_container_get_param_info):
478         New accessors.
479         * class.c, debug-helpers.c, icall.c: Update to changes.
480         * metadata.c, reflection.c, verify.c: Likewise.
481
482 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
483
484         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
485
486         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
487         
488         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
489         booleans with sbytes.
490
491 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
492
493         * class.c (can_access_instantiation): Verify accesibility of element types
494         for arrays and pointers.
495
496         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
497
498         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
499
500         Fixes #493068.
501
502 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
503
504         * verify.c (do_invoke_method): Improve error messages.
505
506 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
507
508         * verify.c:  Fixing the MSVC build.
509
510         Code is contributed under MIT/X11 license.
511
512 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
513
514         * security-core-clr.c: Simplify get_reflection_caller not to call
515         mono_method_get_last_managed (another stack walk) and adjust the
516         callers to handle a (should not happen) NULL return value.
517
518 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
519
520         Add accessors to some MonoGenericParam fields
521         * class-internals.h (mono_generic_param_owner): New accessor.
522         (mono_generic_param_num): Likewise.
523         (mono_type_get_generic_param_owner): New helper.
524         (mono_type_get_generic_param_num): New helper.
525         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
526
527 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
528
529         * class-internals.h (mono_generic_container_get_param): New wrapper.
530         * class.c, icall.c, metadata.c, verify.c: Use it.
531
532 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
533
534         Fix gtest-252.cs
535         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
536         the standard case/loop.  In particular, don't complain about
537         references to generic type definitions.
538
539 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
540
541         * debug-helpers.c (dis_one): Decode string arguments.
542
543 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
544
545         * pedump.c (dump_verify_info): Dump type name correctly.
546
547 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
548
549         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
550         are larger than code size.
551
552         This can happen in valid code if the try/catch block is not followed by any instruction
553         and do a backward branch on the leave instruction.
554
555         Fixes #492494.
556
557 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
558
559         * security-core-clr.c: Fix typo while comparing second method names
560         in can_avoid_corlib_reflection_delegate_optimization
561
562 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
563
564         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
565
566         Fixes #487738.
567
568 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
569
570         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
571         a MVAR using a class context.
572
573         Fixes #490335.
574
575 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
576
577         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
578
579         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
580
581         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
582         functions supplied by the JIT for the SGEN GC.
583
584         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
585         
586 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
587
588         monitor.c (mono_monitor_try_enter_internal):
589         Added calls to profile monitor contentions.
590         Also duplicated a small piece of code (the "get the monitor" logic)
591         from the fast path to the slow path, and changed the relevant goto
592         statements, so that monitor acquisition events can be emitted from the
593         slow path (this is by Paolo Molaro).
594
595 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
596
597         * profiler.c, profiler.h, profiler-private.h:
598         Added support for profiling monitor contentions.
599
600 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
601
602         * metadata-verify.c: Verify the modules table.
603
604 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
605
606         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
607         using the context of the method been verifier and not of the method been called.
608
609         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
610         safely inflate generic types. 
611
612 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
613
614         * security-core-clr.c: Change the strategy for checking the 
615         "reflection using delegates optimization" to avoid unneeded 
616         attributes in multiple class libraries.
617
618 2009-04-02  Mark Probst  <mark.probst@gmail.com>
619
620         * sgen-gc.c: Remove object element in the disappearing link struct
621         by storing the object pointer in the link.
622
623 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
624
625         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
626
627 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
628
629         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
630
631         * verify.c (mono_method_verify): Do proper bounds checking of exception
632         clause ranges.
633
634 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
635
636         * loader.c (mono_field_from_token): Don't crash if the field parent could
637         not be decoded.
638
639 2009-03-31  Mark Probst  <mark.probst@gmail.com>
640
641         * sgen-gc.c: Execute critical finalizers after ordinary
642         finalizers.
643
644         * class-internals.h, domain.c: Add CriticalFinalizerObject to
645         mono_defaults.
646
647 2009-03-31 Jb Evain <jbevain@novell.com>
648
649         * verify.c (do_ldstr): don't check if a string is in the user strings
650         heap if the current image is dynamic.
651
652 2009-03-31  Mark Probst  <mark.probst@gmail.com>
653
654         * sgen-gc.c: Wait until the last finalizer has executed when
655         returning from WaitForPendingFinalizers.
656
657 2009-03-31  Martin Baulig  <martin@ximian.com>
658
659         * mono-debug-debugger.h (MonoDebuggerEvent): Add
660         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
661         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
662         (mono_debugger_event_create_appdomain): New function.
663         (mono_debugger_event_unload_appdomain): New function.
664
665         * appdomain.c (mono_domain_create_appdomain_internal): Call
666         mono_debugger_event_create_appdomain().
667
668 2009-03-31  Martin Baulig  <martin@ximian.com>
669
670         * mono-debug-debugger.c
671         (mono_debugger_register_class_init_callback): Also register the
672         class init callback if the class is already initialized to make
673         things work with shadow copied assemblies.
674
675 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
676
677         * security-core-clr.c
678         (mono_security_core_clr_ensure_reflection_access_field): Let 
679         critical code access the field (just like we do for methods). Use
680         check_field_access helper.
681         (mono_security_core_clr_ensure_reflection_access_method): Use 
682         check_field_access helper.
683
684 2009-03-31  Mark Probst  <mark.probst@gmail.com>
685
686         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
687         call the run-finalize function directly.
688
689         * gc.c, gc-internal.h: Make run_finalize() non-static.
690
691 2009-03-31  Mark Probst  <mark.probst@gmail.com>
692
693         * sgen-gc.c: Use a separate struct for disappearing links.
694
695 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
696
697         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
698         * MaxIOVectorLength enabled, just ignore them.
699         Fixes bug #349688.
700
701 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
702
703         * metadata-verify.c: Fix eglib build.
704
705 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
706
707         * threads-types.h: Fix the win32 build.
708
709 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
710
711         * class.c: move coreclr inheritance/override checks to 
712         security-core.clr.c
713         * security-core.clr.c|h: add code from class.c with additional
714         documentation. Fix override check when the method is not critical.
715
716 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
717
718         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
719         (match_class): Ditto.
720
721 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
722
723         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
724
725         * metadata-verify.c: Implement table layout row size calculation. Verify
726         the total size of the tables.
727
728 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
729
730         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
731
732 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
733
734         * appdomain.c:
735         * console-io.[ch]: added new mono_console_init() to make sure that
736         file descriptors 0, 1 and 2 are opened.
737         Bug #489019 fixed.
738
739 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
740
741         * appdomain.h: Export a new callback type and a new function to
742         set this callback. This allow a mono host to provide it's own
743         definition for "platform code".
744         * metadata-internals.h: Add a core_clr_platform_code flag on 
745         _MonoImage to (cache and) know if it is representing platform 
746         code.
747         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
748         on platform code images.
749         * security-core-clr.c|h 
750         (mono_security_set_core_clr_platform_callback): Allow the host
751         to provide it's own platform check definition.
752         (mono_security_core_clr_determine_platform_image): Detect if an 
753         image is platform code (using the specified callback).
754         (mono_security_core_clr_is_platform_image): Return cached value 
755         for platform code.
756
757 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
758
759         * threads.c (mono_create_thread): New helper function to wrap CreateThread
760         which has different parameter types for the 'tid' argument in windows and
761         the io-layer.
762
763         * appdomain.c attach.c threads.c: Use the new helper.
764
765 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
766
767         * metadata-verify.c: Verify valid table bits.
768
769 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
770
771         * metadata-verify.c (verify_metadata_header): Store size in the size field.
772
773         * metadata-verify.c: Add initial table schema verification.
774
775 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
776
777         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
778         obtain the refclass argument needed by mono_param_get_objects (). Fixes
779         #488383.
780
781         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
782
783         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
784
785 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
786
787         * security-core-clr.c: Add/update documentation
788
789 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
790
791         * marshal.c (emit_marshal_object): Generate code to throw an exception
792         instead of throwing it. Fixes #488670.
793
794 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
795
796         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
797         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
798         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
799         and add a call to mono_security_core_clr_ensure_delegate_creation
800         to do the extra checks required by CoreCLR.
801         * security-core-clr.c|h: Add function to check delegate creation,
802         both in the binding and accessibility, under CoreCLR.
803
804 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
805
806         * reflection.c (mono_reflection_create_dynamic_method): when 
807         coreclr is enabled make sure that every resolved object are
808         checked (e.g. field and method access).
809         * security-core-clr.c|h: Add function to check objects resolved
810         when a dynamic method is created.
811
812 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
813
814         * metadata-verify.c: Cache directory rva translations.
815
816         * metadata-verify.c: Add cli-header and streams verification.
817
818 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
819
820         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
821         the wrong offset (8 instead of 6).
822
823 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
824
825         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
826         methods, return the native function address itself. Fixes
827         #487758.
828
829 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
830
831         * console-io.c: some of the values for control characters might not be
832         present.
833
834 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
835
836         * exception.c|h: Add helpers to create [Field|Method]AccessException
837         * icall.c: Add required coreclr check calls for field reflection.
838         Move the existing (method) check logic into security-core-clr.c
839         * security-core-clr.c: Add functions to check if the access of a
840         field or method is allowed when reflecting under coreclr. This is
841         mostly done using a stack walk to find the "real" caller: i.e. the
842         code that is calling the reflection
843
844 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
845
846         * gc-internal.h: Change location of gc_wrapper.h
847
848 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
849
850         * class.c: Simplification to coreclr checks for overrides that
851         makes it easier to set breakpoints.
852
853 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
854
855         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
856         mono_security_core_clr_method_level): Avoid potential 
857         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
858         user/application code) and make it easier to set breakpoints
859
860 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
861
862         * metadata-verify.c: Reject cli header tables that mono don't handle.
863
864 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
865
866         * pedump.c: Fix CLI header dumping.
867
868 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
869
870         * metadata-verify.c: More CLI header verification.
871
872 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
873
874         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
875
876 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
877
878         * metadata-verify.c: Initial verification of the CLI header.
879
880 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
881
882         * metadata-verify.c (verify_resources_table): Fix verification of zero
883         sized resource section and id entries count.
884
885 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
886
887         * icall.c: Handle user types in many Type icalls. Fixes #486303.
888
889 2009-03-17  Jb Evain  <jbevain@novell.com>
890
891         * profiler.c: call mono_gc_base_init from mono_profiler_load.
892
893 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
894
895         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
896         (mono_gc_make_descr_for_array): Ditto.
897
898 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
899
900         * verify.c (mono_verifier_is_class_full_trust): Add support for
901         CoreCLR security mode where trusted assemblies are defined as
902         "platform code".
903
904 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
905
906         * metadata-verify.c: Add minimal PECOFF resource verification.
907
908 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
909
910         * metadata-verify.c: Be less restrictive with some coff fields.
911
912 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
913
914         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
915         params as boxed values on stack. Fixes #485706.
916
917 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
918
919         * console-io.c: the termios values may vary in different flavors of unix.
920
921 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
922
923         * console-io.[ch]: return the entire set of control characters when
924         initializing the terminal.
925         * appdomain.c: bump corlib version.
926
927 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
928
929         * mono-perfcounters.c: added support for in-process custom
930         performance counters.
931
932 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
933
934         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
935
936 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
937
938         * metadata-verify.c: Verify the data pointed by the import table. 
939
940 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
941
942         * metadata-verify.c (load_data_directories): Store data
943         directory contents.
944
945         * metadata-verify.c: Verify the import table. 
946
947 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
948
949         * metadata-verify.c: Verify data directories.
950
951 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
952
953         * metadata-verify.c: Check section header flags.
954
955 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
956
957         * appdomain.c: if the assembly name is a shadow-copied file, return
958         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
959         in mono_make_shadow_copy.
960         * icall.c: if the assembly name is a shadow-copied file, replace it
961         with the original assembly path.
962
963         Bug #484244 fixed. NUnit tests for corlib can be run without
964         --noshadow now.
965
966 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
967
968         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
969         entries when the table is reallocated.
970
971         * icall.c: Allocate the memory used by the mono_ptr_array macros using
972         mono_gc_alloc_fixed () since it contains GC refs.
973
974 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
975
976         * reflection.c (ensure_complete_type): New helper function to call
977         type resolve handlers for unfinished dynamic types.
978         (resolve_object): Call it for MonoClassFields. Fixes #483852.
979
980 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
981
982         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
983         #483247.
984
985 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
986
987         * appdomain.c (get_shadow_assembly_location): Fix memleak.
988
989 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
990
991         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
992         between GCHandles of type WeakTrackResurrection and the objects they
993         point to.
994
995         * gc.c: Partly implement the sematics of GCHandles of type 
996         WeakTrackResurrection: these handles should only be cleared after the
997         finalizer of the object they are pointing to has ran.
998
999 2009-03-06  Mark Probst  <mark.probst@gmail.com>
1000
1001         * icall.c: Partially revert r126631 because using the jump
1002         trampolines for generic shared methods makes it superfluous.
1003
1004 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
1005
1006         * threads.c (handle_store): Create the 'threads' hash table with the proper
1007         MONO_HASH_VALUE_GC type.
1008
1009 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
1010
1011         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
1012         FIRST_GC_TRACKED.
1013
1014         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
1015         and LAST_GC_TRACKED as a GC root.
1016
1017         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
1018
1019         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
1020         the static data even if it consists of 1 reference.
1021
1022         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
1023         if there is a GC descriptor.
1024
1025         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
1026         instead of through the GC since they contain no object references.
1027
1028 2009-03-05  Mark Probst  <mark.probst@gmail.com>
1029
1030         * generic-sharing.c (instantiate_other_info): Always return a jump
1031         trampoline for method code.
1032
1033 2009-03-05  Marek Habersack  <mhabersack@novell.com>
1034
1035         * culture-info-tables.h: generated to include the en-tt culture.
1036
1037 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
1038
1039         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
1040         capture the thread context.
1041
1042         * object.c (mono_async_result_new): Cache the invoke wrappers to
1043         ExecutionContext::Capture.
1044
1045 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
1046
1047         * marshal.h: Add a prototype for what mono_compile_method returns
1048         for invoke wrappers.
1049
1050         * gc.c: Use the new prototype declaration.
1051
1052 2009-03-04  Geoff Norton  <gnorton@novell.com>
1053
1054         * boehm-gc.c: Add some MONO_LOG tracing for the GC
1055         * gc-internal.h:
1056         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
1057
1058 2009-03-04  Martin Baulig  <martin@ximian.com>
1059
1060         * mono-debug.h
1061         (mono_debugger_runtime_invoke): Removed.
1062
1063         * mono-debug-debugger.c
1064         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
1065
1066 2009-03-02  Martin Baulig  <martin@ximian.com>
1067
1068         * mono-debug.h
1069         (mono_debugger_unhandled_exception): Removed.
1070         (mono_debugger_handle_exception): Removed.
1071         (mono_debugger_throw_exception): Removed.
1072
1073         * mono-debug.c
1074         (mono_debug_debugger_version): Bump to 5.
1075
1076         * mono-debug-debugger.c: Moved the exception handling code to
1077         ../mini/debug-mini.c
1078
1079 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1080
1081         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
1082         finalize_objects_hash.
1083
1084         * gc.c: Use the separate lock to access the finalize_objects_hash field.
1085         
1086         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
1087         field.
1088
1089         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
1090         cache.
1091
1092         * image.c (mono_image_close): Free it.
1093         
1094         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
1095         allowing a creation of a wrapper which invokes its method using a CALLVIRT
1096         on the this argument.
1097
1098         * gc.c (run_finalize): Optimize the calling of the finalizers.
1099
1100 2009-03-03  Martin Baulig  <martin@ximian.com>
1101
1102         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
1103         of the `MonoGenericInst' changes.
1104
1105 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1106
1107         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
1108         mono_array_class_get_cached to reduce locking contention. Extract
1109         a domain var.
1110
1111         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
1112         intermediary managed arrays. Use caching version of mono_array_new
1113         to allocate the result array.
1114
1115         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
1116
1117         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
1118
1119         * locales.c (create_names_array_idx):  Use mono_array_new_cached
1120         to reduce locking contention.
1121
1122 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1123                 
1124         * object.c (mono_method_add_generic_virtual_invocation): Put back the
1125         thunk builder code for the non-interface case.
1126
1127 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
1128
1129         * object.c (get_generic_virtual_entries): New helper function to collect
1130         the virtual generic method instances which need to be added to an IMT
1131         thunk.
1132         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
1133         Instead of creating a new IMT thunk, reset the vtable slot to the
1134         trampoline, the thunk will be created the next time the trampoline is called.
1135         (build_imt_slots): Add support for virtual generic methods in interfaces by
1136         adding to the IMT thunk all the methods registered using 
1137         mono_method_add_generic_virtual_invocation ().
1138
1139         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
1140         (struct _MonoIMTCheckItem): Ditto.
1141
1142         * object.c (mono_method_add_generic_virtual_invocation): Take a
1143         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
1144         the IMT thunk to include all items.
1145         
1146         * object.c (mono_class_create_runtime_vtable): Add a missing
1147         mono_loader_unlock ().
1148
1149 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1150
1151         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1152
1153         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
1154
1155 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1156
1157         * object-internals.h: Rename _MonoReflectionEvent to
1158         MonoReflectionMonoEvent so it reflects the right managed type.
1159         Add a MonoReflectionEvent that correctly represents System.EventInfo.
1160
1161         * icall.c:
1162         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
1163         type.
1164
1165 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1166
1167         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
1168         intermediary managed arrays. Use caching version of mono_array_new
1169         to allocate the result array.
1170
1171 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1172
1173         * reflection.c: Use cached version of mono_array_new alongside
1174         the mono_reflection_get_custom_attrs_by_type call path.
1175
1176 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1177
1178         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
1179         intermediary managed arrays. Use caching version of mono_array_new
1180         to allocate the result array.
1181
1182         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
1183
1184 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1185
1186         * icall.c: Add small implementation of a growable stack bound array.
1187
1188         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
1189
1190         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
1191         intermediary managed arrays. Use caching version of mono_array_new
1192         to allocate the result array.
1193
1194 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
1195
1196         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
1197         helps Enum::CompareTo to be implemented without reboxing all enums
1198         to their underlying type.
1199 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
1200
1201         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
1202         since it acquires a global lock leading to scalability problems.
1203
1204         * profiler.c: Make the stat profiler work with multiple appdomains, this
1205         currently only works when no appdomains are unloaded.
1206
1207 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1208
1209         * appdomain.c: make the check to avoid copying when the assembly is
1210         already shadow copied actually work.
1211
1212 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
1213
1214         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1215
1216         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
1217         changes to the managed side.
1218
1219 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
1220
1221         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
1222         classes + a separate lock for it, as it is used frequently at runtime, not
1223         just during metadata loading/JIT compilation.
1224
1225         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
1226         for szarrays.
1227         
1228         * object-internals.h (mono_class_from_name_cached): New macro to cache
1229         the results of the lookup locally without having to declare a static
1230         variable to hold it.
1231         (mono_class_get_field_from_name_cached): Ditto.
1232         (mono_array_class_get_cached): Ditto.
1233
1234         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
1235         the new macros.
1236         
1237         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
1238         slower search in metadata.
1239
1240         * pedump.c: Fix a warning.
1241
1242 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
1243
1244         * reflection.c (encode_locals): Add checks for user types.
1245         (method_encode_clauses): Ditto.
1246         (method_encode_code): Ditto.
1247         (mono_image_create_token): Ditto.
1248
1249         * object-internals.h: Change the type of more fields from MonoReflectionType*
1250         to MonoObject*.
1251
1252 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
1253
1254         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
1255         the a thread does not suspend within 100ms.
1256
1257         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
1258         in addition to StopRequested as well.
1259
1260         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
1261
1262         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
1263         search the method_hash before inserting a new entry, to avoid crashes when
1264         the same method is inserted multiple times, causing the old 
1265         MonoDebugMethodInfo structure to be freed by the value dtor function.
1266
1267 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1268
1269         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
1270         SO_EXLUSIVEADDRUSE where available.
1271
1272 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
1273
1274         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
1275         runtime invoke wrappers, this time it is string ctor wrappers, which
1276         pass a dummy string as 'this' instead of their obj argument. Fixes
1277         #478473.
1278
1279 2009-02-21  Jb Evain  <jbevain@novell.com>
1280
1281         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1282         only get create_culture once.
1283
1284 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
1285
1286         * reflection.c (mono_reflection_setup_internal_class): Move the user type
1287         check before the locking.
1288         
1289         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
1290         (mono_reflection_create_runtime_class): Ditto.
1291         (mono_reflection_sighelper_get_signature_local): Ditto.
1292         (mono_reflection_sighelper_get_signature_field): Ditto.
1293
1294         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
1295         is a System.MonoType object or similar.
1296         (monotype_cast): New helper function to cast a MonoObject to a 
1297         MonoReflectionType object.
1298
1299         * object-internals.h: Change MonoReflectionType* members in structures to
1300         MonoObject* members to force the usage of the monotype_cast () function.
1301
1302         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
1303         structures/arrays. This causes us to assert instead of crashing when 
1304         instances of user defined subclasses of System.Type are encountered.
1305
1306 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1307
1308         * cil-coff.h:
1309         * icall-def.h:
1310         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
1311         win32 resource loaded from a PE file.
1312
1313         * image.c: fix mono_image_lookup_resource.
1314
1315 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1316
1317         * icall-def.h:
1318         * threads-types.h:
1319         * threads.c: added internal call for WaitHandle.SignalAndWait.
1320
1321 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
1322
1323         * cominterop.c : Adding cominterop_type_from_handle and 
1324           registering it as an icall.  Replacing all references
1325           to type_from_handle.
1326
1327         Code is contributed under MIT/X11 license.
1328
1329 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1330
1331         * Makefile.am: Add lock-tracer.h and lock-trace.c.
1332
1333         * appdomain.c: Call the tracer init function.
1334
1335         * domain-internals.h: Enable the tracer for the domain locks.
1336
1337         * image.c: Enable the tracer for image locks.
1338
1339         * loader.c: Enable the trace for the loader lock.
1340
1341         * lock-tracer.h:
1342         * lock-tracer.c: Initial implementation of the lock trace utility.
1343         The tracer requires a compile time define to be enabled and a env var
1344         to be enabled at runtime.
1345
1346 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1347
1348         * domain.c (mono_domain_code_foreach): Improve documentation.
1349
1350 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1351
1352         * appdomain.c:
1353         * generic-sharing.c:
1354         * object.c:
1355         * reflection.c:  Adjust locking order to the new semantics where the loader lock
1356         comes first.
1357
1358 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
1359
1360         * domain.c: Add mono_domain_code_* functions that perform locking
1361         around the domain codeman.
1362
1363         * domain-internals.h: Export those functions.
1364
1365         * object.c: Use new functions instead of acquiring the domain lock.
1366
1367 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
1368
1369         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
1370         delegate. Fixes #477396.
1371
1372 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1373
1374         * reflection.c (create_custom_attr): Get rid of alloca.
1375
1376 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
1377
1378         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
1379           Adding exception handling for all CCW calls.
1380
1381         Code is contributed under MIT/X11 license.
1382
1383 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1384
1385         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
1386
1387         * marshal.c (emit_marshal_boolean): Add null checks to the new 
1388         native->managed marshalling code. Fixes #476247.
1389
1390 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1391
1392         * class.c (mono_class_get_vtable_entry): Move the addition of
1393         static rgctx invoke wrappers for vtable methods here, this simplifies
1394         a lot of code and causes fewer rgctx wrappers to be created.
1395
1396         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
1397         name of the statistics to begin with an uppercase.
1398
1399 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1400
1401         * reflection.c: Revert previous change as it breaks the build.
1402         
1403 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1404
1405         * verify.c: Properly handle SZARRAY element type.
1406
1407         Fixes #474271.
1408
1409 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1410
1411         * reflection.c (mono_image_create_method_token): Correctly encode
1412         MethodDef MemberRefParent token.
1413
1414         Fixes #472845.
1415
1416 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1417
1418         * image.c (mono_image_close): Delete the critical section before
1419         freeing the memory holding it.
1420
1421 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1422
1423         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
1424         Fixes #476257.
1425
1426 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1427
1428         * pedump.c (main): Call mono_marshal_init so pedump
1429         doesn't crash.
1430
1431 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1432
1433         * loader.c (method_from_memberref): Properly fix #474271 and
1434         don't break the runtime bad.
1435
1436 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1437
1438         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
1439         (mono_domain_alloc0): Ditto.
1440
1441 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1442
1443         * loader.c (method_from_memberref): Don't abort if the array
1444         method is not found. A regular loader failure is more informative
1445         and correct.
1446
1447         Fixes #474271.
1448
1449 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1450
1451         *loader.c: Guard MonoImage::method_cache/methodref_cache
1452         using the image lock instead of the loader lock.
1453
1454         * metadata.h: Add comments about which fields are protected by
1455         the image lock.
1456
1457 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1458
1459         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
1460
1461         * generic-sharing.c (mono_method_construct_object_context): Remove the
1462         wrapper_type == NONE assert, it is not needed.
1463
1464 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
1465
1466         * reflection.c (clear_cached_object): New helper function.
1467         (mono_method_clear_object): New function to clear the cached reflection
1468         objects for a dynamic method.
1469
1470         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
1471         Partly fixes # 463323.
1472         
1473 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
1474
1475         * class.c:
1476         * loader.c:
1477         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
1478
1479 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
1480
1481         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
1482         take the image lock instead of the loader lock.
1483
1484         * metadata-internals.h: Export new functions.
1485
1486 2009-02-12  Miguel de Icaza  <miguel@novell.com>
1487
1488         * domain.c (app_config_parse): Remove another use of stat that is
1489         not necessary as g_file_get_contents already does the presence
1490         check. 
1491
1492 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
1493
1494         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
1495
1496         * marshal.c: Move the bstr handling code to cominterop.c.
1497
1498         * marshal.c: Remove some COM interop code missed previously.
1499
1500 2009-02-12  Miguel de Icaza  <miguel@novell.com>
1501
1502         More Paolo patches from the Wii port:
1503         
1504         * security.c: Remove ves_icall_System_Environment_get_UserName
1505         from here.
1506
1507         * icall.c: And put ves_icall_System_Environment_get_UserName
1508         here. 
1509
1510         * appdomain.c (mono_set_private_bin_path_from_config): Remove
1511         redundant call to stat that was only used to test for the file
1512         existence.   Patch from Paolo.
1513
1514         * gc.c (run_finalize): If COM is disabled, do not link in
1515         mono_marshal_free_ccw.
1516
1517         * generic-sharing.c: Use alloca.h here as well.
1518
1519 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
1520
1521         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
1522
1523 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
1524
1525         * cominterop.c cominterop.h: New files.
1526
1527         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
1528         function/typedefs which are needed by cominterop.c global.
1529
1530 2009-02-12  Mark Probst  <mark.probst@gmail.com>
1531
1532         * generic-sharing.c: Don't take the loader lock to guard image
1533         mempool allocs.
1534
1535 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1536
1537         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
1538         called without the loader lock which is required to guard MonoImage:tokens.
1539
1540 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1541
1542         * class.c:
1543         * metadata.c:
1544         * method-builder.c:
1545         * marshal.c:
1546         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
1547
1548 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1549
1550         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
1551         Rework the code to use regular mono_image_alloc/0.
1552
1553         * loader.c: Rework the code to use regular mono_image_alloc/0.
1554
1555         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
1556
1557 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
1558
1559         * object-internals.h : Fixing a typo in the 
1560           MonoReflectionComVisibleAttribute struct.
1561
1562         * marshal.c (cominterop_com_visible): Check the implemented 
1563           interfaces for ComImport.
1564
1565         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
1566           assume that bools should be treated as VARIANTBOOLs.
1567
1568         * marshal.c (emit_marshal_boolean): Adding cases for 
1569           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
1570
1571         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
1572           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
1573
1574         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
1575           should be treated as VARIANTBOOLs.    
1576
1577         Code is contributed under MIT/X11 license.
1578
1579 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1580
1581         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
1582         allocation with the image lock.
1583
1584 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1585
1586         This patch is the last of a series to remove explicit reference of MonoImage::mempool
1587         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
1588
1589         * object.c: Add mono_string_to_utf8_image.
1590
1591         * object-internals.h: Export mono_string_to_utf8_image.
1592
1593         * reflection.c: Rework all explicit references to the the image mempool to go thought
1594         the mono_image_alloc set of functions.
1595
1596 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1597
1598         This patch is the third of a series to remove explicit reference of MonoImage::mempool
1599         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
1600         and generics-sharing.c.
1601
1602         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
1603         as first argument. Note that this function remains broken as it doesn't perform locking around the
1604         mempool allocation.
1605
1606         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
1607
1608         * image.c: Add g_slist_append_image.
1609
1610         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
1611         the supplied image for allocation. Move code into mono_metadata_field_info_full.
1612
1613         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
1614         Fix all related code to do the same.
1615
1616         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
1617
1618         * metadata-internals.h: Fix the signatures.
1619
1620 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1621
1622         This patch is the second of a series to remove explicit reference of MonoImage::mempool
1623         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
1624         and similar to work using MonoImage.
1625
1626         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
1627         MonoMemPool.
1628
1629         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
1630
1631         * class.c (mono_metadata_signature_deep_dup): Same.
1632
1633         * class.c (inflate_generic_type): Same.
1634
1635         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
1636
1637         * metadata.c (mono_metadata_signature_dup_full): Same.
1638
1639         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
1640         mono_metadata_signature_dup_full.
1641
1642         * metadata.c (mono_metadata_type_dup): Same.
1643
1644         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
1645
1646         * reflection.c: Same.
1647
1648         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
1649
1650         * metadata-internals.h: Fix the signatures.
1651
1652         * class-internals.h: Same.
1653
1654 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1655
1656         This patch is the first of a series to remove explicit reference of MonoImage::mempool
1657         and use mono_image_alloc set of functions instead. 
1658
1659         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
1660         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
1661         of a MonoMemPool.
1662
1663         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
1664
1665         * class.c (g_list_prepend_mempool): Removed.
1666
1667         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
1668
1669         * image.c: Add g_list_prepend_image.
1670
1671         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
1672
1673         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
1674
1675
1676 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1677
1678         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
1679         mono_image_unlock.
1680
1681         * image.c (mono_image_init): Init the lock field.
1682  
1683         * image.c (mono_image_init): Cleanup the lock field.
1684
1685         * image.c: Add mono_image_(un)lock functions.
1686
1687 2009-02-11  Mark Probst  <mark.probst@gmail.com>
1688
1689         * class.c, class-internals.h: mono_method_get_context_general()
1690         combines the functionality of mono_method_get_context() and
1691         mini_method_get_context().
1692
1693         * generic-sharing.c, domain-internals.h:
1694         mono_method_construct_object_context() and
1695         mono_domain_lookup_shared_generic() moved from mini.
1696
1697         * icall.c (ves_icall_InternalInvoke): Handle the case where the
1698         method doesn't have the correct instantiation because it's shared
1699         generic code.  Fixes #473999.
1700
1701 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
1702
1703         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
1704
1705         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
1706         
1707 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1708
1709         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
1710
1711         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
1712
1713         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
1714         and recheck the cache for dups after it.
1715
1716         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
1717
1718         Fixes one of the deadlocks found in #473150.
1719
1720 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
1721
1722         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
1723           For Win32, add additional break conditions for accept.
1724
1725         Code is contributed under MIT/X11 license.
1726
1727 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
1728
1729         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
1730         lazily initialize the native wrapper cache.
1731         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
1732         cache, since they are different from the normal wrappers.
1733
1734         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
1735
1736         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
1737         AOT compiled native wrappers.
1738
1739 2009-02-09  Geoff Norton  <gnorton@novell.com>
1740
1741         * appdomain.h:
1742         * security-core-clr.c: Allow enabling core-clr from the embedding
1743         API.
1744
1745 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1746
1747         * socket-io.c: when requesting all the local ips, if there are no
1748         interfaces up and running, MS returns 127.0.0.1.
1749
1750 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1751
1752         * mono-perfcounters-def.h: processor time is an inverse time.
1753         Fixes bug #468625.
1754
1755 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1756
1757         * socket-io.c: an empty host name returns the list of local IPs.
1758         Fixes bug #386637 part 1/2.
1759
1760 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
1761
1762         * verify.c (mono_class_interface_implements_interface): Call
1763         mono_class_setup_interfaces ().
1764         (merge_stacks): Ditto.
1765
1766 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
1767
1768         * class.c (mono_class_setup_interfaces): New function to lazily initalize
1769         klass->interfaces.
1770         (mono_generic_class_get_class): Don't initalize klass->interfaces.
1771         (mono_generic_class_get_class): Ditto.
1772
1773 2009-02-06  U-QUACK\miguel  <miguel@quack>
1774
1775         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
1776         they live in security.c
1777
1778         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
1779         another bit from Paolo's code.
1780
1781 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
1782
1783         * object.c (build_imt_slots): Add a small optimization to avoid inflating
1784         methods which will be discarded by add_imt_builder_entry ().
1785
1786         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
1787         need to be boxed.
1788
1789         * loader.c: Add a statistics for the size of the memberref signature cache.
1790         
1791         * loader.c (find_cached_memberref_sig): New helper function.
1792         (cache_memberref_sig): Ditto.
1793
1794         * loader.c: Cache the result of parsing memberref signatures, since otherwise
1795         they will be parsed again for every generic instantiation, leading to unbounded
1796         memory growth.
1797
1798 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
1799
1800         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
1801         parameters of generic methods.
1802
1803         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
1804         after the original method is copied to the inflated method.
1805         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
1806
1807         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
1808         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
1809
1810         * class.c metadata.c: Update after the changes above.
1811
1812 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
1813
1814         * metadata-verify.c: Simplified error handling and added
1815         section table validation.
1816
1817 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
1818
1819         * class-internals.h (MonoClassExt): New structure containing rarely used
1820         fields of MonoClass.
1821         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
1822         through a new 'ext' field.
1823
1824         * class.c (mono_class_alloc_ext): New helper function to allocate 
1825         class->ext.
1826
1827         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
1828
1829 2009-02-05  Mark Probst  <mark.probst@gmail.com>
1830
1831         * object.c (mono_object_get_virtual_method): Properly inflate
1832         generic methods.  Fixes #472692.
1833
1834 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
1835
1836         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
1837         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
1838         for the parent type, the created type must be ready to be used on a generic
1839         instantiation.
1840         We fill this_arg/byval_arg if the parent is a generic instance to make sure
1841         we won't have duplicated entries in generic_inst_cache.
1842
1843         Fixes #469553.
1844
1845 2009-02-05  Miguel De Icaza  <miguel@novell.com>
1846
1847         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
1848         replace with plain BSD per the comments on the bug MONO77637.
1849
1850 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
1851
1852         * class.c (mono_class_get_generic_class): New accessor function.
1853         (mono_class_get_generic_container): Ditto.
1854
1855         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
1856         fields, similar to the ones in MonoMethod.
1857
1858         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
1859         (mono_class_create_from_typedef): Set klass->is_generic if needed.
1860
1861         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
1862         
1863         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
1864         the same information as element_class->byval_arg.
1865
1866         * class.c reflection.c: Remove references to class->byval_arg.
1867
1868         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
1869         klass->enum_basetype directly.
1870
1871         * verify.c metadata.c object.c icall.c reflection.c: Use 
1872         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
1873         directly.
1874
1875 2009-02-04  Miguel de Icaza  <miguel@novell.com>
1876
1877         * icall-def.h: Remove internal calls for sockets when
1878         DISABLE_SOCKET is defined, file system writing features when the
1879         OS only support reading and not writing data and Policy support if
1880         the Policy is disabled.
1881         
1882         * image.c (do_mono_image_open): Apply Paolo's patches for using
1883         mono_file_map_ APIs here.
1884
1885         * assembly.c: Add support for platforms to avoid prefix
1886         auto-detection. 
1887
1888 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
1889
1890         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
1891         warning.
1892
1893         * class.c (mono_class_inflate_generic_class): New helper function.
1894
1895         * class.c: Use mono_class_inflate_generic_class in a few places. Add
1896         statistics for inflated methods/classes.
1897
1898         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
1899
1900         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
1901         the call is made from Delegate.CreateDelegate () for the invoke method of
1902         a delegate.
1903
1904         * loader.c: Add a statistics for the memory occupied by inflated signatures.
1905
1906         * metadata.c (mono_metadata_signature_size): New helper function.
1907
1908         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
1909         generic instances.
1910
1911         * metadata.c (inflated_method_in_image): Avoid calling 
1912         mono_method_signature () if the method does not already have a signature.
1913
1914 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
1915
1916         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
1917         valuetype is compatible with target type, check by inheritance as a
1918         VT is not really compatible with System.ValueType, for example.
1919
1920         * verify.c (do_invoke_method): Improve error message.
1921
1922         * verify.c (do_box_value): If boxing a nullable, use the type argument
1923         on stack instead.
1924
1925         * verify.c (do_newobj): Improve error message.  
1926
1927         Fixes #469549.
1928
1929 2009-02-03  Miguel de Icaza  <miguel@novell.com>
1930
1931         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
1932
1933 2009-02-03  Mark Probst  <mark.probst@gmail.com>
1934
1935         * generic-sharing.c: Don't hold domain lock when calling
1936         instantiate_other_info().  Fixes #471958.
1937
1938         * domain-internals.h, loader.c: Describe locking policy of domain
1939         lock vs loader lock.
1940
1941 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
1942
1943         * verify.c (mono_delegate_signature_equal): Make it possible to check
1944         first-arg-bound delegates to static method.
1945
1946         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
1947         static methods with the first arg bound.
1948
1949         Fixes #469529.
1950
1951 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
1952
1953         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
1954         errors.
1955
1956         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
1957         under strict mode. Any type, when boxed can be seen as a reference type.
1958
1959         Fixes #469528.
1960
1961 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
1962
1963         * object.h: The lower bound of an array is a signed integer value.
1964         Introduce mono_array_lower_bound_t typedef. It should be used instead of
1965         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
1966
1967         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
1968         calculate the upper bound.
1969         
1970         Fixes #471252.
1971
1972 2009-02-02  Miguel de Icaza  <miguel@novell.com>
1973
1974         From Paolo's work, refactored, cleared up:
1975         
1976         * threadpool.c, icall.c: ifdef code that requires a working socket
1977         stack.
1978
1979         * metadata.c (mono_metadata_field_info): Do not attempt to return
1980         a value from a function declared as void.
1981
1982         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
1983         from the console stack.
1984
1985         * assembly.c: use strrchr instead of rindex.
1986
1987         * class.c, object.c, marshal.c, icall.c, reflection.c: include
1988         alloca.h on systems that have it.
1989
1990         * environment.c: Avoid code that uses stuff from
1991         HAVE_SYS_UTSNAME_H
1992         
1993         * appdomain.c: Include sys/time.h.
1994
1995         * console-io.c: include sys/ioctl.h if it is available.
1996
1997 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
1998
1999         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
2000
2001         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
2002         the method builder.
2003
2004         * marshal.c: Set mb->skip_visibility instead of setting it on the method
2005         after it was created and cached, as the later is not thread safe.
2006         
2007 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2008
2009         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
2010         called while the debugging module is not initialized. Fixes #471669.
2011
2012 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
2013
2014         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
2015
2016         Fixes #471255.
2017
2018 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2019
2020         * generic-sharing.c (lookup_or_register_other_info): Make sure the
2021         loader lock is not taken while the templates lock is held.  Fixes
2022         #471089.
2023
2024 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2025
2026         * metadata.c (type_in_image): Added a check to fix a monodis
2027         crash.
2028
2029 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2030
2031         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
2032         nullable arguments.
2033
2034         * object.c (mono_runtime_invoke_array): Ditto.
2035         
2036         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
2037         freeing wrappers of dynamic methods.
2038
2039         * loader.c (mono_free_method): Call it. Fixes #463323.
2040         
2041         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
2042         methods taking vtype/byref arguments, to fix yet another bug caused by
2043         the sharing of runtime invoke wrappers. Partly fixes #471259.
2044
2045 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
2046
2047         * debug-mono-symfile.c (check_line): Return NULL instead of returning
2048         <first file in file table>:1 when the IL offset does not have an associated
2049         line number.
2050
2051 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
2052
2053         * mono-debug.c (mono_debug_lookup_locals): New function to return local
2054         variable info for a method.
2055
2056         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
2057         
2058 2009-01-30  Jb Evain  <jbevain@novell.com>
2059
2060         * pedump.c: reuse code from monodis to make sure pedump honors
2061         MONO_PATH, which is needed to verify net_2_1 assemblies.
2062
2063 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
2064
2065         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
2066         there is no line number info.
2067
2068 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
2069
2070         Avoid some MonoType allocations
2071         * reflection.c (mono_reflection_initialize_generic_parameter):
2072         Reuse MonoType from param->pklass rather than allocating one.
2073         (mono_dynamic_image_free): Update to changes.
2074
2075 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
2076
2077         Rearrange some code to improve consistency
2078         * reflection.c (mono_reflection_setup_generic_class): Move body ...
2079         (mono_reflection_initialize_generic_parameter): ... here.
2080
2081 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
2082
2083         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
2084         with type constraints as an experiment.
2085
2086         * boehm-gc.c (on_gc_notification): Update mono_stats.
2087
2088 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
2089
2090         Avoid some allocations
2091         * class-internals.h (_MonoGenericInst::type_argv): Convert from
2092         pointer to tail array to avoid extra allocation.
2093         * metadata.c (free_generic_inst): Update to changes.
2094         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
2095         on-stack struct.
2096
2097 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
2098
2099         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
2100         return TRUE if the two type objects are the same.
2101
2102 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2103
2104         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
2105         (mono_class_native_size): Use klass->marshal_info->min_align instead of
2106         klass->min_align, since klass->min_align contains the managed alignment,
2107         while the native alignment can be different, like for longs on x86.
2108         Fixes #469135.
2109
2110         * class-internals.h (MonoMarshalType): Add a min_align field.
2111
2112 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
2113
2114         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
2115         the 1.0 format.
2116
2117 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2118
2119         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
2120         some comments about the usage of the used_regs field.
2121
2122         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
2123         Fixes #469217.
2124
2125 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2126
2127         * appdomain.c: return NULL instead of throwing FileNotFoundException
2128         when LoadAssembly() fails.
2129
2130 2009-01-23  Mark Probst  <mark.probst@gmail.com>
2131
2132         * metadata.c (mono_metadata_generic_param_equal): Only compare the
2133         image if the owner is NULL.  Fixes the AOT failures.
2134
2135 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
2136
2137         * metadata.c (mono_metadata_load_generic_params): Initialize the 
2138         MonoGenericParam structure using memset so the image field is initialized
2139         as well.
2140
2141 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2142
2143         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
2144         a plain store.
2145
2146 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
2147
2148         * class.c (mono_class_setup_vtable_general): In the generic instance
2149         optimization, set method->slot for abstract virtual methods. Fixes part of
2150         #467834.
2151
2152 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2153
2154         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
2155         which signals that the unloading has started but all appdomain services must
2156         remain operational.
2157
2158         * appdomain.c (mono_domain_unload): The initial state for unloading now
2159         is unloading_start and we switch to unloading after the managed call to
2160         AppDomain::DomainUnload has finished.
2161
2162         The new unloading state has to be created because managed code in the
2163         DomainUnload event can depend on things like the threadpool still working.
2164         The domain must remain fully functional while the event executes.
2165
2166         This shown as an issue due to Process::WaitForExit, which waits for
2167         async reads of stdout and stderr to complete. Since those are processed
2168         in the threadpool the code deadlocks because the DomainUnload callback 
2169         waits for the async read finished event, which should have been set by a
2170         threadpool job but has been discarded due to the domain been in unload
2171         state.
2172
2173 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2174
2175         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
2176         image must match.
2177
2178 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2179
2180         * reflection.c (resolve_object): For fields, inflate the class and
2181         then get the field in the inflated class.
2182
2183 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2184
2185         * object-internals.h (struct _MonoException): Added a comment
2186         explaining the new use of trace_ips.
2187
2188 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2189
2190         * generic-sharing.c (inflate_other_data): Inflate array methods
2191         correctly.
2192
2193         * loader.c, class-internals.h: Rename search_in_array_class() to
2194         mono_method_search_in_array_class() and make it non-static.
2195
2196 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2197
2198         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
2199         Hopefully fixes #458168.
2200
2201 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
2202
2203         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
2204         as it is performed elsewhere.
2205
2206         Code is contributed under MIT/X11 license
2207
2208 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
2209
2210         * mono-perfcounters-def.h: Add counters for asp.net requests total and
2211         requests queued.
2212         * object.c (mono_raise_exception): Increment the exceptions total
2213         counter when an exception is thrown.
2214         * class-internals.h: Add a location for storing the total number of
2215         asp.net requests served.
2216         * mono-perfcounters.c: Implement update support for asp.net counters
2217         from the class libraries. Implement read support for asp.net counters
2218         and exceptions total counter.
2219
2220 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2221
2222         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
2223         accessing klass->methods. Fixes #467385.
2224
2225 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2226
2227         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
2228         for byval arguments without an [Out] attribute. Fixes #467212.
2229
2230         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
2231         Fix compilation under android.
2232         
2233         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
2234         processed, scan them directly after they are copied, to achieve better locality
2235         and cache usage.
2236
2237         * socket-io.c: Applied patch from Koushik Dutta
2238         (koush@koushikdutta.com). Disable IPV6 when running under android.
2239
2240 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2241
2242         * icall.c (ves_icall_InternalExecute): Add write barriers.
2243
2244         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
2245         the GC code.
2246
2247         * sgen-gc.c: Implement write barriers in IL code.
2248
2249 2009-01-17  Geoff Norton  <gnorton@novell.com>
2250
2251         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
2252
2253 2009-01-17  Geoff Norton  <gnorton@novell.com>
2254
2255         * image.c: When unloading the image->references table, there can be gaps
2256         in it.  Ensure that we iterate every entry to avoid leaking assembly references
2257         when unloading an appdomain.
2258
2259 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
2260
2261         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
2262         speed up ptr-in-nursery checks.
2263
2264         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
2265         threads_lock () to prevent deadlocks.
2266
2267         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
2268         does not need to be scanned during minor collections, since writes to it
2269         must use write barriers.
2270
2271 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
2272
2273         * metadata-verify.c: Add pe nt header verification.
2274         
2275 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
2276
2277         * gc.c: Fix a few warnings when using SGEN.
2278
2279 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
2280
2281         * metadata-verify.c: Add pe optional header verification.
2282
2283 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
2284
2285         * sgen-gc.c: Add support for user defined marker functions, used by
2286         MonoGHashTable to avoid registering a GC root for every hash node.
2287
2288 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
2289
2290         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
2291         non-pinned roots into separate hashes to avoid having to traverse them
2292         in functions which are only interested in one kind.
2293
2294 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
2295
2296         * metadata-verify.c: Add pe header machine field verification.
2297         
2298 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
2299
2300         * metadata-verify.c: Add pe header size verification.
2301
2302 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
2303
2304         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
2305         using the GC, they don't contain references.
2306
2307         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
2308
2309 2009-01-13  Geoff Norton  <gnorton@novell.com>
2310
2311         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
2312         AppDomains created on the native side can be cleaned up on the native side.
2313
2314 2009-01-13  Geoff Norton  <gnorton@novell.com>
2315
2316         * appdomain.c: Ensure that we call mono_context_init for the embedding api
2317         as well as the managed api.
2318
2319 2009-01-13  Geoff Norton  <gnorton@novell.com>
2320
2321         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
2322         with a MonoAppDomain initialized against it.
2323
2324 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2325
2326         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
2327         
2328         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
2329
2330         * marshal.c: Avoid setting the exception clauses after a method has been entered 
2331         into the wrapper caches. Fixes #465700.
2332
2333         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
2334         method builder.
2335         (mono_mb_create_method): Set the clauses from the method builder.
2336
2337 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2338
2339         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
2340         Patch from Makoto Kishimoto.
2341
2342 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2343
2344         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
2345         encoding them as ROOT_DESC_COMPLEX.
2346         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
2347
2348 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
2349
2350         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
2351         no longer point to the nursery.
2352
2353         * sgen-gc.c: Add a few comments/FIXMEs.
2354         
2355         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
2356
2357         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
2358         initialization of the various _method variables thread safe. Fixes
2359         #465377.
2360
2361 2009-01-12  Mark Probst  <mark.probst@gmail.com>
2362
2363         * domain.c, domain-internals.h: Remove the shared_generics_hash
2364         and its lookup functions.
2365
2366 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
2367
2368         * socket-io.c:  Fixing the MSVC build. 
2369
2370         Code is contributed under MIT/X11 license.
2371
2372 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
2373
2374         * metadata-verify.c: Add pe header watermark verification.
2375
2376 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2377
2378         * metadata-verify.c: Add lfanew verification.
2379
2380 2009-01-12  Jb Evain  <jbevain@novell.com>
2381
2382         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
2383         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
2384
2385 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
2386
2387         * socket-io.c: Fix the build.
2388
2389         * environment.c: Fix an #ifdef.
2390
2391 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2392
2393         * threadpool.c (async_invoke_thread): Handle the wait function returning
2394         WAIT_IO_COMPLETION as well.
2395         (async_invoke_io_thread): Ditto.
2396
2397 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
2398
2399         * threads.c: Fixing the Windows build.
2400
2401         Code is contributed under MIT/X11 license.
2402
2403 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2404  
2405         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
2406         interrupt a wait.
2407         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
2408         the thread to wait again.
2409
2410 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2411
2412         * metadata-verify.c: Initial skeleton of the metadata verifier.
2413
2414         * pedump.c: Add support for the metadata verifier.
2415
2416         * verify-internal.h: Export the whole assembly metadata verifier function.
2417
2418 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2419
2420         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
2421
2422 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2423
2424         * Makefile.am: Upgrade dtrace-prelink.sh location.
2425
2426 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
2427
2428         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
2429         well. Otherwise the shutdown deadlock that happens on unix will can happen
2430         as well.
2431         If the main thread code finishes too fast it's possible that the finalizer
2432         thread won't have executed yet, won't record itself as the finalizer thread
2433         and the shutdown sequence will wait on it forever.
2434
2435 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
2436
2437         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
2438         with MSVC.
2439
2440 2009-01-08  Miguel de Icaza  <miguel@novell.com>
2441
2442         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
2443         Robert Jordan for pointing this out.
2444
2445 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
2446
2447         * icall.c
2448         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
2449         ves_icall_System_IO_DriveInfo_GetDriveType.
2450
2451 2009-01-07  Miguel de Icaza  <miguel@novell.com>
2452
2453         * icall.c: Wrap calls to mono_strtod in CriticalSection
2454         invocations when using eglib, to work around #464316.
2455
2456 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
2457
2458         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
2459         return value of GetCurrentDirectory to never access unitialized memory.
2460
2461 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
2462
2463         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
2464         return value of GetCurrentDirectory and expand the buffer if needed.
2465
2466         Fixes #459094.
2467
2468 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
2469
2470         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
2471           Adding a call to mono_init_com_types.
2472
2473         Code is contributed under MIT/X11 license.
2474
2475 2009-01-07  Geoff Norton  <gnorton@novell.com>
2476
2477         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
2478         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
2479         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
2480         be the value of the ip buffer.
2481
2482 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2483
2484         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
2485         interfaces_packed here.
2486
2487         Fixes part of #463294.
2488
2489 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2490
2491         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
2492
2493         Fixes part of #463294.
2494
2495 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2496
2497         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
2498         is a boxed complex as well.
2499
2500         Fixes part of #463294.
2501
2502 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2503
2504         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
2505         control if a methodspec should be created for the generic method definition from external assemblies.
2506         Caching of methodspec is done using the handleref hash table.
2507
2508         Fixes #462592.
2509
2510 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
2511
2512         * loader.c (find_method): When searching the interfaces of a class
2513         check the transitive closure of implemented interfaces.
2514
2515         Fixes #463303.
2516
2517 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
2518
2519         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
2520         
2521 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
2522
2523         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
2524         interfaces calculation to fill_valuetype_array_derived_types.
2525
2526         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
2527         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
2528         for example.
2529
2530         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
2531         interfaces for valuetypes if needed.    
2532
2533         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
2534         for their basetype as well. Types are array expanded if rank is > 0.
2535
2536         Fixes #400716.
2537
2538 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
2539
2540         * socket-io.h : Changing the signature of
2541           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
2542           the blocking state.
2543
2544         * icall-def.h :  Changing the signature of
2545           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
2546
2547         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2548           For Windows only.  Avoid blocking when calling accept by
2549           querying for a connection via select.  The loop also queries
2550           the thread state every 1000 micro seconds for the thread
2551           stop state.  This will avoid the process hanging on shutdown
2552           when using a TcpChannel that is never connected to.
2553
2554         Code is contributed under MIT/X11 license.
2555
2556 2008-12-30  Marek Safar  <marek.safar@gmail.com>
2557
2558         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
2559
2560 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
2561
2562         * class.c (get_implicit_generic_array_interfaces): Extract common
2563         code to a helper function making it a lot easier on the eyes.
2564
2565 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
2566
2567         * class.c (get_implicit_generic_array_interfaces): If the internal
2568         enumerator is an interface inflate System.Object instead of itself.
2569
2570         Fixes #461261.
2571
2572 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
2573
2574         * object.c (mono_runtime_invoke_array): Don't assert with
2575         byref nullable types.
2576
2577         * marshal.c (mono_marshal_get_runtime_invoke): To handle
2578         byref nullables we unbox the object and store it on the
2579         stack. 
2580         We can't use the boxed object since it is the T of Nullable<T>
2581         and the boxed representation of a nullable it's underlying type
2582         or null.
2583         We could cheat and create a boxed nullable and use the same
2584         machinery of other byref VTs but this feels like a hack and
2585         using the stack has the bonus of reducing heap pressure.
2586
2587         Fixes #461941.
2588
2589 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
2590
2591         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
2592         return value.
2593
2594         Fixes #461867.
2595
2596 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
2597
2598         * icall-def.h : Adding an internal call definition for 
2599           System.Environment.internalBroadcastSettingChange.
2600
2601         * icall.c : Adding a Windows only implementation to broadcast a 
2602           WM_SETTINGCHANGE when an environment variable has changed.
2603
2604         Code is contributed under MIT/X11 license.
2605
2606 2008-12-19  Mark Probst  <mark.probst@gmail.com>
2607
2608         * class.c, class-internals.h: Made
2609         mono_class_has_parent_and_ignore_generics() non-static.
2610
2611 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
2612
2613         * image.c: deal with the mmap failing when loading an image.
2614
2615 2008-12-17  Geoff Norton  <gnorton@novell.com>
2616
2617         * threadpool.c: Ensure that the io_queue_lock is initialized
2618         in all circumstances, as we always attempt to cleanup against it.
2619
2620 2008-12-17  Miguel de Icaza  <miguel@novell.com>
2621
2622         * icall.c (ves_icall_System_Environment_get_Platform): For
2623         compatibility reasons for existing client code we will keep
2624         returning 4 for a while.   
2625
2626         For how long will depend on the documentation being updated, and
2627         for us to give client code a chance to be updated.
2628
2629         This reverts the original decison on #433108 since we did not
2630         catch roughly 33 instances of the broken code in our own source
2631         code base, we did not catch failures on the buildbots, and QA did
2632         not bring this as a problem.
2633
2634         Only today I found some customer's code breaking due to our own
2635         class libraries not being fully updated and tracked it down to
2636         this change.  I am reverting it because if we could not even get
2637         our story straight in our own code base, how can we hope that our
2638         end user code be fixed?
2639
2640         As of this morning, our Wiki page that documents how to detect
2641         Unix had not been fixed.    
2642
2643 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
2644
2645         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
2646
2647         * class.c (mono_class_get_fields): Handle loading errors.
2648
2649 2008-12-12 Mark Mason <mmason@upwardaccess.com>
2650
2651         * 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.
2652         
2653 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
2654
2655         * mono-perfcounters.c: avoid warning.
2656
2657 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2658
2659         * reflection.c (ensure_runtime_vtable): Work on generic instances and
2660         make sure all interfaces have MonoClass::interface_id set.
2661
2662         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
2663         method table is property set.
2664
2665 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2666
2667         * class.c: New function mono_class_setup_interface_id that setup
2668         MonoClass::interface_id if needed.
2669
2670         * class-internals.h: Export new function.
2671
2672 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2673
2674         * class.c: Add code to sanity check the vtable after setup_vtable_general
2675         has done it's work.
2676
2677 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2678
2679         * icall.c: make Assembly.GetExecutingAssembly work properly when
2680         reflection is used to invoke the method.
2681         Bug #321781 fixed.
2682
2683 2008-12-11  Mark Probst  <mark.probst@gmail.com>
2684
2685         * metadata/generic-sharing.c: Look for constraints in all type
2686         arguments, not just the first one.
2687
2688 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2689
2690         * appdomain.c: return the correct CodeBase for an Assembly instance
2691         that was loaded from the shadow-copy directories.
2692         Bug #458190 fixed.
2693
2694 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
2695
2696         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
2697
2698         * sgen-gc.c (check_object): New debugging helper function.
2699
2700         * object.c: Fix calls to mono_value_copy_array ().
2701
2702 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
2703
2704         * class.c (mono_class_setup_fields): If working on an inflated class
2705         first check if the generic definition did init with success.
2706
2707         Fixes #445361.
2708
2709 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
2710
2711         pedump.c (main): Fix a warning.
2712
2713 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
2714
2715         * object-internals.h : Adding a definition for 
2716           MonoReflectionComVisibleAttribute.
2717
2718         * marshal.c (cominterop_com_visible) :  Method added to check the 
2719           ComVisible attribute of a class.
2720
2721         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
2722           cominterop_raise_hr_exception added to consolidate common code 
2723           to raise hr exceptions.
2724
2725         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
2726           if a managed class should support IDispatch.
2727
2728         * marshal.c 
2729           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
2730           Added additional checks for managed object when getting 
2731           an IDispatch interface.
2732
2733         Code is contributed under MIT/X11 license.
2734
2735 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
2736
2737         pedump.c (main): Handle mono_get_method () returning NULL. 
2738
2739 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
2740
2741         * marshal.h: Fix a warning.
2742
2743 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
2744
2745         * marshal.c : Adding cominterop_release_all_rcws to release all
2746           runtime callable wrappers held by the runtime.
2747
2748         * marshal.h : Adding declaration for cominterop_release_all_rcws.
2749           
2750         Code is contributed under MIT/X11 license.
2751
2752 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
2753
2754         * metadata.c (mono_image_alloc_lock): New helper function.
2755         (mono_image_alloc0_lock): Ditto.
2756
2757         * metadata.c: Use the alloc_lock () helper functions for allocating
2758         memory from the image mempool.
2759
2760 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
2761
2762         * class.c (mono_class_from_generic_parameter): Document it's
2763         locking behavior. Fix double checked locking here, we stored in
2764         param->pklass a partially initialized MonoClass and no membar was used.
2765
2766 2008-12-05  Marek Habersack  <mhabersack@novell.com>
2767
2768         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
2769         (3) functions are present in the C library use them to do the
2770         job. If they are absent, make sure that the sum of int_part and
2771         dec_part is rounded before returning. This is necessary due to the
2772         division of dec_part by the power of 10 before the final addition
2773         is performed - if the result is not rounded in some cases it will
2774         yield invalid results.
2775
2776 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
2777
2778         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
2779         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
2780         instruction instead of a pointer constant.
2781
2782 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
2783
2784         * loader.c (mono_method_get_header): Do most of the work outside the
2785         loader lock, to avoid assembly load hook deadlocks.
2786
2787         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
2788         (mono_metadata_parse_type_full): Ditto.
2789
2790 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
2791
2792         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
2793         Make the stack depth fixed. Ensure proper argument passing to the backtrace
2794         funtions. Finally, use a lock to produce well ordered output.
2795
2796         The lock looks silly, as all calls to the corlib mempool should be guarded
2797         with the loader lock, but for some reason this fact doesn't help. 
2798
2799         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
2800
2801 2008-12-02  Mark Probst  <mark.probst@gmail.com>
2802
2803         * socket-io.c: 64 bit big-endian fixes.
2804
2805 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
2806
2807         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
2808         targets that require strict compatibility between the types.
2809
2810         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
2811         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
2812         Kill the strict argument and create a new one valuetype_must_be_boxed.
2813
2814         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
2815         state that all valuetypes must be boxed.
2816
2817         Fixes #448560.
2818
2819 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
2820
2821         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
2822         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
2823
2824         Contributed under MIT/X11 license.
2825
2826 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
2827
2828         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
2829         the inflate_generic_type machinery should handle it.
2830
2831         This avoids a crash when the field's flags is zero and it's type is
2832         a primitive.
2833         What happens is that mono_metadata_parse_type_full will see that opt_attrs
2834         is zero and will return one of the cached built-in primitive types. Since
2835         those types live in read-only memory, the code that copies it crashes.  
2836
2837 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2838
2839         * object.c: Don't put function descriptors into generalized IMT
2840         thunks.
2841
2842 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2843
2844         * class.c: Enable generic code sharing on PPC64.
2845
2846 2008-11-27  Mark Probst  <mark.probst@gmail.com>
2847
2848         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
2849         from mini/mini.c.
2850
2851         * generic-sharing.c: Allocate the method template slists from the
2852         image mempool so it doesn't leak.
2853
2854 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
2855
2856         * class.c (generic_array_methods): Release the linked list.
2857
2858 2008-11-27  Mark Probst  <mark.probst@gmail.com>
2859
2860         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
2861         invocation to g_utf16_to_utf8().
2862
2863 2008-11-26  Mark Probst  <mark.probst@gmail.com>
2864
2865         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
2866         arguments on big endian archs.
2867
2868 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2869
2870         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
2871         the type name (test added in corlib).
2872
2873 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2874
2875         * pedump.c: initialize perf. counters. Fixes a segv.
2876
2877 2008-11-25  Martin Baulig  <martin@ximian.com>
2878
2879         * mono-debug-debugger.c
2880         (mono_debugger_runtime_invoke): Return the exception object if an
2881         exception was thrown.  Visual Studio displays the exception object
2882         in the locals window.
2883
2884 2008-11-24  Mark Probst  <mark.probst@gmail.com>
2885
2886         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
2887         ftnptr.
2888
2889 2008-11-24  Mark Probst  <mark.probst@gmail.com>
2890
2891         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
2892         MONO_TYPE_U are sizeof (gpointer), too.
2893
2894 2008-11-24  Mark Probst  <mark.probst@gmail.com>
2895
2896         * marshal.c (mono_type_native_stack_size): Fixed size and
2897         alignment for reference types.
2898
2899 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2900
2901         * class.c (mono_class_generic_sharing_enabled): Disable generic
2902         code sharing for PPC64.
2903
2904 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
2905
2906         * icall.c (mono_method_get_equivalent_method): Make sure
2907         method->klass->methods is inited before looping over it.
2908
2909 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2910
2911         * object.c: when calling ExecuteAssembly in a newly created domain,
2912         the configuration file and application base are already set up.
2913         Bug #446353 take 2 fixed.
2914
2915 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
2916
2917         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
2918         Fixes #444715. Fix a warning.
2919
2920 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
2921
2922         * appdomain.c: write the full path of the assembly to the .ini file
2923         created when "shadow-copying"
2924         Bug #446353 fixed.
2925
2926 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
2927
2928         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
2929         if signature==FALSE.
2930
2931 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
2932
2933         * marshal.h : Fix the cygwin build.
2934            marshal.c:12442: undefined reference to `_IID_IMarshal'
2935           
2936         Code is contributed under MIT/X11 license.
2937
2938 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
2939
2940         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
2941           free threaded marshaler when QueryInterface is called on a COM callable
2942           wrapper requesting the IMarshal interface.
2943           
2944         Code is contributed under MIT/X11 license.
2945
2946 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
2947
2948         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
2949
2950         * reflection.c (mono_type_get_object): Special case the very common
2951         void type.
2952
2953         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
2954         hold typeof(void).
2955
2956 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
2957
2958         * process.h : Adding method declaration for
2959           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
2960           
2961         * process.c : Adding implementation for
2962           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
2963           
2964         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
2965           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
2966
2967         Code is contributed under MIT/X11 license.
2968
2969 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
2970
2971         * appdomain.c (unload_thread_main): Clean up threadpool by
2972         calling mono_thread_pool_remove_domain_jobs.
2973
2974         * domain-internals.h (struct _MonoDomain): Add new fields to
2975         help coordinate the cleanup of the threadpool.
2976
2977         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
2978         that cleans up the threadpool of all jobs associated with an appdomain.
2979         It does that by cleaning up the queues and making sure all active
2980         threads are accounted.
2981
2982         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
2983         unloaded or in the process of. Take this is such way that there is
2984         no race condition between another thread starting the unload and the
2985         current thread acknowledging it.
2986
2987         * threadpool.c (async_invoke_thread): Same.
2988
2989         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
2990         firing the new thread.
2991
2992         * threadpool.c (start_tpthread): Same.
2993
2994         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
2995
2996         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
2997
2998 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
2999
3000         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3001         Add support for DuplicateHandle.
3002         
3003         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3004         Add support for DuplicateHandle.
3005         
3006         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3007         Add support for DuplicateHandle.
3008
3009         Code is contributed under MIT/X11 license.
3010
3011 2008-11-06  Mark Probst  <mark.probst@gmail.com>
3012
3013         * class-internals.h: Make min_align into a whole byte.
3014
3015         * class.c: Set min_align for SIMD types to 16.
3016
3017 2008-11-05  Geoff Norton  <gnorton@novell.com>
3018
3019         * attach.c: Default the attacher to enabled for all cases including
3020         embedded.
3021
3022 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3023
3024         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
3025         change r117650.
3026
3027 2008-11-04  Mark Probst  <mark.probst@gmail.com>
3028
3029         * monitor.c, monitor.h: New function for querying offsets of
3030         members of MonoThreadsSync.
3031
3032 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
3033
3034         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
3035         to speed up this function and to avoid the boundless memory growth caused by
3036         the signature_dup () calls.
3037
3038 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
3039
3040         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
3041         wrapper.
3042
3043         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
3044         by 1 bit.
3045
3046         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
3047
3048 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3049
3050         * appdomain.c:
3051         * domain-internals.h: made mono_set_private_bin_path_from_config()
3052         "internal".
3053         * object.c: call the above function after setting the configuration
3054         file path for the root domain.
3055         Fixes bug #314478.
3056
3057 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3058
3059         * assembly.c: when the assembly is loaded from an absolute path, end
3060         basedir with a directory separator.
3061         Bug #440781 fixed.
3062
3063 2008-10-30  Mark Probst  <mark.probst@gmail.com>
3064
3065         * monitor.c (mono_monitor_get_fast_enter_method): If
3066         CompareExchange is not available, don't create the fastpath
3067         instead of asserting.  (The method is missing in the 1.1 profile.)
3068
3069 2008-10-30  Mark Probst  <mark.probst@gmail.com>
3070
3071         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
3072
3073         * monitor.c, monitor.h: Code for generating Monitor.Enter and
3074         Monitor.Exit IL fastpaths.
3075
3076 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3077
3078         * class.c (mono_class_create_from_typedef): Added Vector2ul.
3079
3080 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3081
3082         * class.c (mono_class_create_from_typedef): Added Vector2l.
3083
3084 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
3085
3086         * class.c (mono_class_create_from_typedef): Added Vector2d.
3087
3088 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3089
3090         * appdomain.c: translate \ into / for cache_path.
3091         * domain-internals.h: new mono_is_shadow_copy_enabled().
3092         * icall.c: (fill_reflection_assembly_name) do the same path
3093         manipulations that get_code_base does.
3094         (get_code_base) use mono_is_shadow_copy_enabled.
3095
3096 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3097
3098         * appdomain.c: shadow-copied assemblies go to CachePath +
3099         ApplicationName when both are set. DynamicBase has nothing to do with
3100         shadow copies.
3101         Bug #406877 fixed.
3102
3103 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
3104
3105         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
3106         STANDALONESIG table.
3107
3108         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
3109         standalone signatures.
3110
3111         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
3112         comparison code: instead of comparing the signatures using a custom
3113         equals function, transform them to a common signature and compare that. This
3114         works better with AOT.
3115
3116 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
3117
3118         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
3119
3120         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
3121         call for generic instances.
3122         (mono_class_setup_properties): Call setup_properties () before accessing
3123         gklass->properties.
3124
3125         * class.c (mono_class_get_virtual_methods): New helper function to iterate
3126         over the virtual methods of a class using metadata if possible, avoiding the
3127         creation of MonoMethod's for non-virtual methods.
3128         
3129         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
3130         get_virtual_methods () to iterate over the virtual methods of classes.
3131
3132 2008-10-25  Martin Baulig  <martin@ximian.com>
3133
3134         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
3135
3136 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3137
3138         * class.c (mono_class_create_from_typedef): Added Vector4i.
3139
3140 2008-10-24  Mark Probst  <mark.probst@gmail.com>
3141
3142         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
3143         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
3144         special-casing applies to eliminate the call completely.
3145
3146 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3147
3148         * class.c (mono_class_create_from_typedef): Added Vector8s.
3149
3150 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3151
3152         * class.c (mono_class_create_from_typedef): Added Vector16sb.
3153
3154 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3155
3156         * icall.c: get rid of annoying warning.
3157
3158 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3159
3160         * threadpool.c: in 1.x, if you change the background status of the
3161         threadpool thread, it's not reset.
3162         Remove unnecessary calls to SetState.
3163
3164 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3165
3166         * threadpool.c: asynchronously create a set of idle threads upon first
3167         use of the threadpool. SetMinThreads will now start the appropriate
3168         number of idle threads if they are not already running. The default is
3169         1 threadpool thread per CPU. Increased the maximum number of threads
3170         per CPU to 10.
3171
3172 2008-10-22  Martin Baulig  <martin@ximian.com>
3173
3174         Revert r116521 from Zoltan, it breaks the debugger:
3175
3176         * class.c (mono_class_get_virtual_methods): New helper function to iterate
3177         over the virtual methods of a class using metadata if possible, avoiding the
3178         creation of MonoMethod's for non-virtual methods.
3179         
3180         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
3181         get_virtual_methods () to iterate over the virtual methods of classes.
3182
3183 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3184
3185         * threads.c: when creating a threadpool thread, set its state to
3186         'background'.
3187         * threadpool.c: reset the background state of a threadpool thread
3188         after finishing each work item
3189         Bug #437888 fixed.
3190
3191 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
3192
3193         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
3194         
3195         * class.c (mono_class_setup_vtable_general): Add an optimized version for
3196         generic instances which works by inflating the methods in the container
3197         class's vtable.
3198
3199         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
3200         variant which doesn't make a copy if no inflation was done.
3201         (mono_class_setup_fields): Use it.
3202
3203         * metadata.c (mono_metadata_get_shared_type): New helper function to
3204         return a shared instance of a given MonoType.
3205
3206         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
3207         a copy of most non-generic types.
3208
3209 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
3210
3211         * threadpool.c: remove one more GetSystemInfo () call.
3212
3213 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
3214
3215         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
3216         use the code in mono-proclib.h to get processor information.
3217
3218 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3219
3220         * appdomain.c: fixed the logic that determines whether assemblies in a
3221         directory are "shadow-copied" or not. Bug #433483 fixed.
3222
3223 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
3224
3225         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
3226         warning.
3227
3228 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3229
3230         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
3231         returning a vtype.
3232
3233         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
3234         reflection.c: Use mono_field_get_name () for accessing a field's name.
3235
3236         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
3237         class.c
3238
3239         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
3240         field.
3241
3242         * loader.c (find_method_in_class): Reenable the metadata optimization by
3243         not using it for generic instances.
3244
3245         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
3246         data/def_type fields from MonoClassField into a separate structure.
3247         (struct MonoClassField): Remove data/def_type fields.
3248         (struct _MonoClass): Add a 'field_def_values' array to store the default
3249         values/RVA for fields.
3250
3251         * class.c reflection.c: Update after the changes.
3252         
3253         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
3254         for accessing field->data.
3255
3256         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
3257
3258         * loader.c (find_method_in_class): Revert the last change for now as
3259         it breaks Mono.C5 unit tests.
3260
3261         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
3262         'field_generic_types' and 'field_objects' which contain the information
3263         previously stored in MonoInflatedField.
3264         (MonoInflatedField): Delete.
3265         (struct _MonoClassField): Delete 'generic_info' field.
3266
3267         * reflection.c: Store the information which was previously in 
3268         field->generic_info in MonoDynamicGenericClass instead.
3269
3270         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
3271         MonoClassField changes.
3272
3273 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
3274
3275         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
3276         store the value inside the data array of the MonoMethodWrapper.
3277         This saves memory, is faster and fixes the lifetime issues (methods
3278         were never removed from the hash previously). May also fix bug#436996.
3279
3280 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3281
3282         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
3283         generic instances, compute the type from the generic definition instead of
3284         looking in field->generic_info.
3285
3286         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
3287         for inflated fields, the only user was get_fieldref_token () which no
3288         longer needs it.
3289
3290         * class.c (mono_class_init): Revert the last change as it seems to cause
3291         crashes.
3292
3293         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
3294         bytes on 64 bit platforms.
3295
3296         * object.c (mono_class_create_runtime_vtable): Fix a warning.
3297         
3298         * object.c (mono_class_create_runtime_vtable): Don't initalize
3299         field->data/field->def_type here, it is done lazily by 
3300         mono_class_get_field_default_value ().
3301
3302         * icall.c (ves_icall_get_enum_info): Call 
3303         mono_class_get_field_default_value () instead of directly accessing
3304         field->data and field->def_type.
3305
3306         * object.c (get_default_field_value): Ditto.
3307
3308         * class.c (mono_field_get_data): Ditto.
3309         
3310         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
3311         call for generic instances.
3312
3313         * loader.c (find_method_in_class): If klass != from_class, then inflate
3314         the method with the context of from_class, since the caller assumes this.
3315
3316 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
3317
3318         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
3319         for accessing method->slot.
3320
3321 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
3322
3323         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
3324
3325 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3326
3327         * class.c (mono_method_get_vtable_index): Use
3328         mono_method_get_vtable_slot () for accessing method->slot.
3329
3330         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
3331         accessing klass->methods.
3332
3333         * class.c (mono_method_get_vtable_slot): New helper function.
3334         (mono_class_get_vtable_entry): Ditto.
3335         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
3336         accessing method->slot.
3337
3338         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
3339         method to get_inflated_method ().
3340
3341         * class.c (mono_class_get_inflated_method): New helper method to obtain
3342         a method of an inflated class without calling setup_methods ().
3343         (mono_class_get_cctor): Use get_inflated_method.
3344
3345         * generic-sharing.c (mono_class_get_method_generic): Ditto.
3346         
3347         * marshal.c image.c: Lazily create all the marshal caches.
3348
3349         * image.c (mono_image_init): Move initialization of runtime_invoke
3350         caches to marshal.c.
3351
3352         * marshal.c (get_cache): New helper function to lazily initialize a 
3353         wrapper cache.
3354         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
3355
3356         * debug-helpers.c (mono_method_full_name): Include generic arguments.
3357
3358 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
3359
3360         * loader.c: fixed check for interface type.
3361
3362 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
3363
3364         * appdomain.c: check for NULL setup before it's referenced.
3365
3366 p
3367 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
3368
3369         * class.c: remove the unused old vtable setup code.
3370
3371 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
3372
3373         * class.c: don't depend on interface order in
3374         setup_interface_offsets (bug #435777).
3375         * reflection.c: sort the InterfaceImpl table (patch from
3376         Jb Evain  <jbevain@novell.com>).
3377
3378 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
3379
3380         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
3381         the low level assemblies lock.
3382
3383 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
3384
3385         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
3386         object.c, reflection.c, socket-io.c, threads.c: introduced
3387         mono_framework_version () to return the major framewrok version,
3388         changed the code that was using more complex patterns to use it.
3389         Return the correct value for PlatformID for OSX.
3390
3391 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
3392
3393         * icall-def.h, process.h, process.c: added an icall to get info about
3394         processes using mono-proclib.
3395
3396 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
3397
3398         * mono-perfcounters.c: use the mono-proclib functions to
3399         access process information.
3400
3401 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
3402
3403         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
3404         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
3405         reflection.c: remove rawbuffer usage: mmap support is more sanely
3406         provided by utils/mono-mmap.
3407
3408 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
3409
3410         * gc.c: use posix semaphores when possible so that
3411         mono_gc_finalize_notify() is signal safe.
3412
3413 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
3414
3415         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
3416         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
3417         be #ifdef-ed out, the linker will remove the rest.
3418
3419         * marshal.c: Implement DISABLE_COM.
3420
3421         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
3422
3423 2008-10-11  Miguel de Icaza  <miguel@novell.com>
3424
3425         * locales.c (string_invariant_compare_char): Optimization: do not
3426         call g_unichar_type unless we actually need the information.
3427
3428 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3429
3430         * object.c, class-internals.h: Also create remoting trampolines
3431         for generic methods.  Pass the domain to the remoting trampoline
3432         creation function, too.
3433
3434 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
3435
3436         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
3437
3438 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3439
3440         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
3441         Vector4ui.
3442
3443 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3444
3445         * assembly.c:
3446         * locales.c: remove the use of g_strdown. Fixes bug #322313.
3447
3448 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
3449
3450         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
3451         for the least possible amount of time (extending the fix in r113458).
3452
3453 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3454
3455         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
3456
3457 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3458
3459         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
3460         as possible simd intrinsic types.
3461         Optimized the test to check for the common prefix first.
3462
3463 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
3464
3465         * class.c: back out part of a broken optimization committed on
3466         May 23th (bug #433908).
3467
3468 2008-10-09  Mark Probst  <mark.probst@gmail.com>
3469
3470         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
3471         Win32.  Should fix #432388 for most cases until we have the new
3472         profiler on Win32.
3473
3474 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
3475
3476         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
3477         instead of using inst->id so the hash is stable for AOT.
3478
3479 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
3480
3481         * appdomain.c:
3482         * icall.c: create a .ini file for shadow-copied assemblies that
3483         contains the location of the original assembly. Use this to return the
3484         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
3485         Also fix the number of '/' for windows when returning the CodeBase.
3486         Fixes bug #430920.
3487
3488 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3489
3490         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
3491
3492         Code is contributed under MIT/X11 license.
3493
3494 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3495
3496         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
3497           if if the class vtable needs initialized.
3498
3499         Code is contributed under MIT/X11 license.
3500
3501 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3502
3503         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
3504           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
3505           STRING->BSTR, and CLASS->INTERFACE.
3506
3507         Code is contributed under MIT/X11 license.
3508
3509 2008-10-07  Marek Habersack  <mhabersack@novell.com>
3510
3511         * sysmath.h: changed the declaration of the
3512         ves_icall_System_Math_Round2 icall by adding an extra
3513         away_from_zero parameter.
3514
3515         * sysmath.c (ves_icall_System_Math_Round2): added support for
3516         away from zero rounding. The icall now takes an extra boolean
3517         parameter to signal that away from zero operation is requested.
3518
3519 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3520
3521         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
3522         the delegate klass so it can work with full-aot.
3523         (mono_marshal_get_delegate_end_invoke): Ditto.
3524         (mono_marshal_get_delegate_invoke): Ditto.
3525
3526 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
3527
3528         * gc.c, attach.h, attach.c: remove a bad pattern:
3529         add_finalizer_callback () is not implemented correctly, it can't
3530         without adding more overhead to the finalizer loop and it's not
3531         even needed, since we know exactly what we need to call, so there is
3532         no need to do so through an expensive function pointer.
3533
3534 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
3535
3536         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
3537         for the no-gc case.
3538         * attach.c (mono_attach_init): Remove the #ifdef.
3539
3540 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
3541
3542         * attach.c (mono_attach_init): Don't use
3543         mono_gc_add_finalizer_thread_callback when compiling without GC.
3544         Fixes #432306.
3545         
3546         Code is contributed under MIT/X11 license.
3547
3548 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3549
3550         * class.c (mono_class_create_from_typedef): Remove the 
3551         #ifndef DISABLE_SIMD stuff.
3552
3553 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3554
3555         * class-internals.h (MonoClass): Added simd_type bit field.
3556
3557         * class.c (mono_class_create_from_typedef): Check if type is a simd
3558         intrinsic.
3559
3560 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3561
3562         * object.c (mono_method_add_generic_virtual_invocation): Only add
3563         instantiations to the thunk whose count is at least as large as
3564         the threshold.
3565
3566 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3567
3568         * icall.c: changed the Type of the exception thrown when trying to
3569         invoke a constructor on an abstract class. Part of the fix for bug
3570         #324185.
3571
3572 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3573
3574         * class.c, class-internals.h (mono_method_get_vtable_index): New
3575         function which returns the index into the vtable and properly
3576         handles inflated virtual generic methods.
3577
3578 2008-10-01  Mark Probst  <mark.probst@gmail.com>
3579
3580         * object.c, domain.c, object-internals.h, domain-internals.h:
3581         Generalize IMT thunk machinery to also handle thunks for virtual
3582         generic method invokes.  When a virtual generic method is invoked
3583         more than a number of times we insert it into the thunk so that it
3584         can be called without lookup in unmanaged code.
3585
3586         * generic-sharing.c, class-internals.h: Fetching a
3587         MonoGenericInst* for a method from an (M)RGCTX.
3588
3589 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
3590
3591         * marshal.c (emit_marshal_string): Applied a variant of a patch by
3592         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
3593         marshalling. Fixes #431304.
3594
3595 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
3596
3597         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
3598           handle when ref is specified without In or Out.
3599
3600         Code is contributed under MIT/X11 license.
3601
3602 2008-09-30  Mark Probst  <mark.probst@gmail.com>
3603
3604         * loader.c (mono_get_method_constrained): Don't expand method with
3605         the class's context, because it's already a method of that class.
3606
3607 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
3608
3609         * attach.c : should be correct build fix.
3610
3611 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
3612
3613         * attach.c: Fix the previous change.
3614
3615 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
3616
3617         * attach.c : quick w32 build fix.
3618
3619 2008-09-27  Miguel de Icaza  <miguel@novell.com>
3620
3621         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
3622         crashes MonoDevelop: #430455.
3623
3624 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
3625
3626         * domain-internals.h (struct _MonoDomain): Move most fields used only by
3627         the JIT do MonoJitDomainInfo in ../mini/mini.h.
3628
3629         * domain.c: Remove initialization/cleanup of the removed fields.
3630
3631 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3632
3633         * class.c (mono_class_generic_sharing_enabled): Enable generic
3634         code sharing for PPC.
3635
3636 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
3637
3638         * attach.c : Fixing the Windows builds.
3639
3640         Code is contributed under MIT/X11 license.
3641
3642 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
3643
3644         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
3645         the default generic sharing mode to 'all'.
3646
3647 2008-09-25  Mark Probst  <mark.probst@gmail.com>
3648
3649         * generic-sharing.c, class-internals.h: New function for checking
3650         whether a method needs a static RGCTX invoke wrapper.  A few
3651         funtions moved from mini/generic-sharing.c.
3652
3653         * icall.c: New function used.
3654
3655 2008-09-25  Mark Probst  <mark.probst@gmail.com>
3656
3657         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
3658         Static RGCTX invoke wrapping applies to value type methods, too.
3659
3660         * class.c (mono_class_setup_vtable_general): In generic-shared
3661         value types, wrap methods with a static RGCTX invoke wrapper.
3662
3663 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
3664
3665         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
3666         osx build.
3667
3668 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
3669
3670         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
3671         register a callback which is called when the finalizer thread is woken
3672         up.
3673         (finalizer_thread): Call the callback if it exists.
3674
3675         * attach.h attach.c: New files, implementing the attach mechanism.
3676
3677         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
3678         
3679         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
3680         by the previous change.
3681
3682 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
3683
3684         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
3685         loader.c, marshal.c, metadata-internals.h, metadata.c,
3686         method-builder.c, object.c, reflection.c: introduced specific functions
3687         to allocate from the domain and image mempools and cleaned up most of
3688         the code to use them (still missing a few in reflection.c).
3689         Keep the loader bytes counter updated.
3690
3691 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
3692
3693         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
3694         loader-related counters.
3695
3696 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
3697
3698         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
3699         added more MS-compatible counters.
3700
3701 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
3702
3703         * class.c (mono_class_setup_fields): Call setup_fields before accessing
3704         class->blittable. Fixes #428217.
3705
3706 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
3707
3708         * reflection.c (mono_image_get_field_on_inst_token): Call 
3709         field_encode_signature () since that handles custom modifiers too.
3710         Fixes #424663.
3711
3712 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
3713
3714         * reflection.c (add_custom_modifiers): New helper function to merge custom
3715         modifiers stored in objects to a MonoType.
3716         (fieldref_encode_signature): Encode custom modifiers.
3717         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
3718         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
3719
3720 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
3721
3722         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
3723         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
3724         64-bit IL only images because imports are not resolved for IL only images.
3725         Special thanks to Bill Holmes for finding this bug and testing the patch.
3726         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
3727
3728         Contributed under MIT/X11 license.
3729
3730 2008-09-19  Miguel de Icaza  <miguel@novell.com>
3731
3732         * mono-config.c (dllmap_start): Add support for the bits keyword
3733         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
3734
3735 2008-09-19  Mark Probst  <mark.probst@gmail.com>
3736
3737         * reflection.c (inflate_mono_method): When the class the method is
3738         to be inflated for is itself not inflated, just return the method.
3739
3740 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
3741
3742         * mono-perfcounters.c: use more user friendly process instance names.
3743
3744 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
3745
3746         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
3747           handle "[in] ref" and "[in][out] ref" cases.
3748
3749         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
3750           to mono_mb_create_method.  This was causing problems calling native to
3751           managed passing Variants by value.
3752
3753         Code is contributed under MIT/X11 license.
3754
3755 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
3756
3757         * class.c (can_access_internals): Call mono_assembly_load_friends ()
3758         before accessing the friend_assembly_names field.
3759
3760         * assembly.c (mono_assembly_load_friends): Make this callable multiple
3761         times.
3762         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
3763         called lazily when it is needed.
3764
3765         * metadata-internals.h (struct _MonoAssembly): Add 
3766         'friend_assembly_names_inited' flag.
3767
3768 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
3769
3770         * mono-perfcounters-def.h: fix the types of a few counters.
3771         * mono-perfcounters.c: implemented the instance names getter
3772         and a few bugfixes.
3773
3774 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
3775
3776         * culture-info-table.h : regenerated.
3777
3778 2008-09-17  Robert Jordan  <robertj@gmx.net>
3779
3780         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
3781         context bound objects. Fixes #415577.
3782
3783         Code is contributed under MIT/X11 license.
3784
3785 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
3786
3787         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
3788         implementation (bug #423582).
3789
3790 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
3791
3792         * object.c (mono_object_get_virtual_method): Handle the case method->slot
3793         is not set. Fixes #426309.
3794
3795 2008-09-16  Jb Evain  <jbevain@novell.com>
3796
3797         * class.c (mono_class_from_name): fix the exported type look up
3798         when the type is defined in a referenced assembly.
3799
3800 2008-09-16  Jb Evain  <jbevain@novell.com>
3801
3802         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
3803         increment the next index counter on each iteration to make that work
3804         for more than one type forwarder. Unmanaged part to fix #422929.
3805
3806 2008-09-15  Mark Probst  <mark.probst@gmail.com>
3807
3808         * object-internals.h: enum ComInterfaceType in
3809         MonoInterfaceTypeAttribute is guint32, not guint16.
3810
3811 2008-09-12  Mark Probst  <mark.probst@gmail.com>
3812
3813         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
3814         writing code.
3815
3816 2008-09-11  Mark Probst  <mark.probst@gmail.com>
3817
3818         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
3819         not gboolean.
3820
3821 2008-09-11  Mark Probst  <mark.probst@gmail.com>
3822
3823         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
3824         Endianness fixes for MonoSymbolFileOffsetTable.
3825
3826 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
3827
3828         * process.c (complete_path) : Removing quotes from the 
3829           input path.  The glib file routines do not handle file paths
3830           that have quotes around them.
3831
3832         Code is contributed under MIT/X11 license.
3833
3834 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
3835
3836         * socket-io.h : Adding a comment to provide locations where 
3837           changes to MonoSocketAsyncResult need to be synced.
3838
3839         Code is contributed under MIT/X11 license.
3840
3841 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
3842
3843         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
3844         parameters as well. Fixes #425001.
3845
3846 2008-09-08  Miguel de Icaza  <miguel@novell.com>
3847
3848         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
3849         windows build.
3850
3851 2008-09-07  Miguel de Icaza  <miguel@novell.com>
3852
3853         * console-io.c: Add support for tracking the window size if it
3854         changes.
3855
3856         The setup is very simple: the TtySetup function will now return a
3857         pointer to a location in memory that tracks the current console
3858         size.  The managed code checks its current value every time its
3859         queried against the last value set, and updates accordingly.
3860
3861         With this setup we can work with multiple consoles, and we do not
3862         require to poke into managed code from a signal handler.
3863
3864         Additionally, the environment for COLUMNS and LINES is now handled
3865         in unmanaged code.
3866
3867         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
3868
3869 2008-09-07  Mark Probst  <mark.probst@gmail.com>
3870
3871         * marshal.c (mono_type_native_stack_size): Treat
3872         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
3873
3874 2008-09-04  Jb Evain  <jbevain@novell.com>
3875
3876         * class.c (mono_class_is_assignable_from): fix assignability of nullables
3877         to nullables.
3878
3879 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
3880
3881         * verify.c (verify_type_compatibility_full): Revert change
3882         to allow converting a native int to unmanaged pointer be verifiable
3883         under non-strict mode.
3884         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
3885
3886         * verify.c: Added some TODOs.
3887
3888 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
3889
3890         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
3891           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
3892           Changed to use GlobalAlloc for the memory returned on Windows platforms.
3893
3894         Code is contributed under MIT/X11 license.
3895
3896 2008-09-02  Jb Evain  <jbevain@novell.com>
3897
3898         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
3899
3900 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
3901
3902         reflection.c (typebuilder_setup_fields): Handle classes with
3903         explicit size.
3904
3905 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
3906
3907         class.c (mono_class_setup_events): Add memory barrier due to
3908         double checked locking.
3909         
3910         class.c (mono_class_setup_properties): Same.
3911
3912 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
3913
3914         * class.c (mono_class_is_assignable_from): Fix the build.
3915         
3916         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
3917         before accessing klass->interface_bitmap. Fixes #421744.
3918
3919 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
3920
3921         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
3922         the runtime into no-exec mode, useful when running the AOT compiler.
3923
3924         * appdomain.c gc.c object.c: Avoid executing managed code when running
3925         in no-exec mode.
3926         
3927         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
3928
3929         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
3930         special case when the mono_assembly_loaded () returns NULL because the 
3931         search hook is not installed.
3932
3933 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
3934
3935         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
3936         crashes in bstr marshalling on linux.
3937
3938 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
3939
3940         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
3941         with more than one parameter.
3942
3943 2008-08-24  Miguel de Icaza  <miguel@novell.com>
3944
3945         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
3946         start/stop flow control as well when turning off ICANON (allows
3947         C-s and C-q to be read by Console.ReadKey).
3948
3949 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
3950
3951         * class.c (mono_class_init): Move the initialization of nested classes
3952         into mono_class_get_nested_types (). Fixes #418433.
3953
3954         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
3955         flag.
3956
3957         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
3958         iterating tough the nested classes of a class.
3959
3960 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
3961
3962         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
3963         on arm.
3964
3965 2008-08-22  Miguel de Icaza  <miguel@novell.com>
3966
3967         * console-io.c (sigcont_handler): Support signal chaining for
3968         SIGCONT.
3969
3970         (console_set_signal_handlers): Use best practices with sigaction,
3971         clear the structure before using it. 
3972
3973 2008-08-22  Robert Jordan  <robertj@gmx.net>
3974
3975         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
3976         Fix the Windows build.
3977
3978 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
3979
3980         * class.c (mono_class_generic_sharing_enabled): Make the default
3981         sharing mode 'corlib'.
3982
3983 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
3984
3985         * console-io.c (console_set_signal_handlers): Fix a warning.
3986
3987         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
3988         method normally, the JIT will take care of avoiding recursion.
3989
3990 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
3991
3992         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
3993
3994         Code is contributed under MIT/X11 license.
3995
3996 2008-08-20  Miguel de Icaza  <miguel@novell.com>
3997
3998         * console-io.c (sigcont_handler): We need to restore the entire
3999         termios state, not only the original settings, as things like echo
4000         can be controlled after this (Booish exposes this issue with its
4001         own ReadLine implementation).
4002
4003         Additionally, we need to set the terminal back into keypad_xmit
4004         mode.
4005         
4006         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
4007         string as a paramter as well.   Otherwise we get different
4008         keyboard sequences.
4009
4010 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
4011
4012         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
4013         delegates with byref out parameter passing. Fixes #351520.
4014
4015         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
4016         a generic context.
4017         (mono_type_get_desc): Add the type arguments for GENERICINST.
4018         (mono_method_full_name): Stringify the class name using mono_type_full_name
4019         so it picks up generic arguments.
4020
4021 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
4022
4023         * console-io.c: Removed debug output.
4024
4025 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
4026
4027         reflection.c (mono_reflection_create_runtime_class): Alloc
4028         the nested classes linked list using the dynamic image mempool.
4029         Fixes leak in corlib compilation.
4030
4031 2008-08-19  Miguel de Icaza  <miguel@novell.com>
4032
4033         * console-io.c: Fix incredibly annoying behavior on the console
4034         after resuming execution after control-z.   This affected every
4035         console application.
4036
4037 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
4038
4039         * mempool-internals.h: Header for mono private mempool functions. The first
4040         two function are for allocating glib linked lists using pools.
4041
4042         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
4043
4044         * Makefile.am: Added mempool-internals.h.
4045
4046 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
4047
4048         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
4049         (mono_domain_free): Ditto.
4050
4051         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
4052         be used by the JIT to store its domain-specific information, instead of putting
4053         it directly into MonoDomain.
4054
4055         * domain.c (mono_install_create_domain_hook): New helper function to install
4056         a hook which initializes domain->runtime_info.
4057
4058         * domain.c (mono_install_free_domain_hook): Ditto.
4059         
4060 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
4061
4062         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
4063         asserting if the ares parameter is null.
4064
4065         * mono-perfcounters.c: Fix warnings.
4066
4067         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
4068         is not needed, don't check for interruptions either.
4069         (mono_marshal_get_delegate_end_invoke): Ditto.
4070
4071 2008-08-15  Marek Habersack  <mhabersack@novell.com>
4072
4073         * mono-perfcounters.c (predef_readonly_counter): added support for
4074         reading the ASP.NET Requests Queued counter from another process.
4075
4076 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4077
4078         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
4079         MonoImage to simplify the AOT code.
4080
4081 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
4082
4083         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
4084         marshalling. Fixes #416078.
4085
4086 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4087         
4088         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
4089         it is set, looking up the icall address is deferred to the JIT, since 
4090         in embedded scenarios, the icall might not be registered in the runtime
4091         doing the AOT compilation. Backported from the 2.0 branch.
4092
4093 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4094
4095         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
4096         Fixes #415621.
4097
4098 2008-08-05  Marek Habersack  <mhabersack@novell.com>
4099
4100         * Makefile.am: added support for cross-compilation.
4101
4102 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
4103
4104         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
4105
4106 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
4107
4108         * mono-perfcounters.c: jitted methods and jitted bytes counters.
4109
4110 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
4111
4112         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
4113         mono-perfcounters.c: performance counters implementation.
4114
4115 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
4116
4117         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
4118         to gpointer, letting the AOT code decide what to store in it.
4119
4120 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
4121
4122         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
4123           mono_class_setup_methods if the methods are not initialized.
4124
4125         Code is contributed under MIT/X11 license.
4126
4127 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4128
4129         * verify.c: Remove some debug code I commited by accident.
4130
4131         * verify.c (mono_method_is_valid_in_context): Change the return value
4132         to make possible to distinguish between invalid and unverifiable.
4133
4134         * verify.c (verifier_load_method): Don't return NULL for unverifiable
4135         methods.
4136
4137 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4138
4139         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
4140         constraints. Fixes regression in gtest-253.
4141
4142 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4143
4144         * verify.c (mono_verifier_verify_class): Don't allow generic types
4145         with explicit layout.
4146
4147         * verify.c (mono_method_verify): Check locals and argument types.
4148
4149 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
4150
4151         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
4152         wait if the thread is in StopRequested state.
4153
4154         * class.c (mono_class_from_name): Refactor the module searching code into
4155         a separate function so it can be reused in the AOT case too.
4156
4157 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4158
4159         * verify.c (mono_type_is_valid_in_context): Improve the error message.
4160         Check both the type and it's generic type definition for loader errors.
4161         
4162         * verify.c (mono_method_is_valid_in_context): Don't generate another
4163         error when a type errors occur, this leads to the wrong exception been
4164         thrown.
4165
4166 2008-07-28  Dick Porter  <dick@ximian.com>
4167
4168         * icall-def.h
4169         * process.c
4170         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
4171         New internal calls to duplicate and close a process handle.
4172
4173 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
4174
4175         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
4176
4177 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
4178
4179         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
4180
4181 2008-07-27  Robert Jordan  <robertj@gmx.net>
4182
4183         * class.c (mono_class_init): Don't compute class.has_finalize for
4184         valuetypes. Fixes #412477.
4185
4186 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
4187
4188         * verify.c: Implement constraint equivalence checking.
4189         This is required when a generic parameter is used as
4190         argument to a constrained one.
4191
4192         Fixes #410637.
4193
4194 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
4195
4196         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4197
4198         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
4199
4200         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
4201         synch with managed object layout.
4202
4203 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
4204
4205         * verify.c (do_branch_op): Handle valuetypes and generic
4206         arguments properly.
4207
4208         * verify.c (do_cmp_op): Same.
4209
4210         Fixes #410383.
4211
4212 2008-07-24  Mark Probst  <mark.probst@gmail.com>
4213
4214         * generic-sharing.c: Fix memory leaks.
4215
4216         * class.c, class-internals.h: Make
4217         mono_class_inflate_generic_type_with_mempool() non-static.
4218
4219 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
4220
4221         * pedump.c (dump_verify_info): Dump full class name.
4222
4223 2008-07-24  Mark Probst  <mark.probst@gmail.com>
4224
4225         * generic-sharing.c: Removed some old code that didn't do anything.
4226
4227 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
4228         * profiler.c: Added runtime_initialized_event,
4229         mono_profiler_install_runtime_initialized and
4230         mono_profiler_runtime_initialized. This new hook tells the profiler
4231         when the runtime is sufficiently initialized to be able to call
4232         mono_thread_attach on the root appdomain.
4233         * profiler.h, profiler-private.h: Likewise.
4234
4235 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
4236
4237         * verify.c (do_cast): Do boxing for generic arguments as well.
4238
4239         * class.c (is_nesting_type): Drop generic instantiations before
4240         checking for nesting.
4241
4242         * class.c (can_access_instantiation): Allow access to generic
4243         arguments.
4244
4245 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
4246
4247         * verify.c (verify_class_for_overlapping_reference_fields):
4248         On some cases, the field size might be zero, guard against that.
4249         Fix the explicit layout check to work as expected.
4250
4251 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
4252
4253         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
4254         mono_thread_resume () during shutdown, since the thread we want to abort
4255         might be suspended.
4256
4257 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
4258
4259         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
4260         warning.
4261
4262         * debug-mono-symfile.c: Fix a warning.
4263
4264         * mono-perfcounters.c (get_cpu_times): Fix a warning.
4265
4266         * object.c (mono_class_vtable): Check if exception_type is set, and return
4267         NULL as defined by the function comments.
4268
4269 2008-07-22  Mark Probst  <mark.probst@gmail.com>
4270
4271         * mempool.c: Use malloc for every single mempool allocation if the
4272         configure option is set.  This makes it easier to track mempool
4273         allocations with tools like Valgrind.
4274
4275 2008-07-22  Jb Evain  <jbevain@novell.com>
4276
4277         * reflection.c (create_dynamic_mono_image): emit the same
4278         metadata version that SL2 does when creating a SL2 image.
4279
4280 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
4281
4282         * icall-def.h:
4283         * icall.c: New icall System.Enum:get_hashcode. This function
4284         avoids the overhead of boxing the enum to the underlying type.
4285
4286 2008-07-21  Mark Probst  <mark.probst@gmail.com>
4287
4288         * reflection.c (mono_method_get_object): Don't let static RGCTX
4289         invoke wrappers get into MonoReflectionMethods.
4290
4291 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
4292
4293         * object-internals.h:
4294         * object.c: New mono_runtime_class_init_full function
4295         that makes throwing the exception optinal.
4296
4297         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
4298         for the case where the exception object is supplied.
4299
4300 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
4301
4302         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
4303         old ld versions.
4304
4305         Contributed under MIT/X11 license.
4306
4307 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4308
4309         * string-icalls.c (ves_icall_System_String_InternalSplit):
4310         Optimize array allocation by caching the MonoClass of the
4311         array type.
4312
4313         * icall.c (ves_icall_Type_GetMethodsByName): Same.
4314
4315         * reflection.c (mono_param_get_objects): Same.
4316
4317 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4318
4319         * icall-def.h:
4320         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
4321         It inflates the given type using the class context.
4322
4323 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4324
4325         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
4326         the vtable if it already exists.
4327
4328         * object-internals.h: Add mono_class_try_get_vtable as part of the
4329         internal API.
4330
4331         * reflection.c (mono_type_get_object): Use the MonoObject from the
4332         vtable when possible. Reduces locking contention on reflection heavy
4333         code.
4334
4335 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
4336
4337         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
4338         g_bit_nth_msf () since that macro is not implemented in eglib.
4339
4340 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
4341
4342         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
4343         on platforms which do not support it.
4344
4345 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
4346
4347         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
4348
4349 2008-07-11  Martin Baulig  <martin@ximian.com>
4350
4351         * mono-debug-debugger.h
4352         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
4353
4354         * mono-debug-debugger.c
4355         (_mono_debugger_interruption_request): New global volatile variable.
4356         (mono_debugger_check_interruption): New public function.
4357
4358         * threads.c
4359         (mono_thread_current_check_pending_interrupt): Call
4360         mono_debugger_check_interruption().
4361         (mono_thread_interruption_checkpoint_request): Likewise.
4362
4363 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4364
4365         * verify.c: Add more type checks for loaded types. Verify the result
4366         handle from ldtoken.
4367
4368 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4369
4370         * loader.c (field_from_memberref): Don't crash if the field
4371         wasn't found.
4372
4373 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4374
4375         * verify.c: Verify if type and method instantiations
4376         don't have invalid VAR or MVAR arguments.
4377
4378 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4379
4380         * verify.c: Fix double free of function pointer list.
4381
4382 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4383
4384         * object.c (mono_string_to_utf8): Comment the new code as it
4385         breaks under eglib.
4386
4387 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
4388
4389         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
4390
4391 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
4392
4393         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
4394           is not throw too many times.
4395
4396         Code is contributed under MIT/X11 license.
4397
4398 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
4399
4400         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
4401         debugging is turned off.
4402
4403 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
4404
4405         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
4406
4407 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4408
4409         * class-internals.h, class.c: Added new generic sharing option:
4410         Share only stuff in System.Collections.Generic, which is now the
4411         default.
4412
4413 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4414
4415         * generic-sharing.c, class-internals.h: New function for getting a
4416         generic method in a generic class given the corresponding method
4417         for a different instantiation of the class.  Partly refactored
4418         from mini-trampolines.c.
4419
4420         * class.c: Make sure generic methods have a class_inst if they are
4421         part of a generic class.
4422
4423         * metadata.c (mono_type_stack_size_internal): Handle type
4424         variables.
4425
4426 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4427
4428         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
4429         Signifies whether information on the this/vtable/mrgctx variable
4430         is available.
4431
4432 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4433
4434         * object.c, object-internals.h, icall.c: New function
4435         mono_delegate_ctor_with_method(), which does the same as
4436         mono_delegate_ctor(), but takes an explicit method argument
4437         instead of taking the method from the jit info.
4438
4439         * marshal.c: When creating a delegate with an inflated method take
4440         the "this" argument as the target class for the castclass.
4441
4442 2008-07-03  Mark Probst  <mark.probst@gmail.com>
4443
4444         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
4445         mono_jit_info_table_find() to perform very badly in some cases.
4446
4447 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
4448
4449         * icall.c (type_from_typename): Handle 'string'.
4450
4451         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
4452         wrappers into the wrapper_hash, since the key is not a MonoMethod.
4453
4454 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
4455
4456         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
4457
4458         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
4459         number of available managed allocator types.
4460
4461         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
4462         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
4463
4464 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
4465
4466         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
4467         which is a low level lock protecting just the 'jit_code_hash' hash table.
4468
4469         * domain.c: Initialize+cleanup jit_code_hash_lock.
4470         
4471 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
4472
4473         * coree.c (mono_load_coree): Set coree_module_handle global variable only
4474         after initialization.
4475
4476         * coree.h: Make MonoFixupExe internal.
4477
4478         Contributed under MIT/X11 license.
4479
4480 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
4481
4482         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
4483         because that is platform independent. Check NumberOfRvaAndSizes in PE32
4484         as well.
4485         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
4486         image being loaded is a CLI image and _CorValidateImage gets called.
4487
4488         * coree.h: Add MonoLoadImage.
4489
4490         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
4491         instead of LoadLibrary.
4492
4493         Contributed under MIT/X11 license.
4494
4495 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
4496
4497         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
4498         for any primitive type.
4499
4500 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
4501
4502         * object.c (mono_array_new_specific): Optimize this and the other allocation
4503         functions a bit.
4504         
4505         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
4506         domains too if mono_dont_free_domains is set.
4507
4508         * domain-internals.h (mono_dont_free_domains): New internal option controlling
4509         whenever to free appdomain data after it has been unloaded.
4510
4511         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
4512         
4513 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
4514
4515         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
4516         (mono_method_get_equivalent_method): Fix a warning.
4517
4518         * object.c (mono_message_init): Avoid looking up array types for each call.
4519
4520 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
4521
4522         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
4523         call.
4524
4525         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
4526         even more.
4527
4528         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
4529         each iteration.
4530
4531         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
4532         fields of an enum.
4533
4534 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4535
4536         * object.c (mono_value_box): Fix boxing of nullables.
4537
4538 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
4539
4540         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
4541         mono_module_handle that is defined by the linker; no initialization required.
4542         * coree.h: Remove mono_module_handle, add __ImageBase, update
4543         mono_image_open_from_module_handle.
4544         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
4545         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
4546         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
4547         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
4548         to 4 GB away from image base address. IA64 version is not tested but was very
4549         easy to implement and should work if we ever need it.
4550         * domain.c (mono_init_internal): Avoid system error message boxes.
4551         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
4552         with has_entry_point. Handle do_mono_image_load fauilre correctly.
4553         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
4554         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
4555         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
4556
4557         Contributed under MIT/X11 license.
4558
4559 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4560
4561         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
4562         as part of the private mono API.
4563         
4564         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
4565         Do proper argument checking for methods that belong to generic classes.
4566         Do proper type resolution for GMFH/2.
4567         Fixes #377324.
4568         
4569 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4570
4571         * verify.c (do_switch): Fix a memory corruption bug with
4572         the jump index is out of bound.
4573
4574 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4575
4576         * verify.c: Disable debug code.
4577
4578 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4579
4580         * reflection.c (mono_image_get_methodbuilder_token): Use
4581         mono_image_get_methodspec_token_for_generic_method_definition
4582         instead of mono_image_get_memberref_token. We cache more memberef
4583         entries now.
4584
4585 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4586
4587         * verify.c: Inflate exception clause types.
4588         Fixes #402606.
4589         
4590 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4591
4592         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
4593         name.
4594
4595         * reflection.c (mono_image_get_ctorbuilder_token): Same.
4596
4597         * reflection.c (mono_image_create_method_token): Same.
4598
4599 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4600
4601         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
4602         It does the same as mono_image_get_methodref_token but works on
4603         MethodBuilder.
4604
4605         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
4606         and always generate a methodspec. This follows the old behavior and fixes
4607         the regressions in System.Core. 
4608
4609 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
4610
4611         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
4612         don't event mono_class_get () succeeds. Fixes #402182.
4613
4614 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
4615
4616         * metadata-internals.h: Added MonoDynamicImage::methodspec
4617         hashtable to store methodspec tokens created for MethodBuilders.
4618
4619         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
4620         MethodBuilders as open instantiations if a methodspec was requested.
4621
4622         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
4623
4624         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
4625
4626         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
4627
4628         Fixes bug #349190.
4629
4630 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
4631
4632         * loader.c (method_from_methodspec): Avoid crashing if the
4633         method lookup fails.
4634
4635 2008-06-20  Dick Porter  <dick@ximian.com>
4636
4637         * socket-io.c (get_socket_assembly): Cope with Moonlight network
4638         classes being in a different assembly.  Fixes bug 399184.
4639
4640 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
4641
4642         * loader.c (mono_loader_init): Make this callable multiple times.
4643         (mono_dllmap_insert): Call mono_loader_init () so this works even before
4644         the runtime is initialized. Fixes #401755.
4645
4646 2008-06-19  Dick Porter  <dick@ximian.com>
4647
4648         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
4649         Fixes bug 349688.
4650
4651 2008-06-19  Dick Porter  <dick@ximian.com>
4652
4653         * socket-io.c:
4654         * icall-def.h: Implement Socket generic Send() and Receive()
4655         methods.  Fixes bug 395168.
4656
4657 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
4658
4659         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
4660
4661         Contributed under MIT/X11 license.
4662
4663 2008-06-18  Martin Baulig  <martin@ximian.com>
4664
4665         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
4666         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
4667         set to 80.0.  The debugger <-> runtime interface is now frozen as
4668         well.   
4669
4670         * mono-debug.c
4671         (mono_debug_debugger_version): Bump to 4.
4672
4673 2008-06-18  Martin Baulig  <martin@ximian.com>
4674
4675         * debug-mono-symfile.c
4676         (load_symfile): Don't check the minor version.
4677
4678         * debug-mono-symfile.h: Bump the version number to 50.0.
4679
4680 2008-06-18  Martin Baulig  <martin@ximian.com>
4681
4682         * debug-mono-symfile.c
4683         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
4684         minimum required version.
4685
4686 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
4687
4688         * reflection.c (mono_custom_attrs_from_property): Fix support for
4689         retriveving cattrs of dynamic inflated generic types.
4690
4691         * reflection.c (mono_custom_attrs_from_event): Same.
4692
4693         * reflection.c (mono_custom_attrs_from_field): Same;
4694
4695         * reflection.c (typebuilder_setup_events): Same cattrs of events.
4696
4697         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
4698         Moved to metadata.c.
4699
4700         * metadata.c: New functions to retrive the equivalent field, event
4701         of property from the generic type definition.
4702
4703         * metadata-internals.h: Added new functions from metadata.c.
4704
4705 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
4706
4707         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
4708         to cached in a mempool is used.
4709
4710         * metadata.c (free_generic_class): In some situations field generic_info type
4711         is not properly dup'ed and leads to double free'ing.
4712
4713         Fixes #400643.
4714
4715 2008-06-17  Mark Probst  <mark.probst@gmail.com>
4716
4717         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
4718         this arguments (will be needed later for generic methods).
4719         Collect stats.
4720
4721 2008-06-17  Mark Probst  <mark.probst@gmail.com>
4722
4723         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
4724         Create a static RGCTX invoke wrapper for methods which require it.
4725
4726 2008-06-17  Mark Probst  <mark.probst@gmail.com>
4727
4728         * object.c, class-internals.h: New function for checking whether
4729         an individual field is special static.
4730
4731 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
4732
4733         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
4734         linear search since the table is sorted.
4735
4736         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
4737         Fixes #324180.
4738
4739 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
4740
4741         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
4742         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
4743
4744         * gc.c (mono_domain_finalize): Allow an infinite timeout.
4745
4746         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
4747         
4748         * threads.c (mono_thread_request_interruption): Get rid of locking, use
4749         InterlockedCompareExchange to query and modify 
4750         thread->interruption_requested.
4751
4752         * object-internals.h (struct _MonoThread): Change interruption_requested
4753         to a gint32 so it can be modified by atomic operations. Add 
4754         'critical_region_level' from the managed side, change small_id to a guint32,
4755         add new set of 'unused' fields.
4756
4757         * appdomain.c: Bump corlib version.
4758
4759 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
4760
4761         * class.c (mono_class_from_name): Search modules as well. Fixes
4762         #322332.
4763
4764 2008-06-13  Mark Probst  <mark.probst@gmail.com>
4765
4766         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
4767         templates.  Templates are generalized with an additional type_argc
4768         argument.  RGCTX templates have type_argc==0, MRGCTX templates
4769         have type_argc>0.
4770
4771         * domain-internals.h, domain.c: New hash table for looking up
4772         MRGCTXs.
4773
4774         * metadata.c, metadata-internals.h: Rename hash and equal
4775         functions for MonoGenericInst's and make them public.
4776
4777         * class-internals.h: New data structures for the MRGCTX.  Macros
4778         for distinguishing slots in the RGCTX and the MRGCTX.
4779
4780 2008-06-13  Mark Probst  <mark.probst@gmail.com>
4781
4782         * object.c (mono_method_get_imt_slot): Put the same methods of
4783         different instantiations of the same generic interface in the same
4784         IMT slots, to make generic sharing simpler.
4785
4786 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
4787
4788         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
4789
4790         * metadata.c (mono_metadata_field_info_with_mempool): Added.
4791         This function works just like mono_metadata_field_info, but
4792         accept a mempool as argument to be used allocating memory.
4793
4794         * marshal.c (mono_marshal_load_type_info): Use new function
4795         to load marshal data into image mempool.
4796
4797 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
4798
4799         * class.c (mono_class_inflate_generic_type_with_mempool):
4800         This function allows to inflate a generic type using
4801         a mempool.
4802
4803         * class.c (inflate_generic_type): Take a mempool as argument
4804         and use it to do type dup'ing.
4805
4806         * class.c (mono_class_setup_fields): Field type for generic
4807         generic classes are allocated from the image mempool.
4808
4809         * metadata.c (free_generic_class): Inflated field type is
4810         now allocated in the image mempool.
4811
4812 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
4813
4814         * threads.c (thread_cleanup): Free MonoThread::name.
4815
4816 2008-06-12  Marek Habersack  <mhabersack@novell.com>
4817
4818         * appdomain.c (ensure_directory_exists): avoid unnecessary
4819         mkdir(2) calls when the shadow directory already exists.
4820         (mono_make_shadow_copy): copy also satellite assemblies from the
4821         private bin directories.
4822
4823 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
4824
4825         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
4826         
4827         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
4828         a page boundary. Fixes #396219.
4829
4830 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4831
4832         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
4833         due to double-checked locking.
4834
4835 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4836
4837         * assembly.c (build_assembly_name): Release memory on failure.
4838
4839         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
4840
4841 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4842
4843         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
4844         memory on failure.
4845
4846 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4847
4848         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
4849         memory on failure.
4850
4851 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4852
4853         * loader.c (field_from_memberref): Check if field signature type is equal
4854         to the non-inflated type of the field. Fixes #398980.
4855
4856 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
4857
4858         * assembly.c (mono_assembly_load_from_full): Call 
4859         mono_assembly_load_friends () outside the assemblies lock, since it can
4860         acquire the loader lock. Fixes #323696.
4861
4862         * reflection.c (resolve_object): Inflate the inst with the context for
4863         FieldOnTypeBuilderInst. Fixes #399010.
4864
4865 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4866
4867         * reflection.c (mono_image_get_field_on_inst_token): Don't
4868         inflate the field to encode it's signature. If it's a
4869         VAR or MVAR it should stay that way in the signature.
4870         Fixes #399047.
4871
4872 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4873
4874         * reflection.c (resolve_object): Release memory of inflated types.
4875
4876 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4877
4878         * loader.c (mono_method_get_signature_full): Remove assert about
4879         loading a methodspec to a generic method. We have such methods, such as
4880         System.Threading.Interlocked::CompareExchange<T>.
4881         This assert was removed since it crashes the verifier when it checks
4882         methods calling CompareExchange<T>.
4883
4884 2008-06-10  Marek Safar  <marek.safar@gmail.com>
4885
4886         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
4887         of Type array and not MonoType.
4888
4889 2008-06-10  Marek Habersack  <mhabersack@novell.com>
4890
4891         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
4892         <lupus@ximian.com>
4893
4894 2008-06-10  Martin Baulig  <martin@ximian.com>
4895
4896         * debug-mono-symfile.h
4897         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
4898         changes to the file format, but we were generating incorrect
4899         source file indices in the line number table due to a bug, which
4900         made backtraces report an incorrect source file.
4901
4902 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4903
4904         * mono-debug.c: Moved mono_debug_free_method_jit_info from
4905         mini/debug-mini.c to here.
4906
4907         * mono-debug.c (il_offset_from_address): Free memory from find_method.
4908
4909         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
4910         use it to release structs returned by mono_debug_find_method.
4911
4912 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
4913
4914         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
4915         since it needs to set method->slot for all interface methods.
4916
4917 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4918
4919         * class-internals.h: Forgot to add.
4920
4921 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4922
4923         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
4924
4925         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
4926         Lookup the custom attributes from property_hash.
4927
4928         * reflection.c (mono_save_custom_attrs): Save the custom attributes
4929         in property_hash. Allocate all data using the image mempool.
4930
4931         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
4932         for dynamic_custom_attrs to checks if the image is dynamic.
4933
4934 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
4935
4936         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
4937         assemblies array.
4938         
4939         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
4940         runtime functions while holding the domain assemblies lock.
4941
4942 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4943
4944         * verify.c: Reapplied the last bit of the reverted changes.
4945
4946 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4947
4948         * verify.c: Reapplied more of the reverted changes.
4949
4950 2008-06-09  Martin Baulig  <martin@ximian.com>
4951
4952         * debug-mono-symfile.c (load_symfile): Check the major version
4953         first; if it's wrong, don't print the minor version in the error message.
4954
4955 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
4956
4957         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
4958         lock instead of the domain lock to avoid deadlocks, since the thread might
4959         already hold the loader lock.
4960
4961         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
4962         (mono_thread_attach): Ditto.
4963
4964         * monitor.c: Use a TLS variable for holding the current thread id instead
4965         of calling pthread_self ().
4966         (mono_monitor_init_tls): New internal function to initialize the TLS
4967         variable.
4968         (mono_monitor_try_enter_internal): Put the owner == id check after the
4969         owner == 0 check.
4970
4971         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
4972         missed optimizations when using gcc-4.3.
4973
4974 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
4975
4976         * reflection.c (mono_dynamic_image_free): Free the memory
4977         used by MonoGenericParam in MonoDynamicImage::gen_param.
4978
4979         * reflection.c (mono_reflection_setup_generic_class): Allocate
4980         container from mempool.
4981
4982         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
4983         container from mempool.
4984
4985 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
4986
4987         * threads.c (mono_set_pending_exception): New internal function to set the
4988         pending exception of the current thread.
4989         (mono_thread_get_and_clear_pending_exception): Check for 
4990         thread->pending_exception as well.
4991
4992         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
4993
4994         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
4995         it can trigger a collection.
4996
4997 2008-06-06  Martin Baulig  <martin@ximian.com>
4998
4999         Merged the `debugger-kahalo' branch.
5000
5001         * mono-debug.h
5002         (MONO_DEBUGGER_VERSION): Bumped to 72.
5003
5004         * debug-mono-symfile.h
5005         (MonoSymbolFileMethodIndexEntry): Removed.
5006         (MonoSymbolFileMethodEntry): New public typedef.
5007         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
5008         (MonoSymbolFileSourceEntry): Remove everything except `index' and
5009         `data_offset'.
5010         (MonoSymbolFileMethodEntry): Removed.
5011         (MonoSymbolFileLexicalBlockEntry): Removed.
5012         (MonoSymbolFileLineNumberEntry): Removed.
5013         (MonoDebugLexicalBlockEntry): Removed.
5014         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
5015         removed `num_il_offsets' and `il_offsets'.
5016         (MonoSymbolFile): Replace `version' with `major_version' and
5017         `minor_version'.
5018         (MONO_SYMBOL_FILE_VERSION): Replace with
5019         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
5020         `MONO_SYMBOL_FILE_MINOR_VERSION'.
5021
5022         * debug-mono-symfile.c
5023         (mono_debug_symfile_lookup_location): Add support for the new line
5024         number table format.
5025
5026 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5027
5028         * metadata.c (free_generic_class): Release the inflated
5029         MonoClass of dynamic generic classes if it's not a generic
5030         type definition.
5031
5032 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5033
5034         * verify.c: Reapplied more of the reverted changes.
5035
5036 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5037
5038         * reflection.c (lookup_custom_attr): Clean the cached flag or
5039         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
5040         for SRE types.
5041
5042 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5043
5044         * verify.c: Reapplied a small part of the reverted changes.
5045
5046 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
5047
5048         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5049
5050         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
5051         previously in managed code.
5052         (mono_monitor_exit): Ditto.
5053         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
5054
5055         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
5056         the managed definition.
5057
5058 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
5059
5060         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
5061
5062 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
5063
5064         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
5065         
5066         * monitor.c: Add some micro optimizations.
5067
5068         * icall.c (type_from_typename): Handle 'bool'.
5069
5070 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
5071
5072         * verify.c: Implement constructor verification per P III 1.8.1.4.
5073         Fixes #396716.
5074
5075 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
5076
5077         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
5078         holding the assemblies lock here too.
5079
5080 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5081
5082         * verify.c: Kill stack_top function.
5083
5084 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5085
5086         * verify.c: Kill stack_get function.
5087
5088 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5089
5090         * verify.c (mono_method_verify): Last change broke the build. Fixed.
5091
5092 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5093
5094         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
5095         more reliable.
5096
5097         * verify.c (mono_method_verify): Inflate params and locals to avoid
5098         mismatch when checking for compatibility.
5099
5100 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
5101
5102         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
5103         Length prefix should be size in bytes. Fix bug #339530.
5104         
5105         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
5106         Length prefix should be size in bytes. Fix bug #339530.
5107
5108         Code is contributed under MIT/X11 license.
5109
5110 2008-06-05  Bill Holmes <billholmes54@gmail.com>
5111
5112         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
5113
5114         Contributed under MIT/X11 license.
5115
5116 2008-06-05  Martin Baulig  <martin@ximian.com>
5117
5118         * mono-debug-debugger.c
5119         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
5120
5121 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
5122
5123         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
5124         while holding the assemblies lock to prevent deadlocks. Handle the case
5125         where the search hook returns NULL but the assembly was still loaded.
5126         Fixes #323696.
5127
5128         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
5129         modify domain state.
5130
5131 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
5132
5133         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
5134         * Makefile.am (pedump_LDADD): Post-process object files and
5135         add dtrace-generated object file, if necessary.
5136
5137         Code is contributed under MIT/X11 license.
5138
5139 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5140
5141         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
5142
5143 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5144
5145         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
5146
5147 2008-06-04  Mark Probst  <mark.probst@gmail.com>
5148
5149         * threads.c: Try to free everything from the delayed free table
5150         when shutting down threads, and set the variable to NULL after the
5151         table is freed so that calling
5152         mono_thread_hazardous_try_free_all() when shutting down the root
5153         domain doesn't crash.
5154
5155 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5156
5157         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
5158         the caller if resulting type was inflated.
5159
5160         * class.c (mono_class_create_from_typespec): Free the MonoType if it
5161         was inflated.
5162
5163         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
5164
5165
5166 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
5167
5168         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
5169         class library tests.
5170
5171         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
5172         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
5173         #396989.
5174
5175 2008-06-04  Mark Probst  <mark.probst@gmail.com>
5176
5177         * domain.c, domain-internals.h: The JIT infos are now freed by the
5178         JIT info table code.  They are freed immediately if there only a
5179         single JIT info table in circulation.  If there is more, the free
5180         is delayed via a queue.
5181
5182         * threads.c, threads-types.h: New hazard pointer function for
5183         freeing all freeable delayed items in one sitting.
5184
5185 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5186
5187         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
5188
5189         * reflection.c (typebuilder_setup_properties): Same.
5190
5191         * reflection.c (typebuilder_setup_events): Same.
5192
5193 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5194
5195         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
5196         and use it for allocating memory.
5197
5198         * reflection.c (mono_marshal_spec_from_builder): Same.
5199
5200         * reflection.c: Change code to use new signatures.
5201
5202         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
5203
5204 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5205
5206         * decimal.c (rescale128): Put back one line which was accidently commented
5207         out.
5208         
5209         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
5210         to cause crashes.
5211
5212 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5213
5214         * reflection.c (mono_reflection_generic_class_initialize): Name must
5215         be always malloc'ed so we can free it later on. Do this for field, property
5216         and event.
5217
5218         * metadata.c (free_generic_class): Free field, property and event names.
5219
5220 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5221
5222         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
5223         instead of g_memdup.
5224
5225         * reflection.c (typebuilder_setup_fields): Same.
5226
5227 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5228
5229         * decimal.c (rescale128): Optimize this function a bit more.
5230
5231 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5232
5233         * metadata.c (free_generic_class): Release some memory from
5234         SRE generic classes.
5235
5236 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5237
5238         * reflection.c (mono_image_get_generic_field_token): No reference
5239         to name is kept, free it.
5240
5241         * reflection.c (mono_reflection_generic_class_initialize): Free
5242         more memory of the inflated field.
5243
5244 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5245
5246         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
5247         code.
5248
5249 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
5250
5251         * reflection.c (mono_dynamic_image_free): Release memory used by
5252         MonoDynamicImage::array_methods elements.
5253
5254         * reflection.c (assembly_add_win32_resources): Release memory after
5255         encoding.
5256
5257 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
5258
5259         * decimal.c (log2_32): Use an optimized version for this function too.
5260         
5261         * decimal.c (log2_64): Fix this on 32 bit machines.
5262
5263 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
5264
5265         * class.c (mono_dup_array_type): Implement allocation using a mempool.
5266
5267         * class.c (mono_metadata_signature_deep_dup): Same.
5268
5269         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
5270         a mempool.
5271
5272         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
5273
5274         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
5275
5276         * metadata-internals.h: Added mono_metadata_signature_dup_full.
5277
5278         * class-internals.h: Update signatures to take a MonoMemPool.
5279
5280 2008-06-02  Dick Porter  <dick@ximian.com>
5281
5282         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
5283         * icall-def.h: Add
5284         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
5285         FormatMessage API to get the error text.  Fixes bug 321827.
5286
5287 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
5288
5289         * decimal.c: Add some micro optimizations to make decimal operations faster.
5290
5291 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5292
5293         * reflection.c (method_encode_clauses): Take a mempool
5294         as parameter and use it to allocate the clause array.
5295
5296         * reflection.c (mono_image_get_field_on_inst_token): Free
5297         the inflated type after encoding it.
5298
5299         * reflection.c (mono_dynamic_image_free): Free each element
5300         of MonoDynamicImage::gen_params.
5301
5302         * reflection.c (reflection_methodbuilder_to_mono_method):
5303         Allocate the generic param array from the mempool.
5304         Allocate signature params from the mempool.
5305
5306         * reflection.c (mono_reflection_generic_class_initialize):
5307         Free inflated fields after been used.
5308
5309 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
5310
5311         * icall.c: Reapply the memory leak fixes as they no
5312         longer make mono crash.
5313
5314 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
5315
5316         * reflection.c (mono_type_get_object): Don't store the suplied
5317         MonoType with type_hash. A caller which pass a type that
5318         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
5319         might end with a pointer to freed memory.
5320         The solution is to use byval_arg or this_arg from the associated
5321         MonoClass of the supplied type.
5322
5323 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
5324
5325         * icall.c: Revert the rest of the last change as it breaks the build too.
5326
5327 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5328
5329         * icall.c: Revert a leak fix as it's breaking the build.
5330
5331 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5332
5333         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
5334
5335 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5336
5337         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
5338
5339 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5340
5341         * icall.c: Fix some memory leaks.
5342
5343 2008-05-29  Dick Porter  <dick@ximian.com>
5344
5345         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
5346         async socket operations from the pending list when a socket
5347         closes.  Leaving it until the threadpool services the event
5348         exposes a race condition when a socket descriptor is reused.
5349         Fixes bug 377589.
5350
5351 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5352
5353         * object.c: Fix negative index check for array alocation.
5354
5355 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5356
5357         * icall.c, marshal.c: Delegate wrappers should skip visibility.
5358         This check is performed by the verifier for IL created delegates
5359         and by Delegate::CreateDelegate for programatically created ones.
5360         Fixes #372406.
5361
5362 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5363
5364         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
5365         Fix code to use mono_array_size_t instead of int.
5366
5367         Based on patch by Luis F. Ortiz.
5368         Contributed under X11 license.
5369         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5370
5371 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5372
5373         * icall.c: Added ves_icall_System_Array_GetLongLength and
5374         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
5375         arrays.
5376
5377         * icall.h: Export both new functions.
5378
5379         Based on patch by Luis F. Ortiz.
5380         Contributed under X11 license.
5381         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5382
5383 2008-05-28  Martin Baulig  <martin@ximian.com>
5384
5385         The debugger now requires exactly r103463.
5386
5387         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
5388         This version is not supported by the debugger, wait for 72.
5389
5390 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5391
5392         * object.h: Changed array related functions to use
5393         mono_array_size_t instead of guint32. Forgot to commit this file.
5394
5395         Patch by Luis F. Ortiz.
5396         Contributed under X11 license.
5397         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5398
5399
5400 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5401
5402         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
5403         don't define it. Use the number literal instead.
5404
5405 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5406
5407         * icall.c: Changed array related functions to use
5408         mono_array_size_t instead of guint32.
5409
5410         * icall.c (ves_icall_System_Array_GetLength): Check for length
5411         overflow under MONO_BIG_ARRAYS.
5412
5413         Based on patch by Luis F. Ortiz.
5414         Contributed under X11 license.
5415         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5416
5417 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5418
5419         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
5420
5421         Based on patch by Luis F. Ortiz.
5422         Contributed under X11 license.
5423         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5424
5425 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5426
5427         * object.c, object.h: Changed array related functions to use
5428         mono_array_size_t instead of guint32.
5429
5430         Patch by Luis F. Ortiz.
5431         Contributed under X11 license.
5432         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5433
5434 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5435
5436         * object.h: Introduced mono_array_size_t typedef. This must be used
5437         in all places an array length is expected. This is 64bits wide if
5438         MONO_BIG_ARRAYS is enabled.
5439
5440         Patch by Luis F. Ortiz.
5441         Contributed under X11 license.
5442         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5443
5444 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
5445
5446         * security-manager.c class.c: Set the class exception info by calling
5447         mono_class_set_failure ().
5448
5449         * class.c (mono_class_get_exception_data): New accessor function.
5450         (mono_class_set_failure): Store exception_data in the property hash.
5451
5452         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
5453         the struct as a property.
5454
5455         * loader.c (mono_get_method_full): Store the lookup result for method
5456         tokens in method_cache, the others in methodref_cache to decrease the memory
5457         usage of hash tables.
5458
5459         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
5460         (mono_image_init): method_cache is lazy inited now.
5461
5462         * metadata-internals.h (struct _MonoImage): Change method_cache to
5463         a MonoValueHashTable, add a separate methodref_cache.
5464
5465 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
5466
5467         * number-formatter.h: Fix tables to avoid arithemtic overflow in
5468           Double.ToString as exposed by Bug #383531.
5469
5470 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
5471
5472         * number-formatter.h: Make some tables static.
5473
5474         * class.c (mono_method_set_generic_container): New accessor function.
5475         (mono_method_get_generic_container): Ditto.
5476
5477         * class-internals.h (struct _MonoMethod): Remove rarely used 
5478         'generic_container' field, store it in the property hash instead. Add 
5479         'is_generic' boolean field instead.
5480
5481         * image.c (mono_image_init): Initialize property_hash.
5482         (mono_image_close): Destroy property_hash.
5483
5484         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
5485         hold rarely used fields of runtime structures belonging to this image.
5486
5487         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
5488         to get/set method->generic_container.
5489
5490         * loader.c (mono_get_method_from_token): Avoid loading the method header for
5491         generic methods.
5492
5493 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
5494
5495         * class.c (mono_class_inflate_generic_method_full): Don't increase
5496         mono_stats.inflated_method_count for methods found in the cache.
5497
5498         * threads.c (mono_thread_request_interruption): Add a comment about 
5499         QueueUserAPC ().
5500
5501 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
5502
5503         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
5504         interface_offsets_packed table.
5505         
5506         * class.c (mono_class_init): Remove some dead code.
5507
5508         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
5509         mono_class_setup_vtable () when CAS is active to detect security problems.
5510
5511 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
5512
5513         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
5514
5515         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
5516         parameters as it's irrelevant for delegate checking.
5517
5518 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
5519
5520         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
5521
5522         * class.c (mono_class_init): Control the creation of a generic vtable using
5523         a global which is true by default, but set to false by the runtime startup code.
5524         
5525         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
5526         Disabled for now since it breaks the embedding API.
5527         Move the setup of class->methods for arrays to mono_class_setup_methods ().
5528         (mono_class_setup_methods): Add a memory barrier.
5529
5530         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
5531         when mono_class_init () doesn't compute the generic vtable.
5532         
5533 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
5534         * profiler.c: Added mono_profiler_install_statistical_call_chain,
5535         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
5536         to support call chains (backtrace) in the stat profiler.
5537         * profiler.c, profiler-private.h: Likewise.
5538
5539 2008-05-22  Mark Probst  <mark.probst@gmail.com>
5540
5541         * generic-sharing.c: Init generic class when a method of it is
5542         requested via a runtime generic context.
5543
5544 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
5545
5546         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
5547
5548         * reflection.c (mono_type_get_object): Add a FIXME.
5549
5550         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
5551
5552         * class.c (mono_class_get_method_by_index): New helper function, returning an
5553         entry in the class->methods array.
5554
5555 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
5556
5557         * class.c (mono_class_init): Only do the array optimization for szarrays. 
5558         Avoid creating a generic vtable for generic instances as well.
5559         (mono_class_get_method_from_name_flags): Don't search in the metadata for
5560         generic instances.
5561
5562 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
5563
5564         * loader.c (mono_get_method_constrained): Inflate the signature
5565         with class context. Fix #325283.
5566
5567 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
5568
5569         * object.c (mono_class_create_runtime_vtable): Add a comment.
5570
5571         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
5572         where needed.
5573         (setup_interface_offsets): Handle the case when this is called twice for arrays.
5574         (mono_class_setup_vtable_general): Add an assert.
5575         (mono_class_init): Avoid creating a generic vtable for arrays.
5576
5577         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
5578         here, let mono_class_init () do that.
5579
5580         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
5581         interfaces in mscorlib.
5582
5583         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
5584         interfaces. Add some comments.
5585         (mono_class_init): Call mono_class_setup_methods () here since it is no
5586         longer called by mono_class_setup_vtable ().
5587
5588         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
5589         not set in class->vtable.
5590         (mono_class_create_runtime_vtable): Reenable the disabled code.
5591
5592         * object.c (mono_class_create_runtime_vtable): Disable the last change for
5593         now as it causes some test failures.
5594
5595         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
5596         if using the vtable trampoline. Also remove some strange code which put the
5597         generic methods themselves into the vtable slots. Remove the AOT init_vtable
5598         stuff as it is no longer needed.
5599
5600 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5601
5602         * pedump.c: Give make --verify all option check code as well.
5603         Using --verify code won't check for metadata now.
5604
5605 2008-05-19  Martin Baulig  <martin@ximian.com>
5606
5607         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
5608
5609         * mono-debug.c
5610         (_mono_debug_using_mono_debugger): New global variable; it's set
5611         directly by the debugger, so mono_debug_using_mono_debugger() also
5612         works after attaching.
5613
5614 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5615
5616         * object.c (mono_class_create_runtime_vtable): Use memory barriers
5617         as we do double checked locking on MonoClass::runtime_info and
5618         MonoClassRuntimeInfo::domain_vtables.
5619
5620 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
5621
5622         * debug-helpers.c (print_field_value): Fix a warning.
5623
5624 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
5625
5626         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
5627         set in the AOT case.
5628
5629 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
5630
5631         * class.c (mono_class_setup_vtable_general): Use memory barriers
5632         as we do double checked locking on MonoClass::vtable.
5633
5634 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
5635
5636         * reflection.c (resolve_object): Inflate only if the generic context
5637         is not null. Fixes #389886.
5638
5639 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
5640
5641         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
5642         instead of g_free.
5643
5644         Code is contributed under MIT/X11 license.
5645
5646 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5647
5648         * class.c: Revert unrelated change.
5649
5650 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5651
5652         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
5653         a generic instantiation, use mono_class_from_mono_type instead of playing
5654         with MonoType directly.
5655
5656 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5657
5658         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
5659         checks must ignore generic instantiations, so mono_class_has_parent is not
5660         suitable. Fixes #390128.
5661
5662 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
5663
5664         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
5665         it to avoid registering tokens during metadata generation. Fixes #390023.
5666
5667 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
5668
5669         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
5670         consistent.
5671
5672         Contributed under MIT/X11 license.
5673
5674 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
5675
5676         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
5677         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
5678         to fixup the EXE image.
5679         (mono_cleanup): Use mono_close_exe_image.
5680         (mono_close_exe_image): New function.
5681         * image.c: Include "marshal.h".
5682         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
5683         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
5684         counting when the image is loaded outside of mono_image_open_full. Set status
5685         based on GetLastError.
5686         * coree.c: Include required headers. Add init_from_coree.
5687         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
5688         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
5689         (_CorExeMain): Set init_from_coree.
5690         (CorExitProcess): Only call ExitProcess for now.
5691         (CorBindToRuntimeEx): New stub implementation.
5692         (CorBindToRuntime): New function.
5693         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
5694         (MonoFixupExe): ILONLY executables require no fixups.
5695         (mono_set_act_ctx): New function to set activation context.
5696         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
5697         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
5698         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
5699         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
5700         as MONO_INTERNAL.
5701         * domain-internals.h: Add mono_close_exe_image.
5702
5703         Contributed under MIT/X11 license.
5704
5705 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5706
5707         * metadata.c (mono_metadata_compute_size): Correctly calculate field
5708         size for generic param and event tables. Fixes #388977.
5709
5710 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
5711
5712         * loader.c (mono_method_signature): Use memory barriers because of the double
5713         checked locking pattern.
5714
5715         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
5716         aborting or aborted as well. Fixes #376391.
5717         
5718         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
5719         existing runtime state in the Suspend handler during shutdown.
5720
5721 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
5722
5723         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
5724
5725         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
5726         which are starting up or shutting down.
5727
5728         * threads.c (mono_threads_set_shutting_down): Don't return a value since
5729         this function never returns if the runtime is already shutting down.
5730
5731         * icall.c (ves_icall_System_Environment_Exit): Update after 
5732         mono_threads_set_shutting_down () signature change.
5733         
5734 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
5735
5736         * class.c: Added can_access_instantiation to verify if the instantiation
5737         is visible. Fix access check for nested types as they returned TRUE
5738         before doing type and generic instantiation visibility checks.
5739
5740 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
5741
5742         * reflection.c (mono_reflection_create_generic_class): The created type
5743         must have a different container from its TypeBuilder. Otherwise they
5744         will end sharing generic arguments, which is wrong.
5745
5746         Due to the sharing, making a generic instance of the created type using
5747         the TypeBuider generic arguments resulted in the generic type definition
5748         been returned, which is wrong as well.
5749
5750         As a bonus the code was leaking the type_params array. This memory should
5751         be allocated from the image mempool.
5752
5753         This fixes bug #354047.
5754
5755 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
5756
5757         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
5758         to here         as they are now used in assembly.c new code.
5759         Added a skipverification flag to MonoAssembly.
5760         New internal function mono_assembly_has_skip_verification.
5761
5762         * assembly.c: New function mono_assembly_has_skip_verification. It checks
5763         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
5764         part of #387274.
5765
5766 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
5767
5768         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
5769         needed. Fixes #387034.
5770
5771         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
5772
5773 2008-05-06  Miguel de Icaza  <miguel@novell.com>
5774
5775         * assembly.c (mono_assembly_load_reference): Prevent crash while
5776         disassembling Silverlight 2.0 executables while we still do not
5777         have GACed libraries.
5778
5779 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
5780
5781         * reflection.c: Special case generic type definitions as well. Fixes #383444.
5782
5783 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
5784
5785         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
5786         of the dynamic case. Fixes #387404.
5787
5788 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5789
5790         *verify.c (mono_verifier_is_class_full_trust): If under
5791         verify_all and the verifier mode was not set, only
5792         gac and corlib types are fulltrust. This makes --verify-all
5793         usable to detect unverifiable code, which is the expected
5794         use case.
5795
5796 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5797
5798         * verify.h: Ops, commited the header with debug
5799         enabled.
5800
5801 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5802
5803         * verify.c (merge_stack): Use the new value on unverifiable
5804         stack merges.
5805
5806         * verify.c (verify_type_compatibility_full): Comparison
5807         of nullable types can't use mono_class_is_assignable_from.
5808
5809         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
5810         that makes all verification errors be reported.
5811
5812         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
5813         mono_method_verify.
5814
5815 2008-05-05  Robert Jordan  <robertj@gmx.net>
5816
5817         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
5818         support for value types. See #386415.
5819
5820         * object.c: comments.
5821
5822         Code is contributed under MIT/X11 license.
5823
5824 2008-05-05  Martin Baulig  <martin@ximian.com>
5825
5826         * debug-mono-symfile.h
5827         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
5828         for old pre-terrania symbol files.
5829
5830 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
5831
5832         * mono-config.c: Add ppc64 architecture.
5833
5834         Code is contributed under MIT/X11 license.
5835
5836 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
5837
5838         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
5839           PPC64 uses function descriptors as well.
5840
5841         Code is contributed under MIT/X11 license.
5842
5843 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
5844
5845         * object.c (compute_class_bitmap): Ignore literal static fields.
5846
5847         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
5848         var has an invalid format.
5849         (describe_ptr): Add some sanity checks for the vtable.
5850         (add_nursery_frag): Clear unused nursery fragments.
5851         (major_collection): Clear all remaining nursery fragments.
5852
5853 2008-05-03  Robert Jordan  <robertj@gmx.net>
5854
5855         * image.c, metadata-internals.h: add thunk_invoke_cache.
5856
5857         * marshal.c, marshal.h: implement
5858         mono_marshal_get_thunk_invoke_wrapper ().
5859
5860         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
5861
5862         Code is contributed under MIT/X11 license.
5863
5864 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
5865
5866         * verify.c (do_leave): Empty the stack.
5867
5868 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
5869
5870         * class.c (mono_class_is_assignable_from): Variance
5871         doesn't work between reference and value types. For example,
5872         given type C<T+>, C<int32> is not assignable to C<object>.
5873         Break the argument checking loop on first error. 
5874
5875 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
5876
5877         * icall.c : base64_to_byte_array() needs some more strict
5878           check for sequence of '=' characters. Patch by Santa
5879           Marta (http://deee.g.hatena.ne.jp/santamarta).
5880
5881           Contributed under MIT/X11 license.
5882           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
5883
5884 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
5885
5886         * domain.c: Disable LoadLibrary support to fix Win32 build.
5887
5888         Code is contributed under MIT/X11 license.
5889
5890 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
5891
5892         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
5893         to help with cache behaviour.
5894
5895 2008-05-01  Miguel de Icaza  <miguel@novell.com>
5896
5897         * appdomain.c (mono_domain_from_appdomain): Add new accessor
5898         method. 
5899
5900 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
5901
5902         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
5903
5904 2008-05-01  Dick Porter  <dick@ximian.com>
5905
5906         * process.c (process_get_fileversion): Only pass 16 bits of
5907         language ID to VerLanguageName.  Fixes bug 381204.
5908
5909 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5910
5911         * verify.c (mono_method_verify): Fix the comparison
5912         operator for code bounds check.
5913
5914 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5915
5916         * verify.c (mono_method_verify): Check the bounds of
5917         all access of the code array.
5918
5919 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
5920
5921         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
5922
5923 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
5924
5925         * image.c (mono_image_strong_name_position): Fix return value when the rva is
5926         not valid.
5927
5928 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
5929
5930         * loader.c (mono_get_method_from_token, mono_method_signature): Add
5931         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
5932         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
5933         fixup main EXE images when using mono.exe for mixed-mode assembly support.
5934         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
5935         mono_runtime_load.
5936         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
5937         runtime initialization from metadata.
5938         * assembly.c: Remove obsolete ceGetModuleFileNameA.
5939         (mono_set_rootdir): Use mono_get_module_file_name.
5940         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
5941         handles.
5942         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
5943         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
5944         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
5945         MonoCLIImageInfo. Add support for module handles.
5946         (load_cli_header): Update mono_cli_rva_image_map signature.
5947         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
5948         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
5949         (mono_image_rva_map): Add support for module handles.
5950         (mono_image_ensure_section_idx): Add support for module handles.
5951         (mono_image_close): Add support for module handles.
5952         (do_load_header): Add support for module handles.
5953         (mono_image_open_from_module_handle): New function for internal use.
5954         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
5955         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
5956         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
5957         handles.
5958         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
5959         * image.h: Add mono_image_fixup_vtable.
5960         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
5961         support.
5962         * coree.h: New file.
5963         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
5964         unsupported native code.
5965         (mono_marshal_set_callconv_from_modopt): New function splitted from
5966         mono_marshal_get_managed_wrapper.
5967         (mono_marshal_get_managed_wrapper): Use
5968         mono_marshal_set_callconv_from_modopt.
5969         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
5970         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
5971         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
5972         that results in a deadlock when the runtime is loaded in _CorDllMain.
5973         * Makefile.am: Add coree.c and coree.h.
5974
5975         Contributed under MIT/X11 license.
5976
5977 2008-04-28  Mark Probst  <mark.probst@gmail.com>
5978
5979         * generic-sharing.c: Search for type arguments in array element
5980         types as well.
5981
5982 2008-04-28  Mark Probst  <mark.probst@gmail.com>
5983
5984         * class-internals.h, generic-sharing.c: New, small runtime generic context.
5985
5986         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
5987
5988         * object.c: Don't setup the RGCTX when the vtable is created,
5989         because we're setting it up lazily now.
5990
5991 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
5992
5993         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
5994         64 bit support.
5995
5996 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5997
5998         * verify.c (verify_class_for_overlapping_reference_fields): 
5999         If class is under fulltrust allow reference types to overllap
6000         if they have the same RVA.
6001
6002 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6003
6004         * pedump.c: Added new flag valid-only, that makes the verifier
6005         behaves just like --security=validil. It won't fail type load
6006         due to unverifiable restrictions.
6007
6008 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6009
6010         * class-internals.h (struct MonoMethod): Added a verification_success
6011         field to cache verifier executions. Reduced MonoMethod:slot size by
6012         one bit.
6013
6014 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
6015
6016         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
6017         instead of a 'vt' argument to save an indirection and to allow these to be used
6018         for valuetypes.
6019         (scan_vtype): New helper function to scan an area using a gc descriptor.
6020         (mono_gc_wbarrier_value_copy): Implement this.
6021         (handle_remset): Add support for REMSET_VTYPE.
6022         (find_in_remset_loc): Ditto.
6023         (mono_gc_base_init): Allow some debugging options to be controlled through the
6024         use of the MONO_GC_DEBUG env variable.
6025         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
6026         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
6027
6028 2008-04-23  Martin Baulig  <martin@ximian.com>
6029
6030         * domain.c (mono_domain_create): Move the call to
6031         mono_debug_domain_create() down, after allocating the domain id.
6032
6033 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6034
6035         verify.c (verify_class_for_overlapping_reference_fields): Skip
6036         static fields while verifying for overlapping fields as they
6037         don't matter at all.
6038
6039 2008-04-23  Marek Habersack  <mhabersack@novell.com>
6040
6041         * domain-internals.h: added a declaration of
6042         mono_make_shadow_copy.
6043
6044         * assembly.c (mono_assembly_open_full): shadow copying of
6045         assemblies moved to here, so that all the assemblies within the
6046         application domain's private binary directories can be
6047         processed. Fixes bug #380546
6048
6049         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
6050         mono_make_shadow_copy and made non-static. The decision whether
6051         to shadow-copy an assembly is made based on its location - it's
6052         copied if it's in one of the private application domain binary
6053         directories and its different to the target file in the shadow
6054         directory. Fixes bug #380546
6055
6056 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
6057
6058         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
6059
6060         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
6061         types.
6062
6063         * reflection.c (mono_image_create_token): Handle 
6064         Method/ConstructorOnTypeBuilderInst.
6065         (resolve_object): Ditto.
6066         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
6067         so it can be called from resolve_object. Also handle the case when the inflated
6068         class already has its methods setup.
6069
6070 2008-04-21  Martin Baulig  <martin@ximian.com>
6071
6072         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
6073
6074 2008-04-20  Geoff Norton  <gnorton@novell.com>
6075
6076         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
6077         pointer dereference.
6078
6079 2008-04-15  Marek Habersack  <mhabersack@novell.com>
6080
6081         * appdomain.c (try_load_from): if IOMAP is in effect, call the
6082         portability API to look up the assembly file. Fixes behavior in
6083         situations when the application has a bin/ directory, but the
6084         assembly search patch refers to Bin/ (and thus the requested file
6085         name is Bin/SomeLibrary.dll). Fixes bug #379888
6086
6087 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6088
6089         verify.c (mono_type_is_generic_argument): Extracted this check
6090         from a dozen places to here.
6091
6092         verify.c: Fixed all issues related to boxing generic arguments
6093         and their constraints.
6094
6095 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6096
6097         verify.c (mono_class_interface_implements_interface): Fix win32 build.
6098
6099 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
6100
6101         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
6102         isn't finished yet. Fixes #363447.
6103
6104 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
6105
6106         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
6107         Fixes #346419.
6108
6109 2008-04-13  Jb Evain  <jbevain@novell.com>
6110
6111         * domain.c: update the 2.1 profile versions.
6112         Merged from the Moonlight 2 branch.
6113
6114 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
6115
6116         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
6117         mscorlibs for the non-refonly case as well.
6118
6119         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
6120         in mono_assembly_load_from_full (). Fixes #378924.
6121
6122 2008-04-11  Geoff Norton  <gnorton@novell.com>
6123
6124         * icall.c: The global extern environ doesn't exist on Mac.  We
6125         need to call NSGetEnviron instead.
6126
6127 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6128
6129         verify.c: Add generic method constraint verification.
6130
6131 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6132
6133         class.c (mono_class_inflate_generic_method_full): Add a long
6134         explanation to the is_mb_open hack. Remove the FIXME.
6135
6136 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6137
6138         * verify.c (mono_method_verify): Mark all unknown opcodes
6139         as invalid. Mark jmp as unverifiable.
6140
6141 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6142
6143         * verify.c: Add code to do type constraint verification on class instances.
6144
6145         * verify.c (mono_verifier_verify_class): Use the type constraint 
6146         verification code.
6147
6148 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6149
6150         * class.c (mono_class_get_field_default_value): Don't pass cindex
6151         as hint to mono_metadata_get_constant_index. The local is not initialized
6152         and should contain garbage most of the time. This could only work
6153         with a lot of luck.
6154
6155 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6156
6157         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
6158
6159 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6160
6161         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
6162
6163         * class.c (mono_class_from_generic_parameter): Save the token of the
6164         generic param in MonoClass::sizes.generic_param_token.
6165
6166         * reflection.c (mono_custom_attrs_from_class): If the class type is
6167         VAR or MVAR retrieve the attributes of the generic param.
6168
6169 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6170
6171         * class.c (mono_class_init): Do class verification if the verifier
6172         is enabled.
6173
6174 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6175
6176         * verify-internal.h: Added mono_verifier_verify_class.
6177
6178         * verify.c: Added mono_verifier_verify_class. It checks for
6179         classes with explicit layout that have overlapping reference fields.
6180
6181         * pedump.c: Init the verifier state prior to verification. Fixed
6182         command line arguments.
6183
6184 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6185
6186         * Makefile.am: Added verify-internals.h, hopefully fix the build.
6187
6188 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6189
6190         * verify-internals.h: Fix a warning.
6191
6192 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6193
6194         * verify-internals.h: New header with the verifier configuration
6195         extracted from mini.c.
6196
6197         * verify.c: Implemented the new functions exported by verify-internals.h.
6198
6199 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6200
6201         * verify.c: Add proper verification of ckfinite.
6202
6203 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6204
6205         * verify.c (do_conversion): Improved error message to something
6206         more meanfull.
6207
6208         * verify.c (check_is_valid_type_for_field_ops): Fix to work
6209         with primitive types.
6210
6211 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6212
6213         * verify.c: Added tail prefix checking. Marked icall
6214         as unverifible.
6215
6216 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6217
6218         * verify.c: Fix the detection of branches to the middle
6219         of an instruction.
6220
6221 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6222
6223         * verify.c: Implemented verification of volatile. and
6224         unaligned. prefix. Check if a type is valid after retrieving it.
6225
6226 2008-04-01  Dick Porter  <dick@ximian.com>
6227
6228         * process.c (process_get_fileversion): If there's no string block,
6229         set the file language to en_US.  Fixes the other new part of bug
6230         374600.
6231
6232 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
6233
6234         * class.c: New functions mono_method_can_access_field_full and
6235         mono_method_can_access_method_full. They perform type visibility
6236         and type site check.
6237
6238         * class-internal.h: Added exported functions.
6239
6240         * verify.c: Use new functions to implement proper visibility checks.
6241
6242 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
6243
6244         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
6245
6246 2008-03-28  Dick Porter  <dick@ximian.com>
6247
6248         * process.c (process_get_fileversion): Use the first language ID
6249         we see, rather than insisting on an invariant language.  Fixes bug
6250         374600.
6251
6252 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
6253
6254         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
6255         the streams to fix reading of invalid memory later.
6256
6257         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
6258         to ease debugging.
6259
6260 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
6261
6262         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
6263         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
6264
6265 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
6266         * threads.h: Added MonoThreadManageCallback type and
6267         mono_thread_set_manage_callback prototype
6268         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
6269         (used to store the mono_thread_manage callback).
6270         * threads.c: Added mono_thread_set_manage_callback, and handle
6271         "MonoThread->manage_callback" in build_wait_tids.
6272
6273 2008-03-26  Dick Porter  <dick@ximian.com>
6274
6275         * process.c (process_get_fileversion): Set FileVersionInfo strings
6276         to Empty when the resource doesn't have the particular info.
6277         Fixes bug 355717.
6278
6279 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
6280
6281         * verify.c (mono_method_verify): Proper prefix validation.
6282
6283 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
6284
6285         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
6286         itself in a separate argument instead of throwing them. Fixes #373448.
6287
6288         * appdomain.c: Bump corlib version.
6289
6290 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6291
6292         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
6293
6294 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
6295
6296         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
6297         version macros.
6298
6299 2008-03-20  Mark Probst  <mark.probst@gmail.com>
6300
6301         * generic-sharing.c, class-internals.h: Code for putting
6302         reflection types into the runtime generic context.
6303
6304 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
6307         Fixes #340662. 
6308
6309
6310 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
6311
6312         * verify.c (VerifyContext): Added instruction prefix data to the struct.
6313
6314         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
6315
6316         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
6317
6318         * verify.c (do_cast): Let the result value keep the boxed status.
6319
6320         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
6321
6322 2008-03-17  Jb Evain  <jbevain@novell.com>
6323
6324         * reflection.c: when running on a 2.0 runtime, emit
6325         unconditionally the #~ header version as 2.0, and the
6326         CLI header version as 2.5, for symmetry's sake with csc.
6327
6328 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
6329
6330         * class.c: Remove the unused cache_interface_offsets stuff.
6331
6332         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
6333         profiler.c: Fix warnings.
6334
6335 2008-03-16  Mark Probst  <mark.probst@gmail.com>
6336
6337         * generic-sharing.c, class-internals.h: Support for putting
6338         methods into the runtime generic context.
6339
6340 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
6341
6342         * class.c (mono_class_setup_fields): Ignore calls made to this function for
6343         classes which are generic instances of not-yet finished typebuilders. Fixes
6344         #351172.
6345
6346         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
6347
6348 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
6349
6350         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
6351
6352         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
6353         field, replace it with a hash table in MonoDynamicImage.
6354
6355         * reflection.c (inflate_mono_method): Access the generic definition object from
6356         image->generic_def_objects instead of imethod->reflection_info.
6357
6358         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
6359
6360         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
6361         
6362         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
6363         function in reflection.c so it is easier to keep in sync with the dynamic image
6364         creation code.
6365
6366         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
6367         mono_image_close ().
6368
6369 2008-03-15  Mark Probst  <mark.probst@gmail.com>
6370
6371         * class.c (mono_class_generic_sharing_enabled): Disable generic
6372         sharing for all architectures except AMD64 and x86 to fix build.
6373
6374 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
6375
6376         * verify.c: Use the generic definition MonoGenericContext when available.
6377         Remove code for checking generics instance compatibility in favor of
6378         mono_class_is_assignable_from.
6379
6380 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6381
6382         * marshal.c, marshal.h, metadata-internals.h, image.c,
6383         wrapper-types.h: New wrapper for invoking a shared static method
6384         without having to pass the runtime generic context argument.
6385
6386 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
6387
6388         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
6389
6390 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6391
6392         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
6393         
6394         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
6395         create a token from a FieldOnTypeBuilderInst.
6396         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
6397         (resolve_object): Ditto.
6398
6399         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
6400         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
6401
6402 2008-03-14  Martin Baulig  <martin@ximian.com>
6403
6404         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
6405
6406         * debug-mono-symfile.h
6407         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
6408         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
6409
6410 2008-03-10  Martin Baulig  <martin@ximian.com>
6411
6412         * debug-mono-symfile.h
6413         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
6414         `lexical_block_table_offset'.
6415         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
6416         `lexical_blocks'.
6417         (MonoSymbolFile): Added `version'.
6418
6419         * mono-debug.h
6420         (MonoDebugLexicalBlockEntry): Removed.
6421         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
6422         `lexical_blocks'.
6423
6424         * mono-debug.c (mono_debug_add_method): Don't compute lexical
6425         blocks here; the debugger now does this internally.
6426
6427 2008-02-27  Martin Baulig  <martin@ximian.com>
6428
6429         * object.c (mono_runtime_exec_main): Call
6430         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
6431         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
6432
6433 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6434
6435         * verify.c (verify_type_compatibility_full): Allow native int to be converted
6436         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
6437
6438 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6439
6440         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
6441         ldftn with a virtual method.
6442
6443 2008-03-13  Geoff Norton  <gnorton@novell.com>
6444
6445         * decimal.c:  Only include memory.h if the platform has it.
6446
6447 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
6448
6449         * assembly.c, class.c, metadata-internals.h: make sure public key
6450         tokesns are compared in a case-insensitive way. Also, all
6451         the lookups in the GAC use a lowercase public key token
6452         (gaacutil already does the lowercasing on install). Fixes
6453         bug #369541.
6454
6455 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
6456
6457         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
6458         and return value.
6459
6460 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
6461
6462         * image.c: when someone loads a mscorlib from a file, return the
6463         currently loaded mscorlib (fixes bug #369253).
6464
6465 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
6466
6467         * class.c: handle types with no parents by forcing them to have
6468         System.Object as a parent and marking them as broken (this currently
6469         allows the first part of bug #369173 to work as well, likely because
6470         we don't check for typeload exceptions everywhere yet).
6471
6472 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
6473
6474         * class.c: more complete check that types belong to corlib
6475         (fixes second part of bug #369173).
6476
6477 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
6478
6479         * generic-sharing.c:  Including glib.h for the MSVC builds to define
6480           "inline" to "__inline" before including mono-membar.h.
6481           
6482         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
6483           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
6484           MSVC builds.
6485
6486         Contributed under MIT/X11 license.
6487
6488 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
6489
6490         * verify.c (do_invoke_method): Remove return type validation.
6491
6492         * verify.c (do_ret): Do return type validation at return site instead of
6493         call site.
6494
6495 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
6496
6497         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
6498
6499         * verify.c: Some todos cleaned and improved a few error messages.
6500
6501 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
6502
6503         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
6504
6505 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6506
6507         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
6508         system types correctly.
6509
6510         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
6511         function.
6512
6513 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6514
6515         * assembly.c (build_assembly_name): Fix a warning.
6516
6517 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6518
6519         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
6520         the called function takes an object type argument. Fixes storing or
6521         valuetypes across remoting as well as reducing memory usage.
6522         * image.c, metadata-internals.h: remove now unused ldfld_remote and
6523         stfld_remote wrapper caches.
6524
6525 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6526
6527         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
6528         is not found.
6529
6530         * reflection.c (mono_image_register_token): New helper function to save
6531         a token->object mapping.        
6532
6533         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
6534         managed code.
6535
6536         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
6537         one dimension arrays. Fixes #367670.
6538         (mono_reflection_get_type_internal): Ditto.
6539
6540 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6541
6542         * marshal.c: mono_load_remote_field_new() always returns object.
6543         so use the proper signature (fixes bug #366445).
6544
6545 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6546         
6547         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
6548         add an 'inline_failure' flag instead.
6549
6550 2008-03-04  Mark Probst  <mark.probst@gmail.com>
6551
6552         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
6553         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
6554         contains the location of "this", used for exception handling.
6555
6556 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6557
6558         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
6559         their size on all platforms for perf reasons.
6560
6561 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6562
6563         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
6564         object-internal.h
6565
6566         * object-internal.h: Same.
6567
6568 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6569
6570         * reflection.h: Fix the build I just broke.
6571
6572 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6573
6574         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
6575         Test if a token is valid, this remove explicit usage of 
6576         MonoDynamicImage::tokens from the verifier code.
6577
6578         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
6579
6580         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
6581         instead of direct access to MonoDynamicImage::tokens.
6582
6583 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6584
6585         * verify.c (token_bounds_check): Fix the build I just broke.
6586
6587 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6588
6589         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
6590
6591         * verify.c (verifier_load_method): Fixed the errors message.
6592
6593         * verify.c (mono_method_verify): Fixed a debug message.
6594
6595 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
6596
6597         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
6598         mono-perfcounters.h, class-internals.h: support for predefined
6599         writable counters, query of categories and counters, bugfixes.
6600
6601 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
6602
6603         * verify.c (do_refanytype): Verify the refanytype opcode.
6604
6605         * verify.c (mono_method_verify): Use do_refanytype.
6606
6607 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
6608
6609         * verify.c (do_mkrefany): Verify the mkrefany opcode.
6610
6611         * verify.c (mono_method_verify): Use do_mkrefany.
6612
6613 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
6614
6615         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
6616         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
6617         implementation.
6618
6619 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
6620
6621         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
6622         the type load exception.
6623
6624 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6625
6626         * verify.c: Added a few FIXME for method signatures
6627
6628         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
6629         of mono_method_get_signature and get vararg call working. Removed unused
6630         checks for return value.
6631
6632         * verify.c (do_refanyval): Verify the refanyval opcode.
6633
6634         * verify.c (mono_method_verify): Implemented verification of arglist and
6635         use do_refanyval.
6636
6637 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
6638
6639         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
6640         vtypes to marshal.c.
6641
6642         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
6643         it works for AOT as well.
6644
6645 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
6646
6647         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
6648         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
6649         the system time is adjusted.
6650
6651 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
6652
6653         * icall.c, icall-def.h: use the new time functions (fixes the
6654         non-monotonic behaviour of TickCount).
6655
6656 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
6657
6658         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
6659         it breaks the build.
6660         
6661         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
6662         cattr is not finished yet.
6663
6664 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
6665
6666         * verify.c: Proper token validation for field, method and type.
6667
6668 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
6669
6670         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
6671
6672         * loader.c (method_from_memberref): Generate type load error instead of method missing
6673         if the type is not found.
6674
6675 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
6676
6677         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
6678         some of the conversions caused the generation of a marshal directive exception.
6679
6680 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
6681
6682         verify.c: Report which exception should be thrown by the JIT.
6683         Added a lot of FIXME notes.
6684
6685 2008-02-22  Mark Probst  <mark.probst@gmail.com>
6686
6687         * generic-sharing.c: Runtime generic context slots are not
6688         instantiated on init anymore.  Instead, provide function to do the
6689         instantiating on demand.
6690
6691         * class-internals.h: Added vtable to runtime generic context.
6692         Macros for encoding direct and indirect slot offsets in one
6693         guint32.
6694
6695 2008-02-21  Mark Probst  <mark.probst@gmail.com>
6696
6697         * object.c, generic-sharing.c: Moved some generic sharing code
6698         from object.c to generic-sharing.c.
6699
6700         * generic-sharing.c: Added support for extensible runtime generic
6701         context.
6702
6703         * metadata-internals.h: Two new hash tables in MonoImage for
6704         extensible runtime generic context support.
6705
6706         * domain.c: Unregister generic vtables upon domain unloading.
6707
6708         * image.c: Destroy new hash tables upon image unloading.
6709
6710         * metadata.c: Unregister generic subclasses upon image unloading.
6711
6712         * class-internals.h: New data structure for runtime generic
6713         context template.  New fields in the runtime generic context for
6714         extensible part.
6715
6716         * Makefile.am: Added generic-sharing.c.
6717
6718 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
6719
6720         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
6721         there is a pending loader exception, raise it.
6722
6723         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
6724         same.
6725
6726         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
6727         same.
6728
6729         Fixes #363450.
6730
6731 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
6732
6733         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
6734
6735         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
6736         
6737         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
6738         ref-only requests for compatibility with MS.
6739
6740 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
6741
6742         * reflection.c (mono_custom_attrs_from_method): Don't silently
6743         return an empty list for generic method instances.
6744         (mono_custom_attrs_from_param): Likewise.
6745
6746 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
6747             Raja R Harinath  <harinath@hurrynot.org>
6748
6749         Fix #354757
6750         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
6751         * class.c (mono_class_inflate_generic_method_full): Initialize it
6752         when a fully-open method is instantiated.
6753         * metadata.c (inflated_method_equal, inflated_method_hash): Update
6754         to new field.
6755         * reflection.c (inflate_mono_method): Don't create a temporary context.
6756
6757 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
6758
6759         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
6760         Compute correct value, to prepare for imethod->reflection_info going away.
6761
6762 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
6763
6764         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
6765
6766 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6767
6768         * verify.c: Implement skip visibility flag.
6769
6770 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6771
6772         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
6773         which contains an extra field to tell the kind of exception that should be thrown.
6774
6775         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
6776
6777 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
6778
6779         * loader.c (mono_method_get_param_names): Initialize 'klass' after
6780         'method' is updated.
6781
6782 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
6783
6784         * class.c (mono_class_layout_fields): Set class->min_align for classes using
6785         explicit layout as well. Fixes #360375.
6786
6787 2008-02-11  Geoff Norton  <gnorton@novell.com>
6788
6789         * loader.c: Guard and dereference against inflated generic methods
6790
6791 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
6792
6793         * class.c: Include Retargetable spec in assembly name.
6794         * assembly.c: Always include PublicKeyToken spec in assembly name
6795         (with value "null" if assembly is not signed), and include
6796         Retargetable spec.
6797         * icall-def.h: Added icall for Assembly.get_fullname.
6798         * icall.c: Added icall returning the fullname of an assembly.
6799
6800 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
6801
6802         * class.c (mono_class_setup_vtable_general): Add a missing call to
6803         mono_class_setup_methods () which is needed in the AOT case.
6804
6805 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
6806
6807         * verify.c (mono_type_get_stack_name): Added. Return the name for the
6808         stack type of the given MonoType.
6809
6810         * verify.c (verify_type_compatibility_full): Handle the void type.
6811
6812         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
6813         way stack merging works.
6814
6815         * verify.c (store_local): Improved verification message.
6816
6817         * verify.c (do_branch_op): If the merging is invalid, the method
6818         is unverifiable and not invalid. Improved error message.
6819
6820         * verify.c (merge_stacks): Properly merge a boxed valuetype and
6821         a reference type diferent than System.Object. Improved error
6822         message.
6823
6824 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
6825
6826         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
6827
6828         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
6829         type of an enum even if the argument is byref.
6830
6831         * verify.c: Replace all explicit uses of enumtype and enum_basetype
6832         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
6833
6834         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
6835
6836         *verify.c (verify_type_compatibility_full): Make enum types
6837         compatible with their base types.
6838
6839         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
6840         types are compatible for the special case of a boxed valuetype and
6841         System.Object.
6842
6843         * verify.c (verify_stack_type_compatibility): The function
6844         is_compatible_boxed_valuetype was extracted from here.
6845
6846         * verify.c (push_arg): Only set ctx->has_this_store if the method
6847         is not static.
6848
6849         * verify.c (do_ldelem): Fixed a typo in an error message and added
6850         strict check for mixing int32 and native int as the array type
6851         and ldelem type.
6852
6853         * verify.c (merge_stacks): Consider boxed valuetypes in the
6854         compatibility checks.
6855
6856 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
6857         * profiler.h: (MonoGCEvent): Added start-stop the world events.
6858
6859 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
6860         *class.c: use_new_interface_vtable_code: renamed the env var to have
6861         a "MONO_" prefix, and fix the logic to enable it by default.
6862
6863 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
6864         *class.c:
6865         mono_class_setup_vtable_general: rewrote the way in which interface
6866         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
6867         makes the code more maintainable.
6868         For now the old code is still there, and can be activated setting
6869         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
6870
6871 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
6872
6873         * verify.c: guarded some debug functions around and #ifdef.
6874
6875         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
6876
6877 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
6878
6879         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
6880         changes for now since they seem to break too many things.
6881
6882 2008-02-05  Mark Probst  <mark.probst@gmail.com>
6883
6884         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
6885         mono_marshal_find_nonzero_bit_offset): Added macro and function
6886         for finding the byte- and bit-offset of a bitfield within a
6887         struct.
6888
6889 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
6890
6891         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
6892         (mono_marshal_get_struct_to_ptr): Ditto.
6893
6894         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
6895         cctor_signature.
6896
6897 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
6898
6899         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
6900         between methods for non-corlib types.
6901
6902 2008-02-02  Geoff Norton  <gnorton@novell.com>
6903
6904         * loader.c (mono_method_get_param_names): Populate the parameter name for 
6905         generic parameters as well. (Fixes #342536)
6906
6907 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
6908
6909         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
6910
6911         * verify.c (do_invoke_method): Fix for calling with byref structs.
6912
6913         * verify.c (do_cast): push a boxed value type based on the type token and not
6914         the type of stack.
6915
6916 2008-01-31  William Holmes  <billholmes54@gmail.com>
6917
6918         * process.c (process_module_string_read): Check the size returned form 
6919           VerQueryValue to avoid out of memory exception. 
6920
6921 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
6922
6923         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
6924         Handle properly modules which are not in the moduleref table. Fixes
6925         #356938.
6926
6927 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
6928
6929         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
6930         the dynamic case which is now in managed code.
6931         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
6932
6933         * marshal.c (mono_string_to_bstr): Fix a warning.
6934         (init_com_provider_ms): Ditto.
6935
6936         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
6937
6938         * exception.c (mono_get_exception_out_of_memory): New helper function.
6939
6940 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
6941
6942         * marshal.c: Add support for BSTR marshalling
6943         using other COM systems.
6944
6945         Code is contributed under MIT/X11 license.
6946
6947 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
6948
6949         * object.c (mono_runtime_invoke_array): reverted previous
6950         commit as it breaks the build.
6951
6952 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
6953
6954         * object.c (mono_runtime_invoke_array): Verify arguments for
6955         invalid types. Fixes #348522.
6956
6957 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
6958
6959         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
6960         non-final virtual calls using call. 
6961
6962         * verify.c (do_invoke): fixed some TODOs.
6963
6964         * verify.c (push_arg): set has_this_store for "ldarga 0".
6965
6966 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
6967
6968         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
6969         which belong to an inflated class. Fixes #356531.
6970
6971 2008-01-26  Robert Jordan  <robertj@gmx.net>
6972
6973         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
6974         which resort to FindFirstFile when a certain error condition
6975         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
6976         Code is contributed under MIT/X11 license.
6977
6978 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
6979
6980         * marshal.c (emit_marshal_string): Fix out string marshalling
6981         to use specified encoding. Fixes #323900.
6982
6983         Code is contributed under MIT/X11 license.
6984
6985 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
6986
6987         * class.c (mono_class_inflate_generic_method_full): Don't modify
6988         iresult->context after cache check.
6989
6990 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
6991
6992         * class.c (mono_class_inflate_generic_method_full): Change the
6993         struct assignments to memcpy for better visibility and add some comments.
6994
6995 2008-01-23  Dick Porter  <dick@ximian.com>
6996
6997         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
6998         procedure, and make it work on windows.
6999
7000 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
7001
7002         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
7003         a MonoReflectionTypeBuilder since it is always of that type.
7004
7005         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
7006
7007         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
7008
7009         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
7010         
7011         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
7012
7013         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
7014
7015         * reflection.c (mono_reflection_create_runtime_class): Remove already created
7016         instantiations from the type cache.
7017
7018 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7019
7020         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
7021
7022         * verify.c (do_unbox_value): push a controled mutability managed pointer.
7023
7024 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7025
7026         * verify.c (do_ldstr): added, verifies if the #US token is valid.
7027
7028         * verify.c (mono_method_verify): removed old TODO
7029
7030 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7031
7032         * verify.c (do_newobj): add visibility check.
7033
7034 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7035
7036         * verify.c (do_load_function_ptr): add visibility check.
7037
7038 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
7039         *class.c:
7040         mono_generic_class_get_class: hook profiler events.
7041         mono_field_get_offset: added to support heap-shot in the new profiler.
7042         *class.h: exported mono_field_get_offset.
7043         * reflection.c:
7044         mono_reflection_setup_internal_class: hook profiler events.
7045
7046 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
7047
7048         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
7049         argument here too and use it to avoid checking for pending exceptions if 
7050         possible.
7051
7052 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
7053
7054         * assembly.c (build_assembly_name): add arg for passing the assembly
7055         flags. Do not consider a PublicKey with value "null" valid.
7056         (mono_assembly_name_parse_full): added boolean argument that will be
7057         set if the assembly name contains a PublicKeyToken spec. Added support
7058         for the Retargetable spec for which only Yes or No are allowed as valid
7059         value. Consider assembly name invalid if Retargetable spec is set, but
7060         either version, culture or public key (token) are not specified.
7061         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
7062         with implementation in assembly.c.
7063         * icall.c (fill_reflection_assembly_name): also copy assembly flags
7064         from MonoAssemblyName.
7065         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
7066         introduced argument for mono_assembly_name_parse_full to know if the
7067         assembly name has a PublicKeyToken spec, and if it has instruct
7068         fill_reflection_assembly_name to use default value for keyToken (if
7069         PublicKeyToken is null).
7070
7071 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7072
7073         * verify.c (mono_method_verify): fixed ovf ops with
7074         float values. They are unverifiable now.
7075
7076 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7077
7078         * class.c (set_failure_from_loader_error): add BadImageException to the
7079         list of exceptions that can cause a type to fail to load.
7080
7081         * class.c (mono_class_get_exception_for_failure): same.
7082
7083 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
7084
7085         * verify.c (in_any_exception_block): added, check if offset
7086         is part of any exception handling clause.
7087
7088         * verify.c (get_stack_type): added VAR and MVAR types.
7089
7090         * verify.c (do_stobj): better error messages.
7091
7092         * verify.c (do_cpobj): added, check cpobj.
7093
7094         * verify.c (do_initobj): added, check initobj.
7095
7096         * verify.c (do_sizeof): added, check sizeof.
7097
7098         * verify.c (do_localloc): added, check localloc.
7099
7100         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
7101
7102 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
7103
7104         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
7105         save_lmf/restore_lmf opcodes.
7106
7107         * threads.c (mono_threads_install_notify_pending_exc): New function to
7108         install a callback notifying the JIT there is a pending exception on a thread.
7109         (mono_thread_request_interruption): Call the new callback.
7110         (mono_thread_get_and_clear_pending_exception): New function to return the
7111         exception pending on a thread.
7112
7113         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
7114         to turn off checking for pending exceptions.
7115         (mono_marshal_get_native_wrapper): Ditto.
7116
7117 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7118
7119         * threads-types.h: Get rid of the unnecessary extern declarations.
7120
7121 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
7122
7123         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
7124         return field from parent class if not private.
7125         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
7126         returns fields from parent class if they are not private.
7127         (method_nonpublic): added function to determine if a given method
7128         should be considered non-public. Returns false for private methods
7129         on parent class, and internal methods from parent on the 1.0 profile.
7130         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
7131         use method_nonpublic function to determine whether method should be
7132         returned.
7133         (property_accessor_public): use newly introduced method_nonpublic
7134         function to determine whether accessor is non-public. 
7135         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
7136         event from parent class if not private. Only return static event if
7137         Static flag is set, and only return static event from parent class if
7138         FlattenHierarchy flag is set.
7139         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
7140         include non-private events from parent class.
7141
7142 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7143
7144         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
7145         warning.
7146
7147 2008-01-16  Wade Berrier <wberrier@novell.com>
7148
7149         * security.c: Add assembly.h header to appease some warnings
7150
7151 2008-01-16  Dick Porter  <dick@ximian.com>
7152
7153         * process.c (process_module_string_read): Remove trailing null
7154         when saving string.
7155
7156 2008-01-16  Mark Probst  <mark.probst@gmail.com>
7157
7158         * class-internals.h: A new data structure describing the layout of
7159         a runtime generic context (MonoRuntimeGenericContextTemplate).
7160
7161         * metadata-internals.h: Added a hash table to MonoDomain that maps
7162         from open generic classes to their runtime generic context
7163         templates.
7164
7165         * object.c: Building of the runtime generic context, including
7166         proper handling of generic type arguments of superclasses.
7167         Building of the runtime generic context according to the template.
7168
7169 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
7170
7171         * class.c (mono_class_setup_fields): Set field.count for generic instances.
7172         Fixes #350856.
7173
7174         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
7175         mono_portability_find_file (). Fixes #325466.
7176         (mono_image_get_public_key): Fix a warning.
7177
7178 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
7179
7180         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
7181         Fixes #353550.
7182         (mono_class_from_name_case): Ditto.
7183
7184 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
7185
7186         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
7187           common storage for the tables used in the System/NumberFormatter class.
7188
7189 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
7190
7191         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
7192
7193 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
7194
7195         * verify.c (get_boxable_mono_type): check if the token is valid.
7196
7197         * verify.c (set_stack_value): changed to add an error if an
7198         invalid type is set on stack. Changed all callers due to signature change.
7199
7200         * verify.c (do_stobj): implement stobj validation.
7201
7202 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
7203
7204         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
7205         set container->is_method, it was set earlier.
7206
7207         * metadata.c (type_in_image): Handle MVARs which belong to not finished
7208         generic methods.
7209
7210         * reflection.c (mono_reflection_initialize_generic_parameter): Set
7211         is_method of the generic container to TRUE for methods.
7212
7213 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7214
7215         * metadata.c (type_in_image): Handle type parameters properly.
7216
7217         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
7218         memory ownership of this structure.
7219
7220 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
7221
7222         * verify.c (get_boxable_mono_type): make typedref types been just
7223         unverifiable. check for void type.
7224
7225         * verify.c (do_unbox_any): added, verify opcode unbox.any.
7226
7227         * verify.c (do_load_function_ptr): accept method spec tokens.
7228
7229 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7230
7231         * marshal.c (mono_class_native_size): Always set *align even if this is called
7232         recursively.
7233
7234 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
7235
7236         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
7237         out-of-date.
7238
7239 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
7240
7241         * verify.c: removed some old unused tables. A huge bunch of small fixes
7242         to things found while testing the verifier with mono basic.
7243
7244         * verify.c (dump_stack_value): dump null literal flag to.
7245
7246         * verify.c (verify_type_compatibility_full): fix comparison
7247         for types that have a generic super type.
7248
7249         * verify.c (verify_stack_type_compatibility): fix compatibility
7250         between null literals and reference types. fix compatibility between
7251         boxed valuetypes and object. fix corner case test for enums.
7252
7253         * verify.c (do_cmp_op): proper verification of cgt.un in case
7254         of reference types.
7255
7256         * verify.c (do_invoke_method): fix error message.
7257
7258         * verify.c (do_store_indirect
7259
7260         * verify.c (check_is_valid_type_for_field_ops): proper verification
7261         of managed pointers to valuetypes and boxed valuetypes. proper verification
7262         of null literals.
7263
7264         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
7265         allow token to be a reference type.
7266
7267         * verify.c (do_cast): proper handling of boxes valuetypes.
7268
7269         * verify.c (do_stelem): proper handling of storing a boxed valuetype
7270         in object[].
7271
7272         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
7273         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
7274         fixed the decoding of unbox_any
7275
7276 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
7277
7278         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
7279
7280 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
7281
7282         * verify.c (do_newobj): do delegate verification.
7283
7284         * verify.c (verify_delegate_compatibility): perform delegate
7285         verification.
7286
7287         * verify.c (verify_ldftn_delegate): perform tests related to
7288         ldftn delegates.
7289
7290         * verify.c (mono_delegate_signature_equal): perform the
7291         slightly diferent signature comparison required by delegates.
7292
7293         * metadata.c (mono_metadata_type_equal_full): added and exported
7294         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
7295         allows signature only comparison.
7296
7297         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
7298         as MONO_INTERNAL.
7299
7300 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
7301
7302         * verify.c: added a bunch of stack_slot_* functions to
7303         make access to stack slot type easier. This is required to
7304         allow optional flags, like null literal, boxed value and
7305         this pointer.
7306         All access paths to IlStackDesc::stype have been changed 
7307         to use these new funcions.
7308         Removed a bunch of unused functions and cleared all warnings.
7309         This patch introduces the usage of the this pointer and 
7310         boxed value flags.
7311
7312 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
7313
7314         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
7315
7316 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
7317
7318         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
7319         match managed version.
7320
7321         * appdomain.c: Bump corlib version.
7322         
7323         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
7324         argument.
7325
7326 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
7327
7328         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
7329         Set public key token to zero-length byte array if assembly is not
7330         strongnamed.
7331
7332 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7333
7334         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
7335         writing a vtype array elem.
7336
7337 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7338
7339         * assembly.c (build_assembly_name): return FALSE if length of token is
7340         not 16 (if not "null").
7341         (mono_assembly_name_parse_full): return FALSE if value of version,
7342         culture, token or key is 0.
7343         * icall.c (fill_reflection_assembly_name): add boolean arguments to
7344         specify whether public key and public key token must be set to default
7345         value (zero-length byte array) if not available. Set versioncompat to
7346         SameMachine. If public key is available or the default is set, then
7347         set PublicKey flag.
7348         (ves_icall_System_Reflection_Assembly_FillName): if no public key
7349         is available, use empty byte array as default value. On the 2.0
7350         profile, use default value for public key token if not set.
7351         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
7352         profile, use default value for public key if not set. On the 2.0
7353         profile, use default value for public key token if not set.
7354         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
7355         default values for public key and public key token.
7356
7357 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7358
7359         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
7360         field to keep it in synch with the managed object.
7361
7362         * marshal.c (emit_marshal_object): Add support for byref marshalling of
7363         delegates. Fixes #351520.
7364
7365         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
7366         contains defined memory.
7367         
7368         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
7369
7370         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
7371         
7372         * sgen-gc.c (check_consistency): New helper function to do a consistency check
7373         of the GC data structures.
7374
7375         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
7376
7377         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
7378         
7379         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
7380         barrier.
7381         (mono_array_clone_in_domain): Ditto.
7382         (mono_array_clone_in_domain): Ditto.
7383
7384         * threads.c (start_wrapper): Register the thread start argument as a GC root.
7385         (cache_culture): Use a write barrier.
7386
7387         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
7388         (ves_icall_get_property_info): Ditto.
7389
7390         * object.h (MONO_STRUCT_SETREF): New macro.
7391
7392         * class-internals.h (MonoStats): Add some GC statistics.
7393
7394         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
7395
7396 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
7397
7398         * exception.c (mono_exception_from_name_two_strings):
7399         Break from loop after method is found.
7400
7401 2008-01-04  Dick Porter  <dick@ximian.com>
7402
7403         * process.c (process_module_string_read): Rename variable to
7404         reflect correct usage, after fixing bug 345972.
7405
7406 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
7407
7408         * verify.c (mono_type_create_fnptr_from_mono_method): 
7409         created a MonoType function pointer instance to be used during
7410         verification. The verifier releases this memory at end.
7411
7412         * verify.c (mono_method_is_constructor): extracted repeated
7413         checks for constructor into a single class.
7414
7415         * verify.c (do_push_field): use new extracted method
7416         for constructor check.
7417
7418         * verify.c (do_newobj): same.
7419
7420         * verify.c (do_ldftn): renamed to do_load_function_ptr
7421         and make it verify ldvirtftn too.
7422
7423         * verify.c (mono_method_verify: proper verification
7424         of ldvirtftn. release created MonoMethod instances.
7425
7426 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
7427
7428         * verify.c (token_bounds_check): added.
7429
7430         * verify.c (do_ldftn): added.
7431
7432         * verify.c (mono_method_verify): proper verificartion of ldftn.
7433
7434 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
7435
7436         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
7437         than the table row count. It's the resposibility of the caller to
7438         make the bounds check and raise the correct error.
7439
7440         * metadata.c (mono_metadata_decode_row_col): Same.
7441
7442         * loader.c (mono_get_method_from_token): perform bounds check
7443         on token for methoddef table.
7444
7445 2007-12-29  Miguel de Icaza  <miguel@novell.com>
7446
7447         * icall.c
7448         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
7449         assert into a negative result, the managed code already coped with
7450         that.
7451
7452         Some folks on Windows reported this error. 
7453
7454 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
7455
7456         * appdomain.c: Bump corlib version.
7457         * icall.c:
7458         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
7459         CultureInfo.CreateCulture to create CultureInfo for name.
7460         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
7461         create CultureInfo for name. Fixes bug #347174.
7462
7463 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
7464
7465         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
7466         flags.
7467
7468         * verify.c (is_valid_branch_instruction): allow branching to the
7469         first instruction of the protected block.
7470
7471         * verify.c (is_valid_cmp_branch_instruction): same.
7472
7473         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
7474         avoid double initialization.
7475
7476         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
7477         detect which cases the eval stack should just be copied.
7478
7479         * verify.c (mono_method_verify): check if the eval stack
7480         is empty when entering a protected block.
7481
7482 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
7483
7484         * verify.c: added is_clause_in_range, is_clause_inside_range,
7485         is_clause_nested and verify_clause_relationship. They perform
7486         the verifications stated in P1 12.4.2.7.
7487
7488         * verify.c (mono_method_verify): remove some unused variables,
7489         add the new exception clause checks, add instruction border
7490         checks for protected block start/end, improved some error 
7491         messages and fixed a bug in the way invalid instruction access
7492         is detected.
7493
7494 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
7495
7496         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
7497         from GC 7.0 if available.
7498
7499         * object.c: Remove an unused define.
7500         
7501         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
7502
7503         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
7504
7505         * null-gc.c (mono_gc_make_descr_for_array): Implement.
7506
7507         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
7508
7509         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
7510         to take the same arguments as the other make_descr functions.
7511
7512         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
7513
7514         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
7515         directly.
7516
7517         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
7518         mini.c.
7519
7520         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
7521         call to boehm-gc.c.
7522
7523         * boehm-gc.c (mono_gc_register_root): Fix a warning.
7524
7525         * null-gc.c (mono_gc_register_root): Fix a warning.
7526
7527         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
7528
7529         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
7530         (mono_gc_base_init): Call GC_init ().
7531
7532         * null-gc.c: Define mono_gc_register_root () as a no-op.
7533
7534         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7535
7536 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
7537
7538         * verify.c: add prototype for merge_stacks at top
7539
7540         * verify.c (do_switch): added.
7541
7542         * verify.c (merge_stacks): on some cases the stack merging
7543         was not happening properly. Unequal stack sizes at merge
7544         points should be invalid.
7545
7546         * verify.c (mono_method_verify): added more debug info on stack state.
7547         verify switch properly.
7548
7549 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
7550
7551         * method-builder.h: New file, moved the mono_mb_ declarations here from 
7552         marshal.h.
7553
7554         * boehm-gc.c marshal.c: Include method-builder.h.
7555
7556         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
7557
7558         * marshal.c: Remove some code which is now in method-builder.c.
7559
7560 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
7561
7562         * method-builder.c: New file, extraction of the method builder functionality 
7563         from marshal.c.
7564
7565         * marshal.c: Move the mb functions into method-builder.c.
7566
7567         * marshal.h marshal.c: Export some mono_mb_... functions.
7568
7569         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
7570
7571         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
7572         the caller.
7573
7574         * class.c (mono_class_get_full): Check the token type in the dynamic case.
7575
7576         * loader.c (mono_field_from_token): Ditto.      
7577
7578         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
7579         type as well.
7580         
7581         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
7582         Fixes #342565.
7583
7584         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
7585         a helper function for setting it.
7586
7587         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
7588
7589         
7590         * assembly.c: Significally simplify code now that referenced assemblies are 
7591         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
7592
7593         * threads.h: Don't include  the internal threads-types.h header file. Fixes
7594         #349952.
7595
7596 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
7597
7598         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
7599         instructions that were target of branches or are at protected block boundaries.
7600
7601         * verify.c (in_same_block): handle filter clauses.
7602
7603         * verify.c (is_valid_branch_instruction): added. checks the target of
7604         instructions br or brtrue/false.
7605
7606         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
7607         binary branch instructions such as beq and bge.
7608
7609         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
7610         and made it pin the instruction as been part of the exception block.
7611
7612         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
7613         of in_same_block.
7614
7615         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
7616         of in_same_block.
7617
7618         * verify.c (do_ret): ret from a protected block is unverifiable and
7619         not invalid.
7620
7621         * verify.c (do_static_branch): verify br and br.s instructions.
7622
7623         * verify.c (merge_stacks): add extra param to support detection
7624         of branches in the middle of instructions.
7625         
7626         * verify.c (mono_method_verify): verify branches and exception blocks
7627         that target the middle of instructions. Proper verification of br and br.s.
7628
7629 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
7630
7631         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
7632         skip_visibility field.
7633         (reflection_methodbuilder_from_dynamic_method): Ditto.
7634
7635         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
7636         registrations. Fixes #348193.
7637
7638         * threads.h: Move the internal mono_thread_get_pending_exception () to
7639         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
7640
7641 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
7642
7643         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
7644         icall registration. Fixes #348193.
7645
7646         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
7647         for corlib classes into object. Fixes #349621.
7648
7649 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
7650
7651         * icall.c (property_accessor_nonpublic): new function to determine
7652         whether an accessor allows a property to be considered non-public.
7653         Returns false for private accessor(s) from parent class, and internal
7654         accessor(s) from parent on 2.0 profile (and higher).
7655         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
7656         to determine whether property should be included if NonPublic flag
7657         is set. Fixes bug #349078.
7658
7659 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
7660
7661         * verify.c (init_stack_with_value): added.
7662
7663         * verify.c (mono_method_verify): extracted common
7664         code for exception initialization into init_stack_with_value.
7665
7666         * verify.c (mono_method_verify): initialize the exception
7667         for handler clauses as well.
7668
7669         * verify.c (mono_method_verify): fix the exception clause
7670         ordering rules, it should use handler end offset and not
7671         start offset.
7672
7673 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
7674
7675         * rawbuffer.c: remove useless warning.
7676
7677 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
7678
7679         * threads.h, threads-types.h: move functions to the correct header
7680         (fixes bug#349952).
7681
7682 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7683
7684         * verify.c (mono_method_verify): proper verification
7685         of exception handling clauses ranges and fallthru in
7686         and out of protected blocks.
7687
7688 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7689
7690         * verify.c (mono_method_verify): fixed compilation issue.
7691
7692 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7693
7694         * verify.c (mono_method_verify): a printf slipped in, changed
7695         to use verifier debug macro.
7696
7697 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
7698
7699         * verify.c (is_correct_leave): check for filter clauses.
7700
7701         * verify.c (do_filter): added.
7702
7703         * verify.c (mono_method_verify): property verification of leave.
7704
7705
7706 2007-12-18  Mark Probst  <mark.probst@gmail.com>
7707
7708         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
7709         Win32 build, until we figure out how to do the proper thing on
7710         Win32.
7711
7712 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
7713
7714         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
7715         by the previous patch.
7716         
7717         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
7718         the assembly resolve handler for refonly assemblies.
7719
7720 2007-12-17  Mark Probst  <mark.probst@gmail.com>
7721
7722         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
7723         Make sure only one thread is allowed to commence shutdown, and
7724         don't allow new threads to be started once shutdown is in
7725         progress.
7726
7727 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
7728
7729         * verify.c (is_correct_endfilter): added.
7730
7731         * verify.c (is_unverifiable_endfilter): added.
7732
7733         * verify.c (do_endfilter): added.
7734
7735         * verify.c (mono_method_verify): property verification of endfilter
7736         and fixed a corner case or endfinally.
7737
7738 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
7739
7740         * verify.h: new flags to support fail fast of unverifiable code and
7741         do non-strict verification. Non-strict verification is required to
7742         have MS runtime compatibility. There are a huge amount of unverifiable
7743         code that it accepts as verifiable. The strict mode verifies the code
7744         as the specs says.
7745         Non-strict mode will be required in cases where code needs to be
7746         accepted as verifiable but fails under strict mode.
7747
7748         * pedump.c: added support to fail fast and non-strict verification.
7749
7750         * verify.c: added support for both fail fast and non-strict verification.
7751
7752 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
7753
7754         * verify.c (is_correct_endfinally): added.
7755
7756         * verify.c (mono_method_verify): property verification of endfinally.
7757
7758 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7759
7760         * verify.c (in_any_block): check for filter clauses.
7761
7762         * verify.c (is_correct_rethrow): added.
7763
7764         * verify.c (mono_method_verify): property verification of rethrow.
7765
7766         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
7767
7768 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7769
7770         * verify.c (do_throw): added.
7771
7772         * verify.c (mono_method_verify): property verification of throw
7773
7774 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
7775
7776         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
7777         assemblies. Fixes #346425.
7778
7779 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
7780
7781         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
7782         FieldBuilders.
7783
7784         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
7785
7786         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
7787         prevent asserts when this is called with a token which might not be valid.
7788
7789         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
7790         lookup_dynamic_token_class with valid_token == FALSE.
7791
7792         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
7793
7794         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
7795
7796         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7797         
7798 2007-12-10  Mark Probst  <mark.probst@gmail.com>
7799
7800         * gc.c: Don't delay threadpool thread finalization unless Mono is
7801         shutting down.
7802
7803 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7804
7805         * threads.c: turn an assert into a non-fatal warning.
7806
7807 2007-12-09  Robert Jordan  <robertj@gmx.net>
7808
7809         * icall.c (GetVirtualMethod): Add missing argument validation.
7810
7811 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
7812
7813         * verify.c (do_cast): added.
7814
7815         * verify.c (mono_method_verify): property verification of castclass and isinst.
7816
7817
7818 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
7819
7820         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
7821
7822         * verify.c (do_stelem): added.
7823
7824         * verify.c (mono_method_verify): property verification of stelem.X.
7825
7826 2007-12-07  Mark Probst  <mark.probst@gmail.com>
7827
7828         * class.c, class-internals.h: Introduce an environment variable
7829         (MONO_GENERIC_SHARING) through which the extent of generic code
7830         sharing can be controlled (share all classes, share only corlib
7831         classes, or share nothing).
7832
7833         * object.c: Only create runtime generic context for classes for
7834         which sharing is enabled.
7835
7836 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
7837
7838         * verify.c (do_ldelem): refactor it to work with ldelem.any.
7839
7840         * verify.c (mono_method_verify): property verification of ldelem.any.
7841
7842 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
7843
7844         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
7845         added ldelem.X opcodes.
7846
7847         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
7848
7849         * verify.c: proper verification of ldelem.X 
7850
7851 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
7852
7853         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
7854
7855 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7856
7857         * verify.c (mono_method_verify): null literal requires special handling,
7858         the value pushed on stack need to be flagged as so.
7859
7860         * verify.c (do_ldelema): Verify ldelema properly.
7861
7862 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7863
7864         * verify.c: Verify ldlen properly.
7865
7866 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
7867
7868         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
7869         to the target object's type. Fixes #346160.
7870
7871 2007-12-05  Dick Porter  <dick@ximian.com>
7872
7873         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
7874         Solaris needs the same workaround as BSD-derived systems.  Fixes
7875         bug 323524, patch by Burkhard Linke
7876         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
7877
7878 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
7879
7880         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
7881         handle to use when error dialog is shown; otherwise, update mask
7882         to show no error dialog when an error occurs.
7883
7884 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
7885
7886         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
7887
7888         * class.c (mono_class_get_field_default_value): New helper function to initialize
7889         field->def_type and field->data.
7890
7891 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
7892
7893         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
7894         the general one.
7895
7896         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
7897
7898         * marshal.c: Avoid depending on delegate->method_info being set.
7899
7900         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
7901         
7902         * object.c (mono_delegate_ctor): Set delegate->method.
7903
7904         * object-internals.h (struct _MonoDelegate): Add 'method' field.
7905
7906         * appdomain.c: Bump corlib version.
7907
7908 2007-11-27  Raja R Harinath  <harinath@gmail.com>
7909
7910         * metadata.c (mono_generic_inst_equal_full): Short-circuit
7911         equality check if we're comparing canonicalized MonoGenericInsts.
7912
7913 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
7914
7915         * class.c (generic_array_methods): Call mono_class_setup_methods () before
7916         accessing class->methods.
7917
7918 2007-11-22  Dick Porter  <dick@ximian.com>
7919
7920         * threads.c: Ensure that the synch_cs is set before trying to use
7921         it.
7922
7923 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
7924
7925         * profiler.c: r89126 broke the statistial profiler, unbreak.
7926
7927 2007-11-22  Martin Baulig  <martin@ximian.com>
7928
7929         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
7930
7931         * mono-debug.c
7932         (mono_debug_debugger_version): Bump to 3.
7933         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
7934         -> mono_debugger_class_initialized().
7935
7936         * mono-debug-debugger.c
7937         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
7938
7939         * class.c
7940         (mono_debugger_start_class_init_func): Removed.
7941         (mono_debugger_class_loaded_methods_func): Added.
7942         (mono_class_setup_methods): Call it here.
7943
7944 2007-11-22  Martin Baulig  <martin@ximian.com>
7945
7946         * mono-debug.c
7947         (mono_debug_add_delegate_trampoline): New public method.
7948         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
7949
7950         * mono-debug.h
7951         (MonoSymbolTable): Added `global_data_table'.
7952         (MonoDebuggerTypeKind): Removed.
7953
7954 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
7955
7956         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
7957         these methods.
7958
7959         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7960         
7961 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
7962
7963         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
7964
7965 2007-11-20  Martin Baulig  <martin@ximian.com>
7966
7967         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
7968
7969         * mono-debug-debugger.c
7970         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
7971         (mono_debugger_remove_breakpoint): Likewise.
7972         (mono_debugger_check_breakpoints): Likewise.
7973         (mono_debugger_register_class_init_callback): New public method.
7974         (mono_debugger_remove_class_init_callback): Likewise.
7975         (mono_debugger_add_type): Likewise.
7976
7977         * mono-debug-debugger.h
7978         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
7979
7980 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
7981
7982         * class.c: more interface implementations needed for the
7983         array enumerator (fixes bug #341112).
7984
7985 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
7986
7987         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
7988         fix ParamName of ArgumentNullExceptions.
7989
7990 2007-11-17  Miguel de Icaza  <miguel@novell.com>
7991
7992         * reflection.c (mono_reflection_encode_sighelper): Generate the
7993         modopts and modreqs.   I have a useless test that crashes monodis,
7994         but that shows the code working.
7995
7996 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
7997
7998         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
7999         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
8000
8001 2007-11-15  Dick Porter  <dick@ximian.com>
8002
8003         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
8004         When joining a thread, it's the thread that's calling Join that
8005         gets WaitSleepJoin state not the target.  Fixes the standalone
8006         test case in bug 334740, and hopefully the whole bug too.
8007
8008 2007-11-15  Dick Porter  <dick@ximian.com>
8009
8010         * process.c: Read file version info from the files pointed at by
8011         process modules, not the current process.  Fixes bug 315969.
8012
8013         Use windows typedef names in some places to fix warnings on the
8014         windows build.
8015
8016 2007-11-15  Mark Probst  <mark.probst@gmail.com>
8017
8018         * image.c, metadata-internals.h: Added a generic_class_cache hash
8019         to MonoImage for looking up generic classes when sharing generics.
8020
8021 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8022
8023         * sgen-gc.c: warning cleanups.
8024
8025 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
8026
8027         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
8028         inherited properties.
8029
8030 2007-11-14  Mark Probst  <mark.probst@gmail.com>
8031
8032         * object.c, class-internals.h: Added more information to the
8033         runtime generic context.
8034
8035 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
8036
8037         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
8038         instead of just the target method. Generalize the abstract method handling to
8039         handle any non-static method.
8040
8041         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
8042         mono_marshal_get_delegate_invoke () signature change.
8043
8044 2007-11-13  Mark Probst  <mark.probst@gmail.com>
8045
8046         * class.c, class-internals.h: Made
8047         mono_type_get_basic_type_from_generic () public.  Fixed member
8048         access check for shared generics.
8049
8050         * loader.c: Don't insert field into field cache if it's part of a
8051         non-inflated generic class.
8052
8053         * domain.c, domain-internals.h: The generic sharing context is now
8054         part of the jit info data structure.  Added two accessor
8055         functions.
8056
8057 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
8058
8059         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
8060         the array Get/Set/Address methods, since the JIT inlines them.
8061
8062         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
8063
8064         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
8065         (mono_image_init): Initialize runtime_invoke_direct_cache.      
8066
8067         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
8068         mono_marshal_get_delegate_invoke signature change.
8069
8070         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
8071         an additional argument. Add support for invoking abstract methods.
8072
8073         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
8074
8075         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
8076
8077 2007-11-09  Mark Probst  <mark.probst@gmail.com>
8078
8079         * class.c: Do field layout for open generic classes as well.
8080
8081 2007-11-09  Mark Probst  <mark.probst@gmail.com>
8082
8083         * gc.c, gc-internal.h: Don't finalize threadpool threads with
8084         other objects, because the threadpool is still around.  Put them
8085         in a list instead and after finalizing all other objects in the
8086         root domain shut down the thread pool and then finalize the
8087         threads.  Fixes bug #337383.
8088
8089         * threads.c, thread-types.h: New mono_thread_create_internal()
8090         function for marking a thread with the threadpool flag before it
8091         started.  Set synch_cs to NULL after freeing it.
8092
8093         * threadpool.c: Mark threadpool threads before they start.
8094
8095 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8096
8097         * reflection.h, reflection.c: don't export random functions
8098         and lazy load dbnull and missing objects.
8099
8100 2007-11-07  Jonathan Chambers <joncham@gmail.com>
8101
8102         * class.c: Initialize COM types if COM interfaces
8103         are present (not just COM classes).
8104         
8105         Code is contributed under MIT/X11 license.
8106
8107 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8108         * reflection.c:
8109         create_dynamic_mono_image: hook module profiler events (dynamic case).
8110         mono_image_basic_init: hook assembly profiler events (dynamic case).
8111
8112 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8113         * profiler.c:
8114         simple_appdomain_unload: completely terminate the profiler
8115         instead of only processing the statistical samples.
8116         simple_shutdown: make sure this is really called exactly once,
8117         even in multithreaded applications, and always listen to
8118         appdomain events.
8119         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
8120         here, the "[un]load" functions will do it.
8121         Fixes bugs #333791 and #325261.
8122
8123 2007-11-07  Geoff Norton  <gnorton@novell.com>
8124
8125         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
8126         rather than depend on __APPLE__.
8127
8128 2007-11-07  Mark Probst  <mark.probst@gmail.com>
8129
8130         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
8131
8132 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
8133
8134         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
8135         UTF16 MonoString. Fix the crash from bug #335488
8136
8137 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
8138
8139         * marshal.c: Correct (for non-Win32 OS) length != size in 
8140         mono_string_from_bstr. Fix #339530.
8141
8142 2007-11-06  Geoff Norton  <gnorton@novell.com>
8143
8144         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
8145         to succeed
8146
8147 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
8148
8149         * process.c: Added run-time GetProcessId API detection for Windows.
8150
8151 2007-11-04  Miguel de Icaza  <miguel@novell.com>
8152
8153         * reflection.c  (mono_param_get_objects): If a parameter has the
8154         attribute [System.Runtime.InteropServices.Optional] we should
8155         set the DefaultValue of the ParameterInfo to be
8156         System.Reflection.Missing instead of DBNull.
8157
8158         See bug #339013.
8159
8160         (mono_get_reflection_missing_object): New method,
8161         returns the System.Reflection.Missing.Value singleton instance.
8162
8163 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
8164
8165         * culture-info-table.h : regenerated.
8166
8167 2007-11-02  Jonathan Chambers <joncham@gmail.com>
8168
8169         * icall.c: Use GetEnvironmentStrings on windows
8170         so we are using the same environment block as 
8171         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
8172         #333740.
8173         
8174         Code is contributed under MIT/X11 license.
8175
8176 2007-10-31  Martin Baulig  <martin@ximian.com>
8177
8178         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
8179
8180         * mono-debug-debugger.h
8181         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
8182
8183 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
8184
8185         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
8186         classes.
8187
8188 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
8189
8190         * culture-info-table.h : regenerated.
8191
8192 2007-10-30  Robert Jordan  <robertj@gmx.net>
8193
8194         * icall-def.h, icall.c:
8195         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
8196
8197         Code is contributed under MIT/X11 license.
8198
8199 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
8200
8201         * class.c (mono_class_setup_vtable): Find the inflated methods in the
8202         inflated class instead of inflating them again.
8203         
8204         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
8205         dynamic case.
8206
8207         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
8208         Call setup_supertypes () after klass->parent is set.
8209         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
8210
8211         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
8212         for inflated instances of not yet created dynamic generic classes.
8213         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
8214         times from inflated_method.
8215         (methodbuilder_to_mono_method): Ditto.
8216
8217 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8218
8219         * gc.c: code cleanup and removed old untested option of not creating the
8220         finalizer thread.
8221
8222 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
8223
8224         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
8225         creating a jump trampoline for dynamic methods.
8226
8227 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
8228
8229         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
8230         generic TypeBuilders when called from another method of the same type (bug #335131).
8231
8232
8233 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
8234
8235         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
8236         doesn't seem to work perfectly.
8237         
8238         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
8239         called multiple times.
8240         (methodbuilder_to_mono_method): Ditto.
8241         (resolve_object): Inflate FieldBuilder's.
8242
8243 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8244
8245         * string-icalls.c, string-icalls.h, appdomain.c: patch from
8246         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
8247         RemoveEmptyEntries in the string.Split implementation (bug #322375).
8248
8249 2007-10-26  Dick Porter  <dick@ximian.com>
8250
8251         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
8252         Thread initialisation changes
8253
8254 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
8255
8256         * verify.c: fix compatibility check between arrays and System.Array
8257
8258 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
8259
8260         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
8261         too. Fixes #336999.
8262
8263 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
8264
8265         * object.c (mono_value_box): Use typed allocation here.
8266
8267 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
8268
8269         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
8270         trampoline instead of compiling the method right away.
8271
8272         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
8273
8274 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
8275
8276         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
8277         related fields for dynamic classes. Fixes #334493.
8278
8279 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
8280
8281         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
8282         
8283         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
8284
8285         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
8286         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
8287
8288         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
8289
8290         * reflection.c (create_generic_typespec): Initialize klass->generic_container
8291         if needed.
8292         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
8293
8294 2007-10-18  Jonathan Chambers <joncham@gmail.com>
8295
8296         * marshal.c: Use correct key when removing item
8297         from ccw_hash.
8298         
8299         Code is contributed under MIT/X11 license.
8300
8301 2007-10-17  William Holmes  <billholmes54@gmail.com>
8302
8303         *marshal.c: Adding a case to marshal booleans to U1
8304
8305         Code is contributed under MIT/X11 license.
8306
8307 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
8308
8309         * class.c (mono_class_from_name): Search the modules compromising dynamic
8310         assemblies. Fixes #331601.
8311
8312 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
8313
8314         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
8315         exception if the type name contains an assembly component. Fixes #334203.
8316
8317         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
8318         modules inside dynamic assemblies. Fixes #334200.
8319         
8320         * reflection.c: Set image->public_key and image->public_key_length;
8321
8322         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
8323         fields.
8324
8325         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
8326         
8327 2007-10-16  Mark Probst  <mark.probst@gmail.com>
8328
8329         * metadata.c: Implemented correct comparing of generic classes.
8330         An inflated generic class can be equal to a non-inflated one if it
8331         is inflated with generic type variables as type arguments.  Fixes
8332         bug #333798.
8333
8334 2007-10-15  Dick Porter  <dick@ximian.com>
8335
8336         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
8337         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
8338         81646.
8339
8340         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
8341         instead of a monitor lock.  This means that monitor_try_enter and
8342         co can set the thread state safely.
8343         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
8344         thread_interrupt_requested, so interrupt actually works.
8345
8346         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
8347         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
8348         state accessor function
8349
8350 2007-10-15  Martin Baulig  <martin@ximian.com>
8351
8352         * mono-debug.h
8353         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
8354         the debugger with the current runtime.
8355
8356 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
8357
8358         * object.c, object-internals.h: added the ability to set a single
8359         trampoline for all the slots in a vtable.
8360
8361 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8362
8363         * marshal.c: deal with a possible race condition during multicast
8364         delegate invocation.
8365
8366 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8367
8368         * class.c: ensure value type methods don't have the synchronized
8369         flag set.
8370
8371 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8372
8373         * string-icalls.c, string-icalls.h: reverted unapproved patch that
8374         breaks the build.
8375
8376 2007-10-11  Joel Reed  <joelwreed@comcast.com>
8377
8378         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
8379         to take an options parameter so that empty entries can be removed during
8380         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
8381
8382 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8383
8384         * marshal.c: make sure we don't store the signature from a dynamic
8385         method into the runtime invoke cache (bug #327189).
8386
8387 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8388
8389         * marshal.c: make sure the wrapper methods are properly initialized.
8390
8391 2007-10-11  Mark Probst  <mark.probst@gmail.com>
8392
8393         * metadata.c, metadata-internals.h: Generalized
8394         mono_type_stack_size() to mono_type_stack_size_internal() which
8395         takes an additional argument specifying whether it allows open
8396         types.
8397
8398 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8399
8400         * verify.c (do_invoke_method): handle typedbyref params
8401         correctly and check for unverifiable return values.
8402
8403         * verify.c (do_newobj): fix a warning.
8404
8405 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8406
8407         * verify.c: don't tread typedbyref as allways unverifable,
8408         so uses, like (ld/st)loc.0 are valid. verify for the cases
8409         that it matters, like boxing related operations.
8410
8411 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8412
8413         * verify.c: add verification of the newobj opcode. verification
8414         of delegate instantation still missing due ldftn and virldftn not
8415         pushing the function type on stack
8416
8417 2007-10-08  Mark Probst  <mark.probst@gmail.com>
8418
8419         * class-internals.h: Runtime generic context data structure
8420         definition.
8421
8422         * object.c: Initialization of runtime generic context at runtime
8423         vtable creation time.
8424
8425 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
8426         * class.c (mono_class_create_from_typedef,
8427         mono_class_from_generic_parameter, mono_ptr_class_get,
8428         mono_fnptr_class_get, mono_bounded_array_class_get)
8429         * domain.c (mono_domain_create, mono_domain_free)
8430         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
8431         * image.c (do_mono_image_load, mono_image_close):
8432         Hooked up load-unload profiler events.
8433
8434 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8435
8436         * domain.c: track statistics about the actual amount of native code
8437         allocated.
8438
8439 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8440
8441         * class.c: the valuetype enumerators don't have the additional
8442         supertypes interfaces.
8443
8444 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8445
8446         * class.c: need more interfaces setup for the IEnumerator<T>
8447         object created for arrays (tests/ienumerator-interfaces.2.cs).
8448
8449 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
8450
8451         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
8452
8453 2007-10-05  Alp Toker  <alp@atoker.com>
8454
8455         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8456         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8457         #315863.
8458
8459 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
8460
8461         * verify.c (verify_type_compatibility_full): verification of
8462         compatibility improved, validates correctly non-strict checks between
8463         native int and I4 types different than (unsigned)int32.
8464
8465         * verify.c (do_store_indirect): added, do all verification of
8466         ldind.X opcodes. 
8467
8468         * verify.c (get_load_indirect_mono_type): renamed to
8469         get_indirect_op_mono_type, as it now returns the MonoType for 
8470         ldind.X and stind.X opcodes.
8471
8472 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
8473
8474         * reflection.c: Fix the encoding of generic type definition for
8475         TypeBuilders.
8476
8477         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
8478         mono_image_typedef_or_ref but allows to specify if typespec lookups should
8479         be made. Typespec check is done prior to typeref cache lookup.
8480
8481         * reflection.c (mono_image_typedef_or_ref): now just delegate to
8482         mono_image_typedef_or_ref_full.
8483
8484         * reflection.c (encode_generic_class): encode the generic class
8485         directly instead of calling encode_type.
8486
8487         * reflection.c (encode_type): encode the generic type definition
8488         MonoClass as a generic instantiation.
8489
8490         * reflection.c (create_typespec): cache typespec tokens in
8491         the assembly->typespec cache. Don't create typespec for a generic
8492         instance MonoClass. Create typespec for the generic type defintion.
8493
8494         * reflection.c (create_generic_typespec): encode the generic
8495         class directly instead of calling encode_type.
8496
8497         * reflection.c (mono_image_create_token): encode the generic
8498         type definition not using a typespec for MonoType instances.
8499
8500
8501 2007-10-04  Raja R Harinath  <rharinath@novell.com>
8502
8503         Fix #328812
8504         * class.c (mono_image_init_name_cache): Don't return nested
8505         'protected internal' classes.
8506         (mono_class_from_name_case): Likewise.
8507
8508 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
8509
8510         * icall-def.h, icall.c : get_bundled_machine_config() is now the
8511           common function used by both DefaultConfig in System.dll and
8512           InternalConfigurationHost in System.Configuration.dll.
8513
8514 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8515
8516         * class.c: automatically add to vectors only a few essential explicit
8517         generic interfaces. The rest of the interfaces that arrays should
8518         provide are currently implicitly added (but still not lazily, see the
8519         design in the discussion of bug#325495 for the details of what is
8520         needed for that). Additionally, implicit interfaces are assigned the
8521         same vtable slot as the explicit interfaces (as they are compatible):
8522         this enables huge memory savings since we don't need to instantiate
8523         as many memthods and as large vtables anymore. Also, Since
8524         GetEnumerator<T> returns an instance of a type that is required to
8525         support a similarly large set of interfaces as arrays, we add
8526         implicit interfaces and interface offset sharing support to those
8527         types, too. This change adds all the required interfaces so that
8528         the anonarray.cs test case in the bug report works (we don't add
8529         all the interfaces to arrays of arrays 3-level deep and more because
8530         of the memory requirements explained in the bug and since they are much
8531         less common: the lazy-loading support will enabled them to work, too).
8532
8533 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
8534
8535         * verify.c (merge_stacks): major clean up, all type compatibility
8536         checks are done by verify_type_compatibility. This fix my earlier lack
8537         of understanding of the CLR type system and merge_stacks no longer looks
8538         scary.
8539
8540         * verify.c: fixed some bad spelling.
8541
8542 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
8543
8544         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
8545         a given stack slock.
8546         
8547         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
8548         verify_type_compatibility_full. This removed a near indentical function and fixed
8549         handling of Int32 and IntPtr across all opcodes.
8550
8551 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8552
8553         * class.c: only vectors have the additional generic interfaces.
8554
8555 2007-10-01  Jonathan Chambers <joncham@gmail.com>
8556
8557         * mono-config.c: Use g_strcasecmp instead of
8558         strcasecmp like everywhere else to fix
8559         compilation with MSVC.
8560         
8561         Code is contributed under MIT/X11 license.
8562
8563 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8564
8565         * object.c, object-internals.h: refactored the IMT code to enable
8566         building a single slot at a time and lazily creating the IMT trampolines
8567         and thunks.
8568
8569 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
8570
8571         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
8572
8573         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
8574         Fixes #328501.
8575         
8576 2007-09-29  Raja R Harinath  <harinath@gmail.com>
8577
8578         * loader.c (method_from_methodspec): Rearrange to avoid
8579         un-necessary exposition.  Don't assert out if the method's
8580         declaring type is a generic type definition.
8581
8582 2007-09-28  Martin Baulig  <martin@ximian.com>
8583
8584         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
8585
8586 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
8587
8588         * class-internals.h: optimize field layout of MonoClass to
8589         requires less cachelines at runtime and save a few bytes on 64 bit
8590         systems.
8591
8592 2007-09-28  Jb Evain  <jbevain@novell.com>
8593
8594         * reflection.c: when encoding type names in custom attributes,
8595         if the type is a closed generic type, its generic arguments
8596         have to be serialized as AssemblyQualifiedName, so that when
8597         they are deserialized, it's possible to re-create them properly.
8598         Fixes #329450.
8599
8600
8601 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8602
8603         * object.c, class-internals.h: added delegate-creation counter.
8604
8605 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8606
8607         * class.c: cleanup of the code that synthetizes interfaces for
8608         arrays in 2.0: saves quit a bit of corlib mempool memory.
8609         Code to fix bug #325495 ifdeffed out for now until the issues
8610         with memory usage and O(n^2) behaviour are fixed.
8611
8612 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8613
8614         * marshal.c: when possible, do not duplicate the name of the methods
8615         in the method builder and in the generated MonoMethod.
8616
8617 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
8618         * verify.c: added support for type checking ldind_* opcodes.
8619
8620 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
8621
8622         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
8623         which is used to distinguish the fully open instantiation of a TypeBuilder
8624         with the rest. This temporary hack is required to restore the property that
8625         the fully open instantiation is the same type of the generic type definition.
8626
8627         * class-internals.h (mono_generic_class_is_generic_type_definition):
8628         new function as part of the internal API.
8629
8630         * class.c (inflate_generic_type): return NULL when the generic inst is
8631         fully open. The fully open generic type is now the same as the generic type
8632         definition for non TypeBuilder types.
8633
8634         * class.c (mono_generic_class_get_class): removed assert since it is
8635         no longer valid, gklass->cached_class can point to the generic type definition.
8636
8637         * class.c (mono_generic_class_is_generic_type_definition): new.
8638
8639         * metadata.c (mono_generic_class_hash): added is_tb_open field
8640         to the hash calculation.
8641
8642         * metadata.c (free_generic_class): if the generic class is associated
8643         with the generic type definition, its field will come from the mempool and
8644         must not be freed.
8645
8646         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
8647         new, this function identifies the corner case of a TypeBuilder fully open
8648         instantiation.
8649
8650         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
8651         for lookup. Set gclass->cached_class to be the container class in case of
8652         the fully open instantiation of non TypeBuilder types.
8653
8654         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
8655         to compare generic classes.
8656
8657         * reflection.c (method_encode_methodspec): remove assert that
8658         no longer is valid.
8659
8660         * reflection.c (mono_reflection_generic_class_initialize): add
8661         an aditional assert to ensure the proper type is used.
8662
8663 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
8664
8665         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
8666         to enjoy it.
8667
8668 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
8669
8670         * verify.c (push_arg): Fixed support for ldarga
8671         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
8672         MonoType used as first arg in case of instance calls.
8673
8674 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
8675
8676         * verify.c: Support for verifying VAR and MVAR types, 
8677
8678 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
8679
8680         * icall.c (ves_icall_get_property_info): Set the reflected type of the
8681         accessors correctly.
8682
8683 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
8684
8685         * threads.c: support OSX and other systems in
8686         mono_thread_get_stack_bounds (bug #328026).
8687
8688 2007-09-25  Martin Baulig  <martin@ximian.com>
8689
8690         * mono-debug.h
8691         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
8692
8693 2007-09-24  Martin Baulig  <martin@ximian.com>
8694
8695         * mono-debug.h
8696         (MonoDebugClassEntry): Moved the definition of this struct into
8697         mono-debug.c to make it private.
8698
8699         * mono-debug.c
8700         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
8701         type table per symbol file, we don't need to store the symfile id
8702         any longer.
8703
8704 2007-09-24  Martin Baulig  <martin@ximian.com>
8705
8706         Create one type table per symbol file, since a `MonoClass *' gets
8707         invalid when its image is unloaded.
8708
8709         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
8710         (MonoDebugHandle): Added `type_table'.
8711
8712 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
8713
8714         * mempool.c, mempool.h: added mono_mempool_new_size () API
8715         to be able to specify a smaller initial size for the pool.
8716         Adjusted the code to slowly increase pool size before using
8717         the previous default size.
8718         * image.c: use a small initial size for image mempools.
8719
8720 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
8721
8722         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
8723         Fixes ##320990.
8724
8725         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
8726         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
8727
8728 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
8729
8730         * metadata.c (mono_type_create_from_typespec): Remove an invalid
8731         free. Fixes #327438.
8732
8733 2007-09-21  Raja R Harinath  <harinath@gmail.com>
8734
8735         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
8736         generic instantiations, etc.
8737         <MONO_TYPE_ARRAY>: Likewise.
8738
8739 2007-09-21  Martin Baulig  <martin@ximian.com>
8740
8741         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
8742         these structs were never defined.
8743         (MonoDebugHandle): Removed the `_priv' field, it was never used.
8744
8745 2007-09-21  Martin Baulig  <martin@ximian.com>
8746
8747         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
8748
8749 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
8750
8751         * image.c: removed the guid hash tables: we can get the same info
8752         without the additional memory usage hit (partially fixes also bug #327052).
8753
8754 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
8755
8756         * profiler.h, profiler-private.h, profiler.c: add a new profiler
8757         event to handle unloading methods. After the event is called, the
8758         corresponding MonoMethod* must be considered invalid.
8759         * loader.c (mono_free_method): call the new mono_profiler_method_free
8760         event.
8761
8762 2007-09-20  Mark Probst  <mark.probst@gmail.com>
8763
8764         * domain-internals.h: New flag in MonoJitInfo which marks shared
8765         generic methods.  New hash table (shared_generics_hash) in
8766         MonoDomain to keep track of shared generic methods.  Prototypes
8767         for functions to register and lookup shared generic methods.
8768
8769         * domain.c: Support for registering and looking up shared generic
8770         methods via a hash table (shared_generics_hash) in MonoDomain.
8771
8772         * class-internals.h: New exception to signal failure of shared
8773         compilation of a generic method.  New counters for generics
8774         sharing in MonoStats.
8775
8776 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
8777
8778         * image.c, metadata-internals.h: don't keep a file descriptor open
8779         for loaded assemblies (bug#325988).
8780
8781 2007-09-19  Raja R Harinath  <rharinath@novell.com>
8782
8783         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
8784         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
8785         use the corresponding datatypes.
8786         (type_in_image): Update to changes.
8787         (CleanForImageUserData): Simplify.
8788         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
8789         Avoid quadratic behaviour in handling the "stolen" list by
8790         separating the filter predicate out, and by prepending the stolen
8791         items rather than appending them.
8792         (steal_ginst_in_image): Likewise.
8793         (mono_metadata_clean_for_image): Update to changes.
8794
8795 2007-09-19  Martin Baulig  <martin@ximian.com>
8796
8797         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
8798
8799 2007-09-19  Martin Baulig  <martin@ximian.com>
8800
8801         * mono-debug.c (mono_debug_cleanup): Don't call
8802         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
8803
8804 2007-09-19  Raja R Harinath  <harinath@gmail.com>
8805
8806         Fix crash on 'make run-test' in mcs/errors
8807         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
8808         Avoid more potential allocations in mono_class_from_mono_type.
8809         (ginst_in_image): Update to changes.
8810         (gclass_in_image): Rearrange slightly.
8811
8812 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
8813
8814         * class.c (mono_class_init): Move the code that sets up class->methods to 
8815         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
8816
8817         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
8818         canonical instance of an inflated generic signature.
8819         (mono_type_create_from_typespec): Remove an invalid free.
8820
8821         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
8822
8823 2007-09-18  Marek Habersack  <mhabersack@novell.com>
8824
8825         * domain-internals.h: added a declaration of the
8826         mono_assembly_load_full_nosearch internal function.
8827
8828         * assembly.c (mono_assembly_load_with_partial_name): use
8829         mono_try_assembly_resolve return value properly.
8830         (mono_assembly_load_full_nosearch): copied the function body from
8831         mono_assembly_load_full, without the code to invoke assembly
8832         search hooks.
8833         (mono_assembly_load_full): calls the above new function and if the
8834         assembly is not resolved, invokes the search hooks.
8835
8836         * appdomain.c (mono_runtime_init): restore the global postload
8837         assembly search handlers.
8838
8839 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
8840
8841         * class.c (mono_class_init): Make sure class->methods and class->properties
8842         are never NULL in the generics case.
8843
8844         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
8845
8846 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
8847
8848         * metadata.c (free_generic_class): Disable some code to fix the build.
8849
8850         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
8851
8852         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
8853         from the image mempool.
8854
8855         * metadata.c (free_generic_class): Free more data from the inflated class.
8856
8857         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
8858
8859         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
8860         mempool.
8861         (mono_type_create_from_typespec): Ditto.
8862
8863         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
8864         MonoImage to the caller.
8865         (mono_init_internal): Save the opened image in a global variable.
8866         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
8867
8868         * reflection.c (resolve_object): Fix a leak.
8869
8870         * metadata.c: Fix the freeing of data in the generics caches.
8871         
8872         * metadata.c (free_generic_inst): Comment this out to fix the build.
8873         (free_generic_class): Ditto.
8874
8875         * metadata.c: Free cached generic methods, instantinations and classes when
8876         they are removed from the caches.
8877         (mono_metadata_free_type): Free the type itself.
8878
8879         * class.c: Free the result of mono_class_inflate_generic_type () in a few
8880         places.
8881
8882 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
8883
8884         * boehm-gc.c: restrict managed allocs to __thread supporting
8885         architectures.
8886
8887 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
8888
8889         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
8890         (mono_generic_class_get_class): Fix a leak.
8891
8892         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
8893         mono_metadata_free_type ().
8894         (mono_metadata_inflate_generic_inst): Fix a leak.
8895
8896 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8897
8898         * mono-debug.c (free_header_data): Fix a leak missed earlier.
8899
8900         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
8901         mempool.
8902
8903         * mono-debug.c (mono_debug_close_image): Fix call to 
8904         g_hash_table_remove ().
8905
8906 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
8907
8908         * icall-def.h: redirect all the string ctor to the managed
8909         CreateString () methods.
8910         * string-icalls.c, string-icalls.h: removed dead code for string
8911         ctors and icalls.
8912
8913 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8914
8915         * mono-debug.c: Fix memory leaks.
8916
8917 2007-09-14  Jonathan Chambers <joncham@gmail.com>
8918
8919         * threads-types.h: Implement mono_hazard_pointer_set and 
8920         mono_hazard_pointer_clear macros using do/while(0) to fix
8921         compilation with MSVC.
8922         
8923         Code is contributed under MIT/X11 license.
8924
8925 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8926
8927         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
8928         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
8929
8930 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8931
8932         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
8933         icalls.
8934
8935 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8936
8937         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
8938         managed-code allocated as well.
8939
8940 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
8941
8942         * class.c (mono_class_is_assignable_from): Add support for generic variance.
8943
8944 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
8945
8946         * boehm-gc.c: fixed the build after the AOT changes.
8947
8948 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
8949
8950         * wrapper-types.h: Add an ALLOC wrapper type.
8951
8952         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
8953         reference managed allocator methods.
8954
8955 2007-09-12  Marek Safar  <marek.safar@gmail.com>
8956
8957         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
8958         of Type array and not MonoType, a fix suggested by Hari.
8959         
8960 2007-09-12  Jonathan Chambers <joncham@gmail.com>
8961
8962         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
8963         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
8964         
8965         Code is contributed under MIT/X11 license.
8966
8967 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
8968
8969         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
8970
8971 2007-09-12  Marek Habersack  <mhabersack@novell.com>
8972
8973         * image.c (do_mono_image_open): if assembly file fails to open and
8974         MONO_IOMAP is in effect, try to find the path in a
8975         case-insensitive way.
8976
8977         * appdomain.c (mono_runtime_init): do not install postload hooks -
8978         tests show that MS.NET doesn't use anything of that sort to
8979         trigger the AppDomain.AssemblyResolve event.
8980         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
8981         made non-static.
8982         (mono_runtime_init): init portability helpers here.
8983
8984         * assembly.c (mono_assembly_load_with_partial_name): if other   
8985         attempts fail, trigger the AppDomain.AssemblyResolve event handler
8986         to resolve the assembly.
8987
8988         * domain-internals.h: added mono_try_assembly_resolve and marked
8989         it as internal.
8990
8991 2007-09-11  Jb Evain  <jbevain@novell.com>
8992
8993         * object-internals.h (MonoReflectionDynamicMethod): add
8994         a `MonoReflectionType *owner` field. The owner is used
8995         * reflection.c:
8996         (mono_reflection_create_dynamic_method): use the owner of the dynamic
8997         method as the class declaring the dynamic method.
8998         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
8999         dynamic method to the declaring type of the methodbuilder.
9000
9001 2007-09-11  Mark Probst  <mark.probst@gmail.com>
9002
9003         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
9004         rules for calling methods via reflection.
9005
9006 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
9007
9008         * reflection.c (resolve_object): Add support for MonoGenericClass. 
9009         Inflate MonoType's.
9010
9011 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9012
9013         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
9014         provide a managed method that does fast allocations without needing
9015         a managed->unmanaged transition. Boehm GC implementation currently
9016         enabled for ptrfree objects on sane architectures.
9017
9018 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
9019
9020         * marshal.c, marshal.h: exported a couple of useful functions and
9021         added mono_mb_get_label () to easily handle backward branches.
9022
9023 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
9024
9025         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
9026
9027 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
9028
9029         * loader.c (find_method): Fixed the regression introduced while
9030         fixing bug #81466.
9031
9032 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
9033
9034         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
9035         well.
9036         
9037         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
9038         icall.c reflection.c: Pass a MonoGenericContext argument to 
9039         mono_lookup_dynamic_token ().
9040
9041         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
9042         #82744.
9043         
9044 2007-09-09  Robert Jordan  <robertj@gmx.net>
9045
9046         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
9047         for generic methods.
9048
9049         * object.c (mono_object_get_virtual_method): Handle generic methods.
9050         Fixes bug #78882.
9051
9052         Code is contributed under MIT/X11 license.
9053
9054 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
9055
9056         * image.c: fix locking in mono_image_load_file_for_image ().
9057
9058 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
9059
9060         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
9061         used only as a cache: added an icall to fill it.
9062
9063 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
9064
9065         * reflection.h: exposed mono_reflection_free_type_info
9066         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
9067         since mono_reflection_bind_generic_parameters makes a copy of it.
9068         * reflection.c (free_type_info): subinfos should be freed.
9069         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
9070         made non static.
9071         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
9072         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
9073         this fixes #82695 and #81726.
9074    
9075
9076 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
9077
9078         * process.h, process.c:  added support for user profile/info in
9079           ProcessStartInfo. For now only Windows works.
9080
9081 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9082
9083         * metadata.c: consider the generic arguments when comparing
9084         signatures (bug #82614).
9085
9086 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
9087
9088         * cil-coff.h, image.c: updated assembly loader to cope with the
9089         PE32+ 64 bit file format.
9090
9091 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
9092
9093         * assembly.c, class.c, domain.c, loader.c: remove useless
9094         inclusion of cil-coff.h.
9095
9096 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
9097
9098         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
9099         if interface is marked with CoClassAttribute. 
9100    
9101         Code is contributed under MIT/X11 license.
9102
9103 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
9104
9105         * sgen-gc.c: ensure no object from the to space is copied again or finalized
9106         if it's seen twice in major collections.
9107
9108 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
9109
9110         * sgen-gc.c: big objects are not copied to the gray area, but they
9111         need to be considered for scanning, too, if they are brought alive
9112         by an object ready for finalizations or a survived one.
9113
9114 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
9115
9116         * sgen-gc.c: properly account the number of disappearing links when
9117         they are nullified.
9118
9119 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
9120
9121         * sgen-gc.c: share the code to scan the registered roots between the
9122         different types of collections.
9123
9124 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
9125
9126         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
9127
9128 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
9129
9130         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
9131         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
9132
9133 2007-08-28  Mark Probst  <mark.probst@gmail.com>
9134
9135         * security-manager.c (mono_security_manager_get_methods):
9136         LinkDemandSecurityException now has 2 arguments instead of 3.
9137
9138 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
9139
9140         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
9141         platforms which need it.
9142
9143 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9144
9145         * sgen-gc.c: unregister thread data structures with a pthread_key_t
9146         dtor.
9147
9148 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
9149
9150         * threads.c: free the thread static data on thread exit.
9151
9152 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
9153
9154         * class.c: walk the hierarchy to find the generic definition for
9155         a class (fixes runtime part of bug #82498).
9156
9157 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
9158
9159         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
9160         ...
9161
9162         * image.c (mono_image_close): Here. Hopefully fixes #82510.
9163
9164 2007-08-24  Mark Probst  <mark.probst@gmail.com>
9165
9166         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
9167
9168 2007-08-24  Robert Jordan  <robertj@gmx.net>
9169
9170         * appdomain.c: don't perform the ':'->';' substitution on Win32.
9171
9172 2007-08-24  Jb Evain  <jbevain@novell.com>
9173
9174         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
9175         for byref types.
9176
9177 2007-08-24  Mark Probst  <mark.probst@gmail.com>
9178
9179         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
9180         #82286.
9181
9182 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
9183
9184         * assembly.c: Fix a warning.
9185         
9186 2007-08-23  Marek Habersack  <mhabersack@novell.com>
9187
9188         * appdomain.c: parse the <runtime> section looking for the probing
9189         element with the 'privatePath' attribute, which sets additional
9190         directories in which the runtime should look for assemblies.
9191
9192 2007-08-23  Robert Jordan  <robertj@gmx.net>
9193
9194         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
9195         Fixes #82499.
9196
9197 2007-08-23  Martin Baulig  <martin@ximian.com>
9198
9199         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
9200         _mono_debug_init_corlib() and remove it from the header file.
9201
9202 2007-08-23  Martin Baulig  <martin@ximian.com>
9203
9204         * mono-debug-debugger.c
9205         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
9206         don't notify the debugger about it.
9207
9208         * mono-debug-debugger.h
9209         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
9210
9211 2007-08-23  Robert Jordan  <robertj@gmx.net>
9212
9213         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
9214         Code is contributed under MIT/X11 license.
9215
9216 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9217
9218         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
9219
9220 2007-08-22  Martin Baulig  <martin@ximian.com>
9221
9222         * mono-debug.c: Store debugging info on a per-domain basis and
9223         free it on domain unload.  Add support for unloading symbol files.
9224
9225         * mono-debug.h
9226         (MonoDebugList): New typedef.
9227         (MonoSymbolTable):
9228         - add `data_tables and `type_table'.
9229         - replace 'symbol_files' and `num_symbol_files' with a
9230           `MonoDebugList *'.
9231         (mono_debug_data_table): Removed.
9232         (mono_debug_list_add): New public function.
9233         (mono_debug_list_remove): New public function.
9234         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
9235         (mono_debug_init_2_memory): Renamed into
9236         mono_debug_open_image_from_memory().
9237         (mono_debug_close_image): New public function.
9238         (mono_debug_domain_create): Likewise.
9239         (mono_debug_domain_unload): Likewise.
9240         (MONO_DEBUGGER_VERSION): Bump to 60.
9241
9242         * mono-debug-debugger.h
9243         (MonoDebuggerEvent):
9244         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
9245         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
9246         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
9247         - rename `THREAD_CREATED' and `THREAD_EXITED' into
9248           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
9249         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
9250           meaning.
9251         (mono_debugger_add_symbol_file): Removed.
9252         (mono_debugger_add_type): Removed.
9253         (mono_debugger_lookup_type): Removed.
9254         (mono_debugger_lookup_assembly): Removed.
9255
9256         * domain.c
9257         (mono_domain_create): Call mono_debug_domain_create().
9258         (mono_init_internal): Call mono_debug_init_corlib().
9259
9260         * assembly.c
9261         (mono_assembly_close): Call mono_debug_close_image().
9262
9263 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
9264
9265         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
9266         mmap call.
9267
9268 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
9269
9270         * sgen-gc.c: ensure section->pin_queue_end is initialized
9271         correctly when non pinning objects in the section have been found.
9272
9273 2007-08-22  Marek Habersack  <mhabersack@novell.com>
9274
9275         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
9276         containing a list of directories separated by ':'. MSDN docs say
9277         the directories should be separated with ';'. Part of a bugfix for
9278         bug #81446
9279
9280 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
9281
9282         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
9283         it should MonoType and not MonoClass.
9284
9285 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
9286
9287         * culture-info-table.h : regenerated.
9288
9289 2007-08-20  William Holmes  <billholmes54@gmail.com>
9290
9291         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
9292          to call ReplaceFile Kernel32 on windows or in io-layer.
9293         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
9294         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
9295          as an internal call.
9296
9297         Code is contributed under MIT/X11 license.
9298
9299 2007-08-20  Jb Evain  <jbevain@novell.com>
9300
9301         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
9302         and MONO_EXCEPTION_FIELD_ACCESS.
9303
9304         * debug-helpers.[c|h]: new mono_field_full_name function.
9305
9306 2007-08-20  Mark Probst  <mark.probst@gmail.com>
9307
9308         * class.c: Removed class_security_level() and moved it to
9309         security-core-clr.c.
9310
9311         * security-core-clr.c, security-core-clr.h: class_security_level()
9312         is now public and renamed to mono_security_core_clr_class_level().
9313         It also looks for security attributes in the classes a class is
9314         nested in.
9315
9316 2007-08-20  Mark Probst  <mark.probst@gmail.com>
9317
9318         * security-core-clr.c, security-core-clr.h: CoreCLR security
9319         utility functions.
9320
9321         * Makefile.am: Added security-core-clr.[ch].
9322
9323         * security-manager.c, security-manager.h: Functions and enum for
9324         setting and getting the security mode.
9325
9326         * class.c: CoreCLR security checks.
9327
9328 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
9329
9330         * icall-def.h, process.c, process.h: implemented icall to get
9331         user/system processor times.
9332
9333 2007-08-17  Mark Probst  <mark.probst@gmail.com>
9334
9335         * domain.c, threads.c, class-internals.h, domain-internals.h: New
9336         reader-lock-free jit_info_table.
9337
9338 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
9339
9340         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
9341
9342         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
9343
9344         * object-internals.h (MonoException): Add missing _data member.
9345
9346 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
9347
9348         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
9349         checking that only methods with matching qname or fqname are picked
9350         from implemented interfaces.
9351
9352 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9353
9354         * verify.c (do_newarr):added, do type verification of
9355         newarr ops, push the right value on the eval stack.
9356         * verify.c (mono_method_verify): use do_newarr
9357
9358
9359 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9360
9361         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
9362         factored the common code into get_boxable_mono_type, which
9363         is now using mono_type_get_full, this fixed byref related tests.
9364
9365 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9366
9367         * class.c: added mono_type_get_full, this function has the same
9368         behavior of mono_class_get_full but the returned MonoType has
9369         all metadata of the associated token in case of a typespec token.
9370         * class.c: added mono_type_retrieve_from_typespec, used by 
9371         mono_type_get_full to retrieve the token type.
9372         * class.c (mono_class_create_from_typespec): changed to use
9373         mono_type_retrieve_from_typespec.
9374         * class.c (mono_ldtoken): changed to use mono_type_get_full
9375         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
9376         * class-internals.h: exported mono_type_get_full for internal use.
9377
9378 2007-08-16  Jb Evain  <jbevain@novell.com>
9379
9380         * domain.c (supported_runtimes): add entry for
9381         the 'moonlight' runtime version.
9382
9383 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9384
9385         * verify.c (mono_method_verify): small typo sliped in.  
9386
9387 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9388
9389         * verify.c (do_unbox_value): added, do type verification of
9390         unboxing ops
9391         * verify.c (mono_method_verify): use do_unbox_value
9392
9393
9394 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9395
9396         * verify.c (dump_stack_value): fixed typo, was printing string
9397         instead of object on stack.
9398         * verify.c (do_box_value): moved the byref check up as it leads
9399         to invalid code and should be done earlier.
9400         * verify.c: improved error messages for and ldobj
9401
9402 2007-08-15  William Holmes  <billholmes54@gmail.com>
9403
9404         * marshal.c (emit_marshal_custom): Omit the call to 
9405           marshal_native_to_managed when calling native to managed 
9406           and the argument is specified as an out argument.
9407
9408         Code is contributed under MIT/X11 license.
9409
9410 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9411
9412         * verify.c: fixed the type checks for generics, function pointers and vectors.
9413         Added type verification for ldobj and ldtoken. The verifier
9414         would segfault if header or signature of a method contained references
9415         to non-existant types.
9416
9417 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
9418
9419         * marshal.c (cominterop_get_ccw): Patch from
9420         Bill Holmes to no walk up interface hierarchy. 
9421         All parent methods should be present in the interface for COM.
9422    
9423         Code is contributed under MIT/X11 license.
9424
9425 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
9426
9427         * marshal.c (emit_marshal_com_interface): Patch from
9428         Bill Holmes to handle COM Interfaces as return values
9429         for native->managed calls.
9430    
9431         Code is contributed under MIT/X11 license.
9432
9433 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
9434
9435         * marshal.c (cominterop_get_idispatch_for_object): Implement
9436         for runtime callable wrappers.
9437    
9438         Code is contributed under MIT/X11 license.
9439
9440 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
9441
9442         * pedump.c (main): changed from mono_init to mono_init_from_assembly
9443         so 2.0 types are accessible
9444
9445
9446 2007-08-13  Miguel de Icaza  <miguel@novell.com>
9447
9448         * domain.c (mono_init_internal): Call mono_assembly_load_friends
9449         once we load mscorlib.   Due to the order in which we initialize,
9450         the mono_assembly_load_full routine that loads mscorlib did not
9451         load friends.   We now load it once we load the
9452         mono_defaults.internals_visible_class class. 
9453
9454         * assembly.c: Expose the mono_load_friend_assemblies method.
9455
9456 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
9457
9458         * verify.c: improved the handling of boxing, better
9459         type checking for unary ops and conversion. Fix bug
9460         regarding managed pointer compatibility checking
9461
9462 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
9463
9464         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
9465
9466         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
9467
9468 2007-08-09  Raja R Harinath  <rharinath@novell.com>
9469
9470         * reflection.c (dup_type): Remove.
9471         * class.c (dup_type): Remove.
9472         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
9473         instead of the dodgy 'dup_type'.
9474         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
9475         handle the case where 'dup_type' needed the second argument.
9476
9477 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
9478
9479         * domain.c: Fix a warning.
9480
9481 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
9482
9483         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
9484         checking that methods with the same fqname are not overridden
9485         with a method from an ancestor.
9486
9487 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
9488
9489         * threads.c (free_thread_static_data_helper): Avoid a crash if
9490         thread->static_data is not yet set.
9491
9492 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
9493
9494         * marshal.c: Use correct image when emitting
9495         native wrapper for COM calls.
9496    
9497         Code is contributed under MIT/X11 license.
9498
9499 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
9500
9501         * icall-def.h, security.c, security.h :
9502           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
9503
9504 2007-08-07  Martin Baulig  <martin@ximian.com>
9505
9506         * mono-debug-debugger.h
9507         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
9508
9509         * domain.c (mono_domain_free): Call
9510         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
9511
9512 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
9513
9514         * verify.c (check_underflow, check_overflow): error message now returns IL offset
9515         * verify.c (in_same_block): code should test if either offset is inside the clauses
9516         * verify.c (mono_method_verify): push the exception into the eval stack of exception
9517         and filter blocks
9518
9519 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
9520
9521         * image.c (mono_image_close): Fix a leak.
9522
9523         * object.c (mono_runtime_invoke_array): Avoid using alloca.
9524
9525         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
9526
9527 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9528
9529         * domain.c, threads.c, threads-types.h: fix memory retention issue
9530         with thread static variables not being cleared on domain unload.
9531         Reuse thread static slots after domain unload.
9532
9533 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
9534
9535         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
9536         nullable type.
9537
9538         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
9539         now done in mono_runtime_invoke_array.
9540
9541         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
9542         receiver is a nullable type.
9543
9544         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
9545         generic parameter.
9546
9547 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
9548
9549         * marshal.c: Implement COM Objects as return type for 
9550         managed->unmanaged calls. Added Release calls for COM Object
9551         out/return values in managed->unmanaged calls.
9552
9553         Code is contributed under MIT/X11 license.
9554
9555 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
9556
9557         * threads.h, threads-type.h: move the hazard pointer declarations
9558         to the private header.
9559
9560 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9561
9562         * file-io.c, appdomain.c: memory leak fixes.
9563
9564 2007-08-02  Dick Porter  <dick@ximian.com>
9565
9566         * socket-io.c
9567         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
9568         SO_REUSEADDR setting into io-layer/sockets.c.
9569
9570 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
9571
9572         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
9573         from Object when called on a generic parameter. Fixes #82211.
9574
9575 2007-08-01  Dick Porter  <dick@ximian.com>
9576
9577         * file-io.c (convert_share): Test FileShare values bit-by-bit.
9578         Fixes bug 79250 yet again.
9579
9580 2007-07-30  Martin Baulig  <martin@ximian.com>
9581
9582         Merged the `debugger-dublin' branch.
9583
9584         * mono-debug.h
9585         (MonoDebugDataTable): New typedef.
9586         (MonoDebugMethodAddressList): New typedef.
9587         (MonoDebugWrapperData): Removed.
9588         (MonoDebugSymbolTable): Removed `current_data_table',
9589         `current_data_table_size', `current_data_table_offset'.
9590         (MonoDebugDataItemType): Moved into mono-debug.c.
9591         (MonoDebugMethodJitInfo): Remove `address'.
9592         (mono_debug_data_table): New global variable.
9593         (mono_debug_lookup_method_addresses): New public function.
9594         (mono_debug_find_method): Take a `MonoMethod *', not a
9595         `MonoDebugMethodInfo *'.
9596
9597         * mono-debug.c: Drop support for the old symbol tables.
9598
9599 2007-06-28  Martin Baulig  <martin@ximian.com>
9600
9601         * mono-debug.c (mono_debug_debugger_version): New public variable.
9602
9603 2007-07-31  William Holmes  <billholmes54@gmail.com>
9604
9605         * metadata.c Changed mono_type_create_from_typespec to not insert
9606           the type into the hash map until after
9607           do_mono_metadata_parse_type has completed.
9608         Fixes Bug #82194
9609         Code is contributed under MIT/X11 license.
9610
9611 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
9612
9613         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
9614         generic parameter. Fixes #82211.
9615
9616 2007-07-27  Jb Evain  <jbevain@novell.com>
9617
9618         * pedump.c (dump_metadata, dump_metadata_header): dump
9619         versions contained in the metadata header.
9620
9621 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
9622
9623         * threads.c: register small_id_table with the GC.
9624
9625 2007-07-27  Mark Probst  <mark.probst@gmail.com>
9626
9627         * threads.c, threads.h, class-internals.h, object-internals.h:
9628         Hazard pointers, to be used by lock-free parallel algorithms.
9629
9630 2007-07-26  Dick Porter  <dick@ximian.com>
9631
9632         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
9633         routine on non-windows platforms, as I've not managed to think of
9634         a non-kludgy way of doing this.  Finishes off bug 78739.
9635
9636 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
9637
9638         * object.c: properly setup interface_bitmap in proxy vtables.
9639
9640 2007-07-25  Marek Habersack  <mhabersack@novell.com>
9641
9642         * appdomain.c (get_shadow_assembly_location): do not use TickCount
9643         to create unique shadow copy target directories, use the domain's
9644         serial number instead. Each domain gets a unique target directory
9645         that way.
9646
9647         * domain.c (mono_domain_create): added code to increment domain
9648         shadow copy serial number and cache the value in the current
9649         domain structure.
9650
9651         * domain-internals.h (struct _MonoDomain): added a new field -
9652         shadow_serial to hold the serial number used in generation of
9653         shadow-copy directories. This is to make sure that the directory
9654         name is unique for each and every domain created. We avoid a race
9655         condition with overriding assemblies already in use by other app
9656         domains.
9657
9658 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
9659
9660         * class.c (mono_bounded_array_class_get): fixed memory leak when 
9661         binding generic parameters.
9662
9663 2007-07-24  Raja R Harinath  <rharinath@novell.com>
9664
9665         * metadata.c (do_mono_metadata_parse_generic_class): Use
9666         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
9667         error.
9668
9669 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
9670
9671         * loader.c, class-internals.h, reflection.c: removed the per-method
9672         generics hashtable: we use the global one through the call of
9673         mono_class_inflate_generic_method ().
9674
9675 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
9676
9677         * class.c, metadata.c, class-internals.h: introduce yet another
9678         generics global cache for inflated methods (fixes 98% of the perf
9679         issue in bug #81806).
9680
9681 2007-07-23  Raja R Harinath  <rharinath@novell.com>
9682
9683         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
9684         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
9685         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
9686         return a MonoGenericInst containing (a copy) of those types.
9687         (mono_metadata_inflate_generic_inst): Update to changes.
9688         (mono_metadata_parse_generic_inst): Likewise.
9689         (mono_get_shared_generic_inst): Likewise.
9690         * reflection.c (mono_class_bind_generic_parameters): Likewise.
9691         (mono_reflection_bind_generic_method_parameters): Likewise.
9692         * metadata-internals.h: Likewise.
9693         * icall.c (free_generic_context): Kill.
9694         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
9695
9696         * reflection.c (reflection_methodbuilder_to_mono_method): Use
9697         mono_metadata_type_dup.
9698         * marshal.c (mono_mb_create_method): Likewise.
9699
9700         * metadata.c (mono_metadata_type_dup): Rename from
9701         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
9702         MonoImage.  Handle a few more cases, esp. when no mempool is given.
9703         * marshal.c, metadata-internals.h: Update to changes.
9704
9705 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
9706
9707         * class.c: fixed a small leak for array classes and removed warning.
9708
9709 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
9710
9711         * loader.c (mono_method_get_param_token): Make this work on generic methods.
9712         Return 0x8000000 for return parameters. Fixes #82161.
9713
9714 2007-07-21  Marek Habersack  <grendello@gmail.com>
9715
9716         * appdomain.c (get_shadow_assembly_location): append the current
9717         ticks value to the path. Avoids overwriting the same assemblies by
9718         several threads at the same time.
9719
9720 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
9721         and Raja R Harinath  <rharinath@novell.com>
9722
9723         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
9724         Simplify slightly.
9725         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
9726         property for testing if a method is a generic method definition.
9727
9728 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
9729
9730         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
9731
9732 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9733
9734         * verify.c: used function from private branch, reverted to the one in class.h 
9735
9736 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9737
9738         * verify.c: a typo slipped in and the code wont compile
9739
9740 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9741
9742         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
9743         disabled box instruction as it is doing the wrong thing
9744         improved stack dump messages, now it is easier to debug type related issues
9745
9746
9747 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
9748
9749         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
9750
9751 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9752
9753         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
9754         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
9755         grouped with class and valuetype. This change will simply 
9756         the code as it should be handled just like unmanaged pointers.
9757
9758 2007-07-19  Mark Probst  <mark.probst@gmail.com>
9759
9760         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
9761
9762 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
9763
9764         * verify.c: several stack merge issues fixed, reference comparisons now
9765         check the type size. strict type check now works correctly.
9766         added more uses of IS_MANAGED_POINTER macro.
9767         fixed issues pointed by running the test suite against .net.
9768         
9769
9770 2007-07-19  Mark Probst  <mark.probst@gmail.com>
9771
9772         * class.c, loader.c, class-internals.h: Removed the
9773         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
9774         defines.
9775
9776         * icall.c: Better error checking in some internal reflection
9777         methods.
9778
9779 2007-07-18  William Holmes  <billholmes54@gmail.com>
9780
9781         * filewatcher.c : removed unused variable 'filename' in 
9782           ves_icall_System_IO_FSW_SupportsFSW
9783
9784 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
9785
9786         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
9787         obsolete, removed.
9788
9789 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
9790
9791         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
9792         
9793         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
9794
9795 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
9796
9797         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
9798         Implement generics support.
9799         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
9800
9801         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
9802         type_args and method_args arguments.
9803         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
9804         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
9805         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
9806
9807 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
9808
9809         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
9810           It adds a rootimage parameter to mono_reflection_get_type_internal,
9811           adds new function mono_reflection_get_type_with_rootimage and use
9812           the rootimage to resolve the types instead of the current image
9813
9814 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9815
9816         * culture-info-table.h: Forgot to update after r78304.
9817
9818 2007-07-13  Raja R Harinath  <rharinath@novell.com>
9819
9820         * class.c (mono_class_is_open_constructed_type)
9821         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
9822
9823 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
9824
9825         * class.c (mono_bounded_array_class_get):  method fails if used with
9826         an incomplete TypeBuilder enum (no basetype field), fixed it by 
9827         avoiding calculating the size for such array as it cannot be instantiated.
9828         Fix bug #82015
9829
9830 2007-07-12  Raja R Harinath  <rharinath@novell.com>
9831
9832         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
9833         field.
9834         * metadata.c, reflection.c: Update to changes.
9835
9836 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
9837
9838         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
9839         mono_class_is_valid_enum, they are used to valide a enum when loading.
9840         * reflection.c: used new functions to throw TypeLoadException when and
9841         invalid enum is build with TypeBuilder. Fixes #82018
9842   
9843 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
9844
9845         * object.c: forgot commit of mono_class_setup_methods () to access
9846         iface->methods.
9847         * object-internals.h: added a few more handy fields to
9848         MonoIMTCheckItem.
9849
9850 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
9851
9852         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
9853         iface->methods.
9854
9855 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
9856
9857         * class-internals.h, object-internals.h, object.c: IMT-based
9858         interface invocation core from Massimiliano Mantione
9859         (massi@ximian.com) with a reworked arch-specific interface,
9860         bsearch implementation and a few bugfixes and memory savings by me.
9861
9862 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
9863
9864         * class.c (mono_class_create_from_typedef): mono would segfault if 
9865         an enum did not have a __value field. It now throws a TypeLoadException
9866         for such cases. Fix bug #82022
9867
9868 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9869
9870         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
9871
9872 2007-07-09  Mark Probst  <mark.probst@gmail.com>
9873
9874         * class.c (mono_class_init): If a class is already inited but has
9875         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
9876
9877 2007-07-09  Mark Probst  <mark.probst@gmail.com>
9878
9879         * class.c: Properly handle the case of an unimplemented interface
9880         method.  Fixes: 81673.
9881
9882 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
9883
9884         * class-internals.h, object.c: cleanup patch from massi: use
9885         MonoVTable->interface_bitmap since the vtable interfaces offset array
9886         is going away.
9887
9888 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9889
9890         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
9891         GetMDStreamVersion icall instead.
9892
9893 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
9894
9895         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
9896         not use mono_dl_build_path() with a full library name: makes
9897         fallbacks to libgaim and libfam work.
9898
9899 2007-07-06  William Holmes  <billholmes54@gmail.com>
9900
9901         * assembly.c: Added a continue statement in probe_for_partial_name when
9902          parse_assembly_directory_name fails.  Fixes : 82002
9903
9904 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
9905
9906         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
9907         and added a verification  for TYPEDBYREF.
9908         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
9909         make native int interchangeable with int32 and some small cleanup and formating.
9910         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
9911         handle byref of byref.
9912         * verify.c (push_local): handle byref of byref.
9913         * verify.c (do_binop): invalid mix of values is unverifiable
9914         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
9915         added visibility checks
9916         * verify.c (field related method): added visibility checks
9917         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
9918
9919 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
9920
9921         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
9922         string.
9923
9924 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
9925
9926         * profiler.c (mono_profiler_load): Fix an off-by-one error.
9927
9928         * marshal.c (emit_marshal_string): When returning a string from managed code,
9929         allways make a copy even for unicode strings. Fixes #81990.
9930
9931 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
9932
9933         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
9934         of byref generic inst types (bug #81997).
9935
9936 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
9937
9938         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
9939         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
9940
9941 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
9942
9943         * marshal.c (emit_marshal_string): Add support for unicode strings in
9944         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
9945
9946 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
9947
9948         * verify.c: field load/store are now verified, missing only access checks now
9949
9950 2007-06-28  Martin Baulig  <martin@ximian.com>
9951
9952         * mono-debug.c (mono_debug_debugger_version): New public variable.
9953
9954 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
9955
9956         * locales.c: When constructing DateTimeFormat or NumberFormat for
9957         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
9958         MonoCultureInfo contructed from the current locale is always
9959         read-only and has UseUserOverride set to true. All MonoCultureInfo
9960         instances returned for GetCultures have both IsReadOnly and
9961         UseUserOverride set to true. Fixes part of bug #81930.
9962
9963 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
9964
9965        * icall-def.h: Update System.__ComObject icalls
9966        * marshal.c: Avoid managed transition (and object creation)
9967        when looking up COM interface in RCW.
9968        * marshal.h: Ditto.
9969        
9970        Code is contributed under MIT/X11 license.
9971
9972 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
9973
9974         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
9975         to avoid crashes during assembly unloading.
9976
9977 2007-06-22  Raja R Harinath  <rharinath@novell.com>
9978
9979         Fix MethodInfo.IsGenericMethodDefinition
9980         * reflection.c (mono_reflection_bind_generic_method_parameters):
9981         Rearrange code to ensure we always uses a generic method definition.
9982         * class.c (mono_class_inflate_generic_method_full): Set
9983         'generic_container' field only for generic method definitions.
9984         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
9985         Use presense of 'generic_container' field as indication of being a
9986         generic method definition.
9987
9988 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
9989
9990         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9991
9992         * object-internals.h: Reflect changes in the layout of the managed Delegate
9993         class.
9994         
9995         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
9996         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
9997         runtime memory used by the dynamic method. Fixes #77146.
9998
9999 2007-06-21  Dick Porter  <dick@ximian.com>
10000
10001         * file-io.h: 
10002         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
10003         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
10004         81767.
10005
10006 2007-06-21  Raja R Harinath  <rharinath@novell.com>
10007
10008         * reflection.c (method_encode_methodspec): Add a tripwire.
10009         * class.c (inflate_generic_type): The fully open generic type is
10010         not the same as the generic type definition.
10011
10012 2007-06-21  Martin Baulig  <martin@ximian.com>
10013
10014         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
10015
10016         * mono-debug-debugger.h
10017         (MonoDebuggerBreakpointInfo): Removed.
10018         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
10019         (mono_debugger_remove_breakpoint): Likewise.
10020         (mono_debugger_breakpoint_callback): Likewise.
10021         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
10022
10023 2007-06-21  Raja R Harinath  <rharinath@novell.com>
10024
10025         * metadata.c (mono_metadata_lookup_generic_class): The fully open
10026         generic type is not the same as the generic type definition.
10027         * class.c (mono_generic_class_get_class): Likewise.
10028
10029 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
10030
10031         * icall.c: The second argument to 
10032         System.Reflection.MethodBase.GetMethodFromHandleInternalType
10033         is a MonoType not a MonoClass.
10034
10035 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
10036
10037         * verify.c: support for function pointers in the verifier
10038
10039 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
10040
10041         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
10042
10043 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
10044
10045         * assembly.c: removed Mono.Data.SqliteClient from the list of
10046         forward-compatible assemblies as it breaks the ABI (bug #81899).
10047
10048 2007-06-19  Raja R Harinath  <rharinath@novell.com>
10049
10050         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
10051         lookup/update with the loader lock.
10052         * reflection.c (mono_class_bind_generic_parameters): No need to
10053         protect mono_metadata_lookup_* with the loader lock.
10054         * class.c (inflate_generic_type): Likewise.
10055         
10056         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
10057         on a generic instantiated type.
10058
10059 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
10060
10061         *verify.c: produce meanfull error messages on verification error
10062         *verify.c: fixed some cases of verification errors reported as validation errors
10063         *pedump.c: fixed the error name array, now it shows validation errors properly
10064         *verify.h: fixed the contant that should be used for verification errors
10065
10066 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
10067
10068         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
10069         for bug #77596, 81858 and 80743 (generics data structures on domain
10070         unload).
10071
10072 2007-06-15  Raja R Harinath  <rharinath@novell.com>
10073
10074         Avoid allocating 'MonoGenericContext' on the heap.
10075         * class-internals (_MonoMethodInflated::context): Make field
10076         inline, not a pointer.
10077         * loader.c (method_from_methodspec): Allocate 'new_context' on the
10078         stack.  Use the context embedded within the inflated method as the
10079         hash key, rather than 'new_context'.
10080         * class.c (inflate_generic_context): Simplify.  Return a struct
10081         rather than allocating on the heap.
10082         (mono_class_inflate_generic_method_full): Update to changes.  Now,
10083         doesn't salt away a copy of the context -- simplifying the
10084         lifetime rules of a 'MonoGenericContext *'.
10085         (mono_method_get_context): Return pointer to embedded context.
10086         (setup_generic_array_ifaces): Allocate temporary context on stack.
10087         * reflection.c (inflate_mono_method): Likewise.
10088         (mono_reflection_bind_generic_method_parameters): Likewise.
10089         Use the context embedded within the inflated method as the hash key.
10090
10091         Avoid a source of allocation of 'MonoGenericContext'.
10092         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
10093         and 'cached_context' fields into embedded 'MonoGenericContext' field.
10094         * class.c: Update to changes.
10095         (mono_generic_class_get_context): Simplify drastically.  Now just
10096         returns a pointer to the field.
10097         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
10098         argument as a const pointer.
10099         (mono_metadata_generic_context_equal): Likewise.
10100         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
10101         Update to changes.
10102
10103 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
10104
10105         * verify.c improved the handling of brtrue/brfalse, factored out common code
10106
10107 2007-06-14  Raja R Harinath  <rharinath@novell.com>
10108
10109         Kill MonoGenericMethod.
10110         * class-internals.h (MonoGenericContext::method_inst): Rename from
10111         'gmethod' and convert to a MonoGenericInst.
10112         (MonoGenericMethod): Remove.
10113         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
10114         * loader.c (method_from_methodspec): Update to changes.  Use a
10115         MonoGenericContext as the key to the hashtable.
10116         * metadata.c (mono_metadata_generic_context_equal): Rename from 
10117         'mono_metadata_generic_method_equal' and take MonoGenericContext.
10118         (mono_metadata_generic_context_hash): Likewise from
10119         'mono_metadata_generic_method_hash'.  Change hash function.
10120         (mono_metadata_load_generic_params): Update to changes.
10121         (mono_get_shared_generic_method): Remove.
10122         * metadata-internals.h (mono_get_shared_generic_method): Remove.
10123         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
10124         (inflate_generic_context): Likewise.
10125         (mono_class_inflate_generic_method_full): Likewise.
10126         (setup_generic_array_ifaces): Likewise.
10127         (mono_class_create_from_typespec): Likewise.
10128         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
10129         (method_encode_methodspec): Update callsite.
10130         (reflection_methodbuilder_to_mono_method): Update to changes.
10131         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
10132         MonoGenericContext as the key to the hashtable.
10133         (inflate_mono_method): Update to changes.
10134
10135         * class-internals.h (MonoGenericMethod::container): Remove.
10136         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
10137
10138 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
10139
10140         * profiler-private.h, profiler.c, profiler.h: added API to profile
10141         exception events.
10142
10143 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
10144
10145         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
10146
10147 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
10148
10149         * verify.c: method invocation is now validated, now we verify parameter types on stack.
10150         Fixed overflow and underflow not aborting the verification process.
10151
10152 2007-06-13  Mark Probst  <mark.probst@gmail.com>
10153
10154         * class-internals.h (MonoStats): Added stats entries for dynamic
10155         code allocations.
10156
10157 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
10158
10159         * loader.c (mono_free_method): Free header->locals and header->clauses.
10160
10161         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
10162         dynamic case.
10163
10164         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
10165
10166         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
10167
10168 2007-06-12  Raja R Harinath  <rharinath@novell.com>
10169
10170         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
10171         the tables.
10172
10173 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10174
10175         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
10176
10177 2007-06-11  Raja R Harinath  <harinath@gmail.com>
10178
10179         MonoGenericMethod on a diet
10180         * class-internals.h (_MonoMethodInflated::reflection_info): Move
10181         here ...
10182         (_MonoGenericMethod::reflection_info): ... from here.
10183         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10184         Update to changes.
10185         * reflection.c (inflate_mono_method): Likewise.
10186         (mono_reflection_bind_generic_method_parameters): Likewise.
10187
10188 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10189
10190         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
10191         *verify.c: factored long ldarg forms to share code with short forms
10192
10193 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10194
10195         *verify.c: fixed code formating factored some duplicate code
10196         into a new function
10197
10198         *verify.h: fixed binary incompatibility introduced earlier
10199
10200         *pedump.c: fixed formating
10201
10202 2007-06-11  Raja R Harinath  <harinath@gmail.com>
10203
10204         Fix assertion when disassembling Mono.C5.dll
10205         * loader.c (method_from_methodspec): Avoid inflating a method
10206         twice with the same context.  If the methodref is inflated, use
10207         the declaring method instead.
10208
10209         * class.c (mono_class_from_generic_parameter): Fix case similar to
10210         bug #81830 handled below, but for method containers.
10211
10212 2007-06-10  Raja R Harinath  <harinath@gmail.com>
10213
10214         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
10215         get_shared_generic_class.  Directly inflate the instance.
10216         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
10217         (inflate_generic_class): Delete.
10218         (get_shared_generic_class): Delete.  Move setting of
10219         'cached_class' and 'cached_context' ...
10220         * metadata.c (mono_metadata_lookup_generic_class): ... here.
10221
10222         * metadata.c (mono_metadata_lookup_generic_class): Change
10223         signature to take the components of a MonoGenericClass rather than
10224         an allocated MonoGenericClass.  Change semantics to be intern-like.
10225         * reflection.c (mono_class_bind_generic_parameters): Update to
10226         changes.  Make locking region tighter.
10227         * class.c (inflate_generic_class): Update to changes.
10228         (get_shared_generic_class): Likewise.
10229         * metadata-internals.h: Likewise.
10230
10231         * reflection.c (mono_class_bind_generic_parameters): Take and
10232         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
10233         (mono_reflection_bind_generic_parameters): Use
10234         'mono_class_bind_generic_parameters' rather than duplicate the code.
10235         * class.c (mono_bounded_array_class_get): Update to changes.
10236         * object-internals.h: Likewise.
10237
10238         * reflection.c (mono_class_bind_generic_parameters): Only support
10239         parameterizing generic type definitions.  Remove support for other
10240         open types.
10241
10242 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
10243
10244         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
10245
10246         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
10247         in the dynamic case.
10248
10249 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
10250
10251         * threads.c: When cleaning up thread, reset the Background bit.
10252         Fixes bug #81720.
10253
10254 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
10255
10256        * metadata.c: Move variable declarations to top of scope.
10257        * verify.c: Move variable declarations to top of scope.
10258
10259        Code is contributed under MIT/X11 license.
10260
10261 2007-06-08  Raja R Harinath  <rharinath@novell.com>
10262
10263         * reflection.c (mono_class_bind_generic_parameters): Replace
10264         open-coded loop with mono_metadata_inflate_generic_inst.
10265
10266         * class.c (get_shared_generic_class): Don't call
10267         mono_get_shared_generic_inst.  Use the container's own
10268         'class_inst'.
10269
10270         * metadata.c (mono_metadata_load_generic_params): Move
10271         initialization of 'context' field here from ...
10272         * class.c (mono_class_create_from_typedef): ... here, and ...
10273         * loader.c (mono_get_method_from_token): ... here.
10274
10275         * class.c (get_shared_generic_class): Rename from
10276         mono_get_shared_generic_class and make static.
10277         (mono_get_shared_generic_inst): Move to metadata.c.
10278         * loader.c (mono_get_shared_generic_method): Likewise.
10279         * class-internals.h, metadata-internals.h: Update to changes.
10280
10281         Fix #81830
10282         * class.c (mono_class_from_generic_parameter): Don't assume a
10283         generic container owner exists.  Generic containers from monodis
10284         don't have any.
10285
10286 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
10287
10288         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
10289         * verify.h: new typedefs to returns the non-verifiable status
10290         * verify.c: initial implementation of generics, stack merging and object compatibility check
10291
10292 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10293
10294         * class.c, image.c, class-internals.h (MonoImage): class_cache is
10295         a MonoInternalHashTable again (fixed bug in internal hash table
10296         code).
10297
10298 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10299
10300         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
10301         MonoInternalHashTable again (fixed bug in internal hash table
10302         code).
10303
10304 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10305
10306         * class.c, image.c, class-internals.h, domain.c,
10307         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
10308         changes.  Have to figure out what makes them break the SWF
10309         regression.
10310
10311 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10312
10313         * class.c, image.c, class-internals.h (MonoImage): class_cache is
10314         a MonoInternalHashTable now.
10315
10316 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10317
10318         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
10319         MonoInternalHashTable now.
10320
10321 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
10322
10323         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
10324         invoke_impl code.
10325
10326         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
10327
10328         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
10329         dependent trampoline.
10330
10331         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10332
10333         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
10334
10335 2007-05-29  Robert Jordan  <robertj@gmx.net>
10336
10337         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
10338
10339 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
10340
10341         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
10342
10343 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
10344
10345        * marshal.c: Fix interface lookup loops for
10346        cominterop_get_com_slot_for_method and 
10347        cominterop_get_method_interface. Only need to lookup
10348        if type is a class, else use interface type method is on.
10349
10350        Code is contributed under MIT/X11 license.
10351
10352 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
10353
10354         * reflection.c: HasSecurity can be present even if no specially 
10355         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
10356         SecurityAttribute). Fix CAS regression tests on buildbot.
10357
10358 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
10359
10360        * appdomain.c: Add configure checks for header files.
10361        * image.c: Add configure checks for header files.
10362        * file-io.c: Add configure checks for header files.
10363        * debug-mono-symfile.c: Add configure checks for header files.
10364        * threadpool.c: Add configure checks for header files.
10365        * console-io.c: Add configure checks for header files.
10366        * profiler.c: Add configure checks for header files.
10367        * rawbuffer.c: Add configure checks for header files.
10368        * icall.c: Add configure checks for header files.
10369        * rand.c: Add configure checks for header files.
10370        * socket-io.c: Add configure checks for header files.
10371
10372        Code is contributed under MIT/X11 license.
10373
10374 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
10375
10376         * reflection.c (mono_custom_attrs_from_builders): Remove the 
10377         assertion as it breaks the build.
10378         
10379         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
10380
10381         * reflection.c (lookup_custom_attr): Make a copy here too.
10382
10383         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
10384         dynamic images.
10385
10386         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
10387         images.
10388
10389         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
10390         info.
10391
10392 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
10393
10394         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
10395         (load_cattr_value): Ditto.
10396
10397 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
10398
10399         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
10400
10401 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
10402
10403         * threads.c: In "start_wrapper", set apartment_state to MTA if
10404         apartment_state is Unknown and we're running on 2.0 profile or
10405         higher.
10406         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
10407         to main method, then set apartment_state to Unknown on 1.0 profile,
10408         and MTA on 2.0 profile.
10409
10410 2007-05-16  Jb Evain  <jb@nurv.fr>
10411
10412         * class-internals.h (MonoDefaults): Add an attribute_class and
10413           customattribute_data_class.
10414         * domain.c (mono_init_internal): Populate them.
10415         * reflection.c: Use them to remove duplicates. Make a vew
10416         MonoClass variables `static'.
10417
10418 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
10419
10420         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
10421         step in implementing IMT, so that all isinst checks now can go
10422         through the bitmap.
10423         This was needed because vtables for TransparentProxy need to look
10424         like the vtable of the "target" class, so they need to point to
10425         its interface bitmap directly.
10426
10427         * object.c: inside "mono_class_create_runtime_vtable" and
10428         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
10429
10430 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10431
10432         * object-internals.h
10433           culture-info.h : added territory field in MonoCulture and
10434           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
10435         * locales.c : fill territory field above too.
10436         * culture-info-table.h : regenerated.
10437
10438 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
10439
10440         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
10441         Fixes #81599.
10442
10443 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
10444
10445         * object.c: Always initialize apartment, even if 
10446         there is no custom attributes on entry point.
10447         
10448         Code is contributed under MIT/X11 license.
10449
10450 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
10451
10452         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
10453         * metadata.c: If no encoding is set, check for unicode
10454         on class.
10455         
10456         Code is contributed under MIT/X11 license.
10457
10458 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
10459
10460         * threads.c: Handle if mono_thread_current returns NULL 
10461         
10462         Code is contributed under MIT/X11 license.
10463
10464 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
10465
10466         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
10467         in start_wrapper. Added mono_thread_init_apartment_state and
10468         mono_thread_cleanup_apartment_state.
10469         * object.c: Initialize thread apartment state on main thread
10470         by checking for STAThreadAttribute on entry point.
10471         * object-internals.h: Add apartment_state field to MonoThread.
10472         * threads-types.h: Add unmanaged definition of 
10473         System.Threading.ApartmentState, MonoThreadApartmentState.
10474         
10475         Code is contributed under MIT/X11 license.
10476         
10477 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
10478
10479         * class.c: Fix windows build.
10480         * class-internals.h: Fix windows build.
10481         
10482         Code is contributed under MIT/X11 license.
10483
10484 2007-05-08  Robert Jordan  <robertj@gmx.net>
10485
10486         * process.c (CreateProcess_internal):
10487         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
10488         .CreateNoWindow was specified. Fixes #81496.
10489
10490 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
10491
10492         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
10493         step in implementing IMT, replaced it with two compact arrays
10494         (interfaces_packed and interface_offsets_packed) and a bitmap that
10495         is used for isinst checks (interface_bitmap).
10496
10497         * class.c: (compare_interface_ids): compare function to pass to
10498         bsearch when looking for an interface with a given id.
10499         (mono_class_interface_offset): reimplemented using bsearch on
10500         interfaces_packed, getting the offset from interface_offsets_packed.
10501         (print_implemented_interfaces): utility debugging function.
10502         (setup_interface_offsets): reworked to initialize interfaces_packed,
10503         interface_offsets_packed and interface_bitmap.
10504
10505         * object.c: replaced all accesses to "MonoClass.interface_offsets"
10506         with uses of interfaces_packed and interface_offsets_packed.
10507
10508 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
10509
10510         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
10511         mono_class_interface_offset prototype to wrap all accesses to
10512         "MonoClass.interface_offsets".
10513
10514         * class.c: Implemented mono_class_interface_offset, and wrapped all
10515         accesses to "MonoClass.interface_offsets".
10516
10517         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
10518         "MonoClass.interface_offsets".
10519
10520 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
10521
10522         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
10523         GetMethodFromHandle overloads (bug #78637).
10524
10525 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
10526
10527         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
10528         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
10529
10530 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
10531
10532         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
10533         #81498.
10534
10535         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
10536         gracefully.
10537         (mono_custom_attrs_from_index): Ditto.
10538
10539         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
10540         Fixes #81501.
10541
10542 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
10543
10544         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
10545         is now allocated from a mempool.
10546
10547 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
10548
10549         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
10550         caller holds threads_lock, leading to deadlocks. Fixes #81476.
10551
10552 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
10553
10554         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
10555         mono_loader_clear_error () too late. Fixes #81463.
10556
10557 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
10558
10559         * culture-info-table.h : regenerated.
10560
10561 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
10562
10563         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
10564         is missing.
10565
10566 2007-04-25  Dick Porter  <dick@ximian.com>
10567
10568         * Makefile.am: Put the mingw enforced-optimisation back into the
10569         PLATFORM_WIN32 section.
10570
10571 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
10572
10573         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
10574         patch.
10575
10576         * image.c (mono_image_load_module): New API function to load a module reference.
10577
10578         * image.c (load_modules): Load modules lazily. Fixes #80812.
10579
10580         * class.c (mono_class_from_typeref): Use mono_image_load_module.
10581         
10582         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
10583
10584         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
10585         to mono_image_load_module_dynamic.
10586
10587 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
10588
10589         * marshal.c: Fix calling convention for CCW on non-windows
10590         platforms. STDCALL on windows, CDECL everywhere else to work 
10591         with XPCOM and MainWin COM.
10592         
10593         Code is contributed under MIT/X11 license.
10594
10595 2007-04-23  Martin Baulig  <martin@ximian.com>
10596
10597         Fix #80969.
10598
10599         * loader.c
10600         (method_from_memberref): Added `gboolean *used_context' argument.
10601         (mono_get_method_from_token): Likewise.
10602         (mono_get_method_full): Don't insert the method in the cache when
10603         `used_context' is true.
10604
10605 2007-04-23  Raja R Harinath  <rharinath@novell.com>
10606
10607         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
10608
10609         * reflection.c (mono_reflection_bind_generic_parameters): Don't
10610         create new MonoTypes for returned types.
10611         * class.c (mono_generic_class_get_class): Export mono-internal.
10612         * class-internals.h: Update to changes.
10613
10614 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
10615
10616         * threadpool.c, threadpool.h, icall-def.h: patch from
10617         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
10618
10619 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
10620
10621         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
10622         
10623         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
10624
10625         * threads.c (mono_thread_get_stack_bounds): New helper function.
10626
10627         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
10628         Correctly compute stack bounds when attaching. Fixes #81394.
10629
10630 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
10631
10632         * reflection.c: fix handling of doubles in custom attributes
10633         for the arm-fpa format (bug #81368).
10634
10635 2007-04-18  Raja R Harinath  <rharinath@novell.com>
10636
10637         * reflection.c (assembly_add_win32_resources): Mildly relax an
10638         bounds check to let the end pointer point just past the end of the
10639         allocated buffer.  (may fix #81384)
10640
10641 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
10642
10643         * culture-info-table.h : regenerated.
10644
10645 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
10646
10647         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
10648         the thread is aborted early.
10649
10650 2007-04-05  Dick Porter  <dick@ximian.com>
10651
10652         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
10653         FindFirstFile()/FindNextFile() to find entries.  This lets the
10654         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
10655         81038.
10656
10657         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
10658         the parameters of
10659         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
10660
10661 2007-04-04  Martin Baulig  <martin@ximian.com>
10662
10663         * debug-helpers.c
10664         (mono_method_desc_full_match): Add support for nested classes.
10665
10666 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
10667
10668         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
10669
10670 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
10671
10672         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
10673         waiting for too many threads.
10674
10675 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
10676
10677         * environment.c: Fix return value check on uname so we can get the 
10678         executing version on Solaris operating systems.
10679
10680 2007-03-28  Jb Evain  <jbevain@gmail.com>
10681
10682         * class.c (mono_type_get_name_recurse): Complete the
10683         fix for the creation of assembly qualified names for
10684         pointer types. Fixes #81208.
10685
10686 2007-03-27  Dick Porter  <dick@ximian.com>
10687
10688         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
10689         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
10690         changed.
10691
10692         * threads.c
10693         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
10694         the value of ReleaseMutex().
10695
10696 2007-03-27  Dick Porter  <dick@ximian.com>
10697
10698         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
10699         in little-endian order, not network endian, so must be converted
10700         to host endian here.  Fixes bug 80593.
10701
10702 2007-03-22  Jb Evain  <jbevain@gmail.com>
10703
10704         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
10705         qualified names for pointer types. Fixes #81208.
10706
10707 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
10708
10709         * marshal.c: Add support for PreserveSigAttribute. 
10710         
10711         Code is contributed under MIT/X11 license.
10712
10713 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
10714
10715         * process.c: Fix endianness issues. Fixes #81126.
10716
10717         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
10718         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
10719
10720         * image.c (mono_image_lookup_resource): Make this work on big-endian
10721         machines.Change API contract so the caller needs to free the return value.
10722         
10723         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
10724         API change.
10725         
10726 2007-03-14  Martin Baulig  <martin@ximian.com>
10727
10728         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
10729         mono_type_get_desc() as well.
10730
10731 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
10732
10733         * icall.c:  Fix environ access in VS.  
10734         
10735 2007-03-13  Alp Toker  <alp@atoker.com>
10736
10737         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
10738         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
10739         #63841.
10740
10741 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
10742
10743         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
10744         circular references among dynamic methods. Fixes #81091.
10745
10746         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
10747
10748 2007-03-09  Martin Baulig  <martin@ximian.com>
10749
10750         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
10751
10752 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
10753
10754         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
10755         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
10756         
10757         Code is contributed under MIT/X11 license.
10758         
10759 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
10760
10761         * loader.c: Reapply patch for bug #79424.
10762
10763 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
10764
10765         * metadata.c (mono_type_to_unmanaged): Only convert object to
10766         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
10767
10768 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
10769
10770         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
10771         (and incorrectly set) is_reference field from MonoGenericInst.
10772
10773 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
10774
10775         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
10776         a little earlier.
10777
10778         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
10779
10780         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
10781
10782 2007-03-05  Miguel de Icaza  <miguel@novell.com>
10783
10784         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
10785         FileOptions.1 value to mean "temporary", map that to
10786         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
10787
10788         Fixes 80688
10789
10790 2007-03-03  Marek Habersack  <mhabersack@novell.com>
10791
10792         * appdomain.c: implement MS .Net style shadow copying. Copies of
10793         the assemblies are made in a subdirectory of the dynamic base
10794         directory, the assembly names are preserved.
10795         Copy .mdb and .config files along with the assemblies being shadowed.
10796
10797 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
10798
10799         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
10800         (emit_marshal_handleref): Ditto.
10801
10802         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
10803         on Visual C++. Fixes #80671.
10804
10805 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
10806
10807         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
10808         for clone operations.
10809
10810 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
10811
10812         * marshal.c: Fix warnings.
10813
10814 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
10815
10816         * loader.c: allow case-insensitive matching of the dll name
10817         in dllmap handling when prefixed with "i:".
10818
10819 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
10820
10821         * threads.c: Fix #ifdef for dummy_apc function for VS.
10822
10823 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
10824
10825         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
10826
10827 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
10828         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
10829         giving precedence to the methods with a fully qualified name
10830         (InterfaceName.MethodName) when building the interface sections
10831         of the vtable.
10832
10833 2007-02-16  Dick Porter  <dick@ximian.com>
10834
10835         * threadpool.c (append_job): Fix fast-path array handling, so it's
10836         less likely the array will grow exponentially when the load is
10837         heavy.
10838
10839 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
10840
10841         * metadata-internals.h, loader.c: fix dllmap lookup order
10842         for non-function maps, too, and prepare for fallback code.
10843
10844 2007-02-12  Robert Jordan  <robertj@gmx.net>
10845
10846         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
10847         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
10848         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
10849         GlobalFree. Fixes a part of bug #77075.
10850
10851 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
10852
10853         * loader.c: implemented typedef parent in field memberref.
10854
10855 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
10856
10857         * marshal.c: Fix warnings and remember to call Release on
10858         IUnknown of RCW.
10859         
10860         Code is contributed under MIT/X11 license.
10861
10862 2007-02-10  Miguel de Icaza  <miguel@novell.com>
10863
10864         * class-internals.h: Add MonoHandleRef definition, and
10865         handleref_class to mono_defaults. 
10866
10867         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
10868         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
10869
10870         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
10871         (do nothing on this stage)
10872         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
10873         (emit_marshal_handleref): New method, used for argument handling
10874         of HandleRefs. 
10875
10876 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
10877
10878         * class.c (mono_class_setup_parent): Lazily init com types.
10879         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
10880         init com types.
10881         * object.c (mono_remote_class_vtable): Lazily init com types.
10882         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
10883         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
10884         * domain-internals.h: Expose mono_init_com_types.
10885         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
10886         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
10887         Add support for COM Callable Wrapper marshalling.
10888         * marshal.h: Add icall definitions.
10889         * gc.c: Handle freeing of CCWs in finalizer code.
10890         
10891         Code is contributed under MIT/X11 license.
10892
10893 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
10894
10895         * reflection.c: changed all the signature encoding code to use
10896         a variable-sized buffer.
10897
10898 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
10899
10900         * marshal.c: locking fixes: never take the loader lock
10901         or other runtime locks when holding the marshal lock
10902         (fixes bug#80664).
10903
10904 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
10905
10906         * marshal.c: make the delegate function pointer mapping
10907         work for the moving GC.
10908
10909 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
10910
10911         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
10912         for bug #80618.
10913
10914 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
10915
10916         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
10917         gmodule.
10918
10919 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
10920
10921         * threadpool.c: made the code moving-GC safe.
10922
10923 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
10924
10925         * assembly.c, boehm-gc.c, class-internals.h, class.c,
10926         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
10927         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
10928         warning cleanup.
10929         * reflection.c: warning cleanup, some threading and moving GC fixes.
10930
10931 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
10932
10933         * class.c, loader.c: create the needed Set/Get/Address array methods
10934         as well as the .ctors in mono_class_init (), fixes bug #80567.
10935
10936 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
10937
10938         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
10939         we doesn't decrease its alignment. Should fix the sparc build.
10940
10941 2007-01-24  Dick Porter  <dick@ximian.com>
10942
10943         * socket-io.c
10944         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10945         Create the returned object if we need to ignore an unsupported
10946         socket option.  Fixes a segfault reported by Atsushi.
10947
10948 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
10949
10950         * class.c, object.c: restrict GC-tracked fields to
10951         UIntPtr fields used inside corlib, so we provide better
10952         type info to the GC and also allow broken packing as in
10953         bug #80580.
10954
10955 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
10956
10957         * sgen-gc.c: removed duplicated function.
10958
10959 2007-01-19  Miguel de Icaza  <miguel@novell.com>
10960
10961         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
10962         value that means that the value is not supported, but that we
10963         should not return a failure, but instead report this as a
10964         successful operation.
10965
10966 2007-01-19  Raja R Harinath  <rharinath@novell.com>
10967
10968         Fix tests/bug79956.2.il
10969         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
10970         (mono_generic_class_get_class): If the generic definition in an
10971         enum, copy over other fields related to it.
10972
10973 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
10974
10975         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
10976         genericinst enums (bug #79215).
10977
10978 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
10979         * class.c: Fix bug 80307.
10980
10981 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
10982
10983         * image.c: if the file table is not present, try to load
10984         all the modules, since we don't have info about them
10985         having or not metadata (bug #80517).
10986         * assembly.c: allow mono_assembly_load_references () to
10987         work for netmodules.
10988
10989 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
10990
10991         * image.c, metadata-internals.h, object.c: execute module
10992         cctors when running on the 2 runtime if present (bug #80487).
10993
10994 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
10995
10996         * icall.c: optimized InitializeArray() on bigendian.
10997
10998 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
10999
11000         * icall.c: fix for the broken ARM FPA double format.
11001
11002 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
11003
11004         * icall.c: handle endian issues for r4 and r8 types, too, in
11005         the InitializeArray() icall.
11006
11007 2007-01-15  Miguel de Icaza  <miguel@novell.com>
11008
11009         * loader.c (mono_loader_error_prepare_exception): Clear the error
11010         once we have extracted the information from it, do this before we
11011         call into the JIT's class loading mechanisms.
11012
11013         * object.c (mono_class_create_runtime_vtable): Do not clear the
11014         loader error before calling mono_class_get_exception_for_failure
11015         as the loader error is needed inside
11016         mono_class_get_exception_for_failure to throw the error (thinko).
11017
11018         Fixes #80521
11019         
11020 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
11021
11022         * reflection.c: align fields rva data so it's faster to load at
11023         runtime.
11024
11025 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11026
11027         Prepare to simplify GenericMethod handling.
11028         * class-internals.h (mono_method_get_context): New accessor function.
11029         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
11030         rather than directly accessing '->context' field.
11031
11032         * class-internals.h (_MonoGenericParam.method): Move ...
11033         (_MonoGenericContainer): ... here.  Add into union with klass field.
11034         * class.c, icall.c, loader.c, metadata.c, reflection.c:
11035         Update to changes.
11036
11037 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
11038
11039         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
11040         the wrapper type enum and reduce relocations.
11041
11042 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11043
11044         * reflection.c (inflate_mono_method): Reuse method instantiation
11045         from the generic method, if available.
11046
11047 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11048
11049         * marshal.c (emit_marshal_variant): Fix conv_arg
11050         type in last commit, based on whether parameter is byref.
11051         
11052 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11053
11054         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
11055         marshalling.
11056         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
11057         MONO_TYPE_OBJECT back for VARIANT support.
11058
11059 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11060
11061         * marshal.c, marshal.h, icall-def.h: Implement 
11062         Marshal.ReAllocCoTaskMem.
11063
11064 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
11065
11066         * marshal.c: memory retention fixes: use the proper
11067         image cache for runtime_invoke method lookups.
11068
11069 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
11070
11071         * mempool.c: added code to help debug mempool allocations.
11072
11073 2007-01-11  Dick Porter  <dick@ximian.com>
11074
11075         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
11076         support (experimenting with faking it with IP_MTU_DISCOVER for
11077         systems that don't have IP_DONTFRAGMENT.)
11078         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
11079         icall.
11080
11081         * icall-def.h: new System.Net.Sockets.Disconnect icall.
11082
11083         * socket-io.h: Add new fields to MonoSocketAsyncResult
11084         corresponding to the new ones in Socket.cs.
11085
11086 2007-01-11  Raja R Harinath  <rharinath@novell.com>
11087
11088         Fix IronPython regression mentioned in #80249
11089         * metadata.c (do_mono_metadata_parse_generic_class): Clear
11090         'cached_context' field, since it may have been initialized as a
11091         side-effect of metadata parsing.
11092
11093         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
11094         (_MonoGenericClass.cached_class): Move here and rename from lone
11095         remaining field of ...
11096         (_MonoInflatedGenericClass): ... this.  Remove.
11097         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
11098         to changes.
11099
11100         Fix mcs/tests/test-128.cs regression.
11101         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
11102         2007-01-10 change below.
11103         [MONO_TYPE_OBJECT]: Recurse into array case.
11104
11105 2007-01-11  Raja R Harinath  <harinath@gmail.com>
11106
11107         * class-internals.h (mono_get_inflated_generic_class): Remove.
11108         * class.c (mono_get_inflated_generic_class): Remove.
11109         (mono_generic_class_get_class): Rename from
11110         mono_class_create_generic.
11111         (mono_class_from_mono_type) [GENERICINST]: Use it.
11112         * reflection.c, metadata.c: Update to changes.  Use
11113         'mono_class_from_mono_type'.
11114
11115 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
11116
11117         * reflection.c: use passed type when encoding an array element
11118         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
11119
11120 2007-01-09  Robert Jordan  <robertj@gmx.net>
11121
11122         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
11123         result arguments (someDelegate.EndInvoke (unrelatedAres)).
11124         Fixes bug #80392.
11125
11126 2007-01-09  Raja R Harinath  <rharinath@novell.com>
11127
11128         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
11129
11130         * object.c (set_value): Avoid aliasing between type->data.klass
11131         and type->data.generic_class.
11132
11133         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
11134
11135 2007-01-08  Raja R Harinath  <rharinath@novell.com>
11136
11137         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
11138         between type->data.klass and type->data.generic_class.
11139
11140 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
11141
11142         * marshal.c: In MS.NET, StringBuilder objects are not copied by
11143         value in out parameters.
11144
11145 2007-01-08  Raja R Harinath  <rharinath@novell.com>
11146
11147         Simplify invariant for MonoGenericClass::klass field.
11148         * class.c (mono_class_create_generic): Verify 'klass' is null.
11149         * metadata.c (do_mono_metadata_parse_generic_class): Don't
11150         initialize 'klass' field.
11151
11152 2007-01-05  Raja R Harinath  <rharinath@novell.com>
11153
11154         Ongoing work to avoid redundant data and simplify invariants.
11155         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
11156         'generic_class', and change type to a GenericInst.
11157         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
11158         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
11159
11160 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
11161
11162         * class.c : skip io-layer under PLATFORM_WIN32.
11163
11164 2007-01-03  Tor Lillqvist  <tml@novell.com>
11165
11166         Fix #80305: In a bundled executable, look in the bundled exe
11167         assembly to determine the runtime version. Add the possibility to
11168         bundle also the machine.config file.
11169         
11170         * assembly.c (mono_assembly_open_from_bundle): Make
11171         non-static. Allow being called even if we have no bundled
11172         assemblies, and return NULL right away in that case.
11173
11174         * domain-internals.h: Declare mono_assembly_open_from_bundle()
11175         here.
11176
11177         * domain.c (app_config_parse): Take an assembly exe file name as
11178         parameter instead of a config file name. Check for a bundled
11179         config file for that assembly by calling
11180         mono_config_string_for_assembly_file() (see below) before looking
11181         for one in the file system.
11182         (get_runtimes_from_exe): Corrsponding change to call of
11183         app_config_parse().
11184         (get_runtimes_from_exe): Check for bundled assembly exe file first
11185         by calling mono_assembly_open_from_bundle(). If no bundled
11186         assembly exe file is found, call mono_image_open() as before to
11187         look it up in the file system.
11188
11189         * mono-config.c: Add variable bundled_machinec_onfig.
11190         (mono_config_string_for_assembly_file): New function.
11191         (mono_config_for_assembly): Move code snippet that looks for a
11192         bundled assembly .config file into the above new function. Call
11193         it.
11194         (mono_register_machine_config, mono_get_machine_config): New
11195         functions to set and retrieve
11196
11197         * assembly.h: Declare mono_register_machine_config().
11198
11199         * mono-config.h: Declare mono_get_machine_config() and
11200         mono_config_string_for_assembly_file().
11201
11202         * icall.c: No declaration of environ necessary on Win32. It is
11203         declared (as a macro expanding to a function call) in stdlib.h.
11204         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
11205         New internal mono function. Returns the value of
11206         mono_get_machine_config() as a Mono string.
11207
11208         * icall-def.h: Add get_bundled_machine_config().
11209
11210 2007-01-04  Raja R Harinath  <rharinath@novell.com>
11211
11212         Remove redundant field
11213         * class-internals.h (_MonoGenericContext.container): Remove field.
11214         * loader.c (mono_method_get_signature_full): Don't parse a
11215         "container" for a signature parse when the signature is inflated
11216         immediately.
11217         (method_from_methodspec): Likewise, for a generic_inst.
11218         * class.c, metadata.c, reflection.c: Update to changes.
11219
11220 2006-01-04  Raja R Harinath  <rharinath@novell.com>
11221
11222         * class-internals.h (_MonoGenericClass): Rename 'context' field to
11223         'cached_context', and change semantics -- it starts off NULL, and
11224         is initialized on demand.
11225         * class.c (mono_generic_class_get_context): New accessor to
11226         replace 'context' field accesses.
11227         (mono_class_get_context): New helper.
11228         (*): Update to changes.
11229         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
11230
11231 2007-01-03  Miguel de Icaza  <miguel@novell.com>
11232
11233         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
11234         before the memcpy.   Fixes Marshal2 regression.
11235
11236 2007-01-02  Jb Evain  <jbevain@gmail.com>
11237
11238         * blob.h: add a MONO_TYPE_ENUM definition
11239         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
11240         fix the encoding of arrays of enums in custom attributes.
11241
11242         Fixes #79666.
11243
11244 2007-01-01  Miguel de Icaza  <miguel@novell.com>
11245
11246         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
11247         string is null terminated, but only cut the string short if it
11248         overflows the buffer.   
11249         
11250         (mono_string_to_byvalstr): Also fix this routine.   The code here
11251         was not properly terminating a string (it was only terminated
11252         because of the previous catch-all memset). 
11253
11254         I left the memset, because I do not know if applications expect
11255         the runtime to clear this region. 
11256
11257         Fixes #79944.
11258
11259         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
11260         Clear the error before returning to unmanaged code to prevent the
11261         runtime from being confused later on (fixes  80420).
11262         (ves_icall_type_from_name): Always call mono_loader_clear_error
11263         after parsing a type that could have failed.
11264         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
11265
11266         * loader.c (mono_loader_clear_error): Fix indentation.
11267
11268 2006-12-28  Martin Baulig  <martin@ximian.com>
11269
11270         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
11271
11272 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11273
11274         * reflection.c: patch from Rolf Bjarne Kvinge to fix
11275         getting a token for an EnumBuilder.
11276
11277 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
11278
11279         * reflection.c: be more careful in case resource generation
11280         fails to create the data array.
11281
11282 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11283
11284         * sgen-gc.c: write barrier for clone and fix unregister handles.
11285
11286 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11287
11288         * reflection.c: some fixes needed in the generics code for the moving GC.
11289
11290 2006-12-22  Robert Jordan  <robertj@gmx.net>
11291
11292         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
11293         account. Fixes bug #80299.
11294
11295 2006-12-21  Raja R Harinath  <rharinath@novell.com>
11296
11297         Fix WaitHandle usage in delegates.
11298         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
11299         * object.c (mono_wait_handle_new): Use the property set method to
11300         initialize the handle.
11301         (mono_wait_handle_get_handle): New.
11302         * threadpool.c (mono_async_invoke): Use it.
11303         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
11304         Likewise.
11305         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
11306
11307 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
11308
11309         * marshal.c (emit_marshal): Call emit_marshal_variant and
11310         emit_marshal_com_interface when applicable.
11311         (emit_marshal_variant, emit_marshal_com_interface): Add
11312         methods for this case and remove if's from emit_marshal_object.
11313         
11314 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
11315
11316         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
11317
11318 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
11319
11320         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
11321         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
11322         and GlobalFree on Windows. Remove FIXME.
11323
11324 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11325
11326         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
11327         implementation for managed objects.
11328
11329 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
11330
11331         * object.c: implemented code to be used for checking
11332         that no reference field overlaps with non-references.
11333
11334 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11335
11336         * threadpool.c: fix queue code to be compatible with the
11337         moving GC.
11338
11339 2006-12-18  Miguel de Icaza  <miguel@novell.com>
11340
11341         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
11342         in structures by throwing ArgumentNullException.
11343
11344         (emit_marshal_safehandle): Also when they are null parameters.
11345
11346         (emit_marshal_safehandle): Add support for ref
11347         SafeHandles parameters
11348
11349 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11350
11351         * profiler.c: updated to use the mono-dl API instead of
11352         gmodule.
11353
11354 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11355
11356         * profiler.c: updated to use the mono-dl dynamic loading
11357         API instead of gmodule.
11358
11359 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11360
11361         * profiler.c: use readlink, older versions of glib don't have
11362         g_file_read_link ().
11363
11364 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11365
11366         * profiler.c: try to detect the path to mono if libc fails to provide
11367         a useful name (bug #80286).
11368
11369 2006-12-16  Raja R Harinath  <rharinath@novell.com>
11370
11371         Fix #80242
11372         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
11373         instance, use the generic type definition instead.
11374         (ves_icall_Type_GetNestedTypes): Likewise.
11375         * class.c (mono_class_create_generic): Always set the
11376         nested_classes of a generic instance to NULL, even if the generic
11377         type definition has nested types.
11378
11379 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
11380
11381         * marshal.c (mono_string_from_bstr): Revert previous Windows change
11382         and fix on Linux.
11383         
11384 2006-12-15  Miguel de Icaza  <miguel@novell.com>
11385
11386         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
11387         my arguments were in the wrong order.   I also fixed the Windows
11388         version which seems to have had the same issue.
11389
11390         (mono_free_bstr): On Unix, this is g_free.
11391         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
11392         conversions (for the tests in corlib to pass).
11393
11394 2006-12-14  Miguel de Icaza  <miguel@novell.com>
11395
11396         * marshal.c (emit_ptr_to_object_conv): For now, ignore
11397         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
11398         exception if a ref SafeHandle in a struct has changed).
11399         
11400         (emit_struct_conv): Do not perform layout checks for classes
11401         derived from SafeHandle, as those are specially handled. 
11402
11403         (emit_object_to_ptr_conv): Add support for
11404         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
11405
11406         (emit_marshal_safehandle): Implement conversion of return values
11407         of safehandles (MARSHAL_ACTION_CONV_RESULT).
11408         
11409         * threads.c: WaitHandle now is compiled with two different handles
11410         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
11411         for 2.0.
11412         
11413         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
11414         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
11415         these routines to cope with both kinds of fields.
11416
11417 2006-12-12  Miguel de Icaza  <miguel@novell.com>
11418
11419         * metadata.c (mono_type_to_unmanaged): Handle the case where
11420         type->data.klass is a SafeHandle, and in that case, return the
11421         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
11422         MONO_MARSHAL_CONV_SAFEHANDLE. 
11423
11424 2006-12-11  Miguel de Icaza  <miguel@novell.com>
11425
11426         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
11427         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
11428         calling emit_marshal_object.
11429
11430         (emit_marshal_safehandle): Implement marshalling of
11431         SafeHandle parameters (no ref support yet).
11432
11433         (MarshalAction): Document the defines as I implement
11434         them for SafeHandle.
11435
11436         (emit_marshal_object): indentation police.
11437
11438         * class-internals.h: Define MonoSafeHandle.
11439         Add safehandle_class to MonoDefaults type.
11440
11441         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
11442         list of classes to check for fields. 
11443
11444         * domain.c (mono_init_internal): Add SafeHandle to the list of
11445         mono_defaults loaded.
11446
11447 2006-12-15  Raja R Harinath  <rharinath@novell.com>
11448
11449         Fix #80253
11450         * reflection.c (mono_reflection_bind_generic_parameters): If the
11451         generic type definition is a type builder, ensure that it is fully
11452         initialized before instantiating it.  Kill some dead code.
11453
11454 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11455
11456         * object.c: clear the loader_error () before loading
11457         more metadata stuff (bug #80258).
11458
11459 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
11460
11461         * icall.c, icall-defs.h: type modifiers icalls for
11462         parameters and properties.
11463
11464 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
11465
11466         * object.c, icall.c: fixed warnings.
11467
11468 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11469
11470         * marshal.c: fixed a couple of leaks and coding style in a few places.
11471
11472 2006-12-08  Dick Porter  <dick@ximian.com>
11473
11474         * process.c: Cope with NULL ProcessStartInfo arguments on windows
11475         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
11476         80173.
11477
11478 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11479
11480         * process.c: ProcessStartInfo may have only filename set and
11481         arguments can be NULL.
11482
11483 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11484
11485         * icall.c: fix leak found by Robert Jordan.
11486
11487 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11488
11489         * marshal.c, marshal.h: generate managed method to access an element
11490         of a multi-dimensional array.
11491
11492 2006-11-30  Paolo Molaro (lupus@ximian.com)
11493
11494         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
11495
11496 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11497
11498         * icall.c: back out GetFields () fix until the serialization code is
11499         fixed to not depend on the incorrect behaviour.
11500
11501 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11502
11503         * profiler.c: provide defaults if none are set.
11504
11505 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11506
11507         * Makefile.am, attrdefs.h: new public header file with
11508         constants for attributes for use by embedders.
11509
11510 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11511
11512         * icall.c: GetFields () fix for bug #80064.
11513
11514 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
11515
11516         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
11517         removed long unused icalls.
11518
11519 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
11520   
11521         * marshal.c: 
11522                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
11523                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
11524                 can be generated without a delegate class.
11525                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
11526         
11527         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
11528
11529 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11530
11531         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
11532         #80069.
11533
11534 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11535
11536         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
11537         icall-def.h: added icalls needed by System.GC.
11538
11539 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
11540
11541         * loader.c: ensure the class in catch clauses is handled
11542         correctly for generics methods (fixes bug#79980).
11543
11544 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
11545
11546         * monitor.h, monitor.c: added mono_locks_dump () function
11547         to help debug deadlocks involving managed locks.
11548
11549 2006-11-13  Dick Porter  <dick@ximian.com>
11550
11551         * file-io.c (get_file_attributes): If the file is a symlink try
11552         and get the stat data for the target, but also add the
11553         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
11554         the specs for the windows symlink support, but will probably have
11555         to be reworked when I have test data from a vista machine.  Fixes
11556         bug 79887.
11557
11558 2006-11-13  Dick Porter  <dick@ximian.com>
11559
11560         * gc.c (mono_domain_finalize): 
11561         * marshal.c (mono_delegate_begin_invoke): 
11562         * threadpool.c (socket_io_init, mono_thread_pool_init)
11563         (mono_thread_pool_finish): 
11564         * monitor.c (mono_monitor_try_enter_internal): 
11565         * threads.c (mono_thread_resume, mono_thread_init)
11566         (mono_thread_suspend_all_other_threads)
11567         (mono_thread_execute_interruption): 
11568         * appdomain.c (mono_domain_unload): Check for NULL error returns
11569         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
11570         75733.
11571
11572 2006-11-11  Miguel de Icaza  <miguel@novell.com>
11573
11574         * process.c
11575         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
11576         Only close the handle if the value of the handle is not
11577         INVALID_HANDLE_VALUE.  This just makes the process a bit more
11578         robust.
11579
11580         Improvement for #75733, so that we do not run into this problem. 
11581
11582         
11583         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
11584         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
11585         internal variables.  Fixes #79462 
11586         
11587
11588 2006-11-09  Dick Porter  <dick@ximian.com>
11589
11590         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
11591         Use poll() not select().  Fixes bug 79397.
11592
11593 2006-11-09  Raja R Harinath  <rharinath@novell.com>
11594
11595         Fix #79872
11596         * assembly.c (mono_assembly_load_from_full): Check that the given
11597         image has an assembly manifest.
11598
11599 2006-11-09  Ankit Jain  <jankit@novell.com>
11600
11601         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
11602         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
11603         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
11604
11605 2006-11-07  Dick Porter  <dick@ximian.com>
11606
11607         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
11608         Put the old resolver behaviour back for pre-2.0 profiles.
11609
11610 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11611
11612         * threadpool.c: precise GC and locking fixes.
11613
11614 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11615
11616         * class.c: don't load types that have an explicit unaligned
11617         managed reference. Provide better info in the TypeLoad exception.
11618         Part of the fix for bug #79744.
11619         * object.c: use the correct check for class type load issues.
11620
11621 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11622
11623         * class.c: enforce alignment of fields with managed references
11624         even when Pack=1 is forced by the user (bug #77788).
11625
11626 2006-11-03  Dick Porter  <dick@ximian.com>
11627
11628         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
11629         If the address reverse lookup fails, return it as the hostname
11630         anyway.  Fixes bug 79721.
11631
11632 2006-11-03  Dick Porter  <dick@ximian.com>
11633
11634         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
11635         Fix build on Windows.
11636
11637 2006-11-02  Dick Porter  <dick@ximian.com>
11638
11639         * icall-def.h: 
11640         * object-internals.h: 
11641         * exception.c (mono_get_exception_thread_interrupted): 
11642         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
11643         Fixes bug 74525.
11644
11645         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
11646         Check for pending Thread.Interrupt.
11647
11648 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
11649         * loader.c: Fixed bug 79684.
11650
11651 2006-10-27  Dick Porter  <dick@ximian.com>
11652
11653         * file-io.c (get_file_attributes): Force symlinks to directories
11654         to be returned as a regular file.  Fixes bug 79733.
11655 2006-10-26  Dick Porter  <dick@ximian.com>
11656
11657         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
11658         CreateFile to open a directory then we need to set the
11659         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
11660
11661 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
11662
11663         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
11664         friends.
11665
11666 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
11667
11668         * sgengc.c: small cleanup of timer code.
11669
11670 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
11671
11672         * sgen-gc.c: fix some warnings and start adding support for
11673         complete object removal on domain unload.
11674
11675 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
11676
11677         * assembly.c: build_assembly_name should not consider a version
11678         number without build or revision number invalid. Fixes bug #79715.
11679
11680 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
11681
11682         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
11683         call kernel32 function OutputDebugString directly.
11684         
11685         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
11686         
11687 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
11688
11689         * reflection.c: small cleanup, using a function to insert a MonoString
11690         in the string heap.
11691
11692 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
11693
11694         * reflection.c: moving GC fixes.
11695
11696 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
11697
11698         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
11699         all the objects with finalizers belonging to an unloading appdomain.
11700
11701 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
11702
11703         * sgen-gc.c: added ability to allocate even when the nursery is fully
11704         pinned and fixed a couple of bugs.
11705
11706 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
11707
11708         * threads.h: Revert the last change for now.
11709
11710         * threads.h (mono_thread_get_pending_exception): Rename this to
11711         mono_thread_get_undeniable_exception ().
11712
11713 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
11714
11715         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
11716         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
11717         when fname does not refer to valid assembly. This result in a more
11718         meaningful error message.
11719         * exception.c: added mono_get_exception_bad_image_format2 which 
11720         constructs a BadImageFormatException using the ctor taking a custom
11721         message and the file name. Passing in a NULL msg results in a default
11722         message.
11723         * exception.h: define mono_get_exception_bad_image_format2 function.
11724         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
11725         when file name pointed to an invalid IL image. Use 
11726         mono_get_exception_file_not_found2 to construct FileNotFoundException,
11727         as this results in a more meaningful error message.
11728
11729 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
11730
11731         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
11732         #79465.
11733
11734 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
11735
11736         * metadata.c (mono_type_size): Change the align parameter to guint32 for
11737         consistency with the other _size functions.
11738         (mono_type_stack_size): Ditto.
11739
11740         * class.c object.c icall.c: Fix warnings caused by the above change.
11741
11742         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
11743
11744         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
11745
11746         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
11747
11748 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
11749
11750         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
11751         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
11752         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
11753         threadpool.h, threads-types.h: mark more internal functions.
11754
11755 2006-10-11  Dick Porter  <dick@ximian.com>
11756
11757         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
11758         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
11759         reproduce the bug even before applying the fix.)
11760
11761 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
11762
11763         * reflection.c: allow retrieving attributes for arguments in generic
11764         methods (bug #79241).
11765
11766 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
11767
11768         * debug-mono-symfile.c: properly check fopen () result (found by
11769         coverity).
11770
11771 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
11772
11773         * reflection.c: make error message clearer and fixed two
11774         issuelets found by Coverity.
11775
11776 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
11777
11778         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
11779
11780 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
11781
11782         * object-internals.h, gc-internal.h, profiler-private.h:
11783         mark internal functions.
11784
11785 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
11786
11787         * reflection.c: put data in the text section.
11788         * icall.c: recognize more types in type_from_typename ().
11789         * process.c, marshal.c: added some GC FIXMEs.
11790
11791 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
11792
11793         * loader.c: check for NULL before initializing.
11794
11795 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
11796
11797         * gc.c (finalizer_thread): Use a non-alertable wait here.
11798
11799         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
11800         until the correct solution is found.
11801
11802 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
11803
11804         * reflection.c (mono_module_get_object): Avoid an assert when operating on
11805         modules with no metadata. Fixes #79596.
11806
11807         * image.c (load_metadata_ptrs): Put back the error message when
11808         the #- heap is encountered since the support is not complete yet.
11809
11810 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
11811
11812         * gc.c: do not allow the user to SuppressFinalize () a
11813         delegate because it would leak the trampoline if present.
11814
11815 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
11816
11817         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
11818         PropertyPtr table.
11819
11820 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
11821
11822         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
11823
11824         * metadata.c (mono_metadata_get_param_attrs): Ditto.
11825
11826         * row-indexes.h: Add definitions for *Ptr tables.
11827
11828         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
11829
11830         * metadata.c (mono_metadata_translate_token_index): New helper function to
11831         translate table indexes used in uncompressed metadata.
11832         (mono_metadata_decode_table_row): Ditto.
11833         (mono_metadata_decode_table_row_col): Ditto.
11834
11835         * metadata.c: Add table schema for *Ptr tables.
11836
11837         * class.c loader.c: Use the new helper function to access the affected metadata
11838         tables.
11839         
11840         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
11841         #38532.
11842         
11843 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
11844
11845         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
11846         sequences which can be unbounded in size. Fixes #79583.
11847
11848 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
11849
11850         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
11851         static initialization.
11852
11853         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
11854
11855         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
11856
11857         * domain.c (mono_domain_free): Free up type_init_exception_hash.
11858
11859         * object.c (mono_runtime_class_init): Implement correct semantics when a static
11860         ctor fails, i.e. throw the same exception on subsequent accesses.
11861         
11862 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
11863
11864         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
11865         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
11866         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
11867         Handle marshalling of interfaces and VARIANTs contained in structs.
11868         
11869         Code is contributed under MIT/X11 license.
11870         
11871 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
11872
11873         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
11874         
11875         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
11876         mempool.
11877
11878 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11879
11880         * console-io.c: ignore previous SIGINT handler.
11881
11882 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
11883
11884         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
11885         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
11886         #79460, #79461, #79485.
11887
11888         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
11889
11890         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
11891         #79217.
11892
11893 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
11894
11895         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
11896         could be generated from it.
11897
11898 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
11899
11900         * rand.c: fix read loop to correctly handle EINTR.
11901
11902 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
11903
11904         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
11905         internal calls are defined to keep methods closer to the declaring
11906         type and allow a significant reduction in runtime relocations and
11907         memory usage.
11908
11909 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
11910
11911         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
11912         exception message to have FileNotFoundException use the default
11913         assembly load error message. Fixes bug #79426.
11914         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
11915
11916 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11917
11918         * threadpool.c: (start_thread_or_queue) use the root domain when
11919         creating the thread instead of the async object one.
11920
11921 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
11922
11923         * class.c, object.c, class-internals.h, reflection.c:
11924         for arrays, store element_size inside MonoClass (speedup
11925         for array object creation).
11926
11927 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
11928
11929         * icall.c: fixed CodeBase to use the file name and not the module
11930         name (bug #79365).
11931
11932 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
11933
11934         * mono-debug.c, mono-debug.h: export find_method as
11935         mono_debug_find_method ().
11936
11937 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
11938
11939         * debug-helpers.c, class-internals.h: added a few functions useful
11940         when debugging under gdb.
11941
11942 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11943
11944         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
11945         characters that need special handling.
11946
11947 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
11948
11949         * mono-config.c: make the os/cpu specification more flexible,
11950         allowing lists and negation.
11951
11952 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
11953
11954         * marshal.c: COM Interop fixes. Handle case where method->klass.
11955         is interface. Handle BSTR/MonoString when null. Use CDECL as 
11956         calling convention on non-windows platforms. This is for
11957         compatibility with XPCOM and MainWin COM.
11958         
11959         Code is contributed under MIT/X11 license.
11960         
11961
11962 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
11963
11964         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
11965         correctly. Fixes #79217.
11966
11967         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
11968
11969 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
11970
11971         * mono-config.c: allow both an os and cpu attribute for dllmap
11972         and dllentry elemnets to enable a single config file to be used
11973         for multiple architectures.
11974
11975 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
11976
11977         * loader.c: MonoLoaderError was cleared too soon on load failure.
11978         Fixes bug #79424.
11979
11980 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
11981
11982         * icall.c: use the defining class vtable when accessing a
11983         static field, not a pobblibly derived class.
11984
11985 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
11986
11987         * icall.c string-icalls.c: Remove references to unicode.h.
11988
11989         * unicode.h unicode.c Makefile.am: Remove these unused source files.
11990
11991         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
11992
11993         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
11994         indicating the image where custom marshaller types should be looked up.
11995         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
11996         custom marshallers, instead of corlib. Fixes #79425.
11997
11998 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
11999
12000         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
12001
12002 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
12003
12004         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
12005         Implement Environment.ProcessorCount.
12006         
12007         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
12008         Implement Environment.ProcessorCount.
12009         
12010         * icall.c: 
12011         Add Environment.ProcessorCount icall.
12012         
12013         Patch by Jason McFall.
12014
12015 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12016
12017         * assembly.c: don't append .exe/.dll when the filename already contains
12018         one of those extensions.
12019
12020 2006-09-12  Martin Baulig  <martin@ximian.com>
12021
12022         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
12023         to array interfaces.
12024
12025 2006-09-11  Martin Baulig  <martin@ximian.com>
12026
12027         * reflection.c (mono_image_build_metadata): Create the
12028         MethodImpl's after emitting all types and methods, so we don't
12029         need another fixup pass for them.
12030
12031 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
12032
12033         * class.c (mono_class_from_name_case): Fix regression introduced by the last
12034         change.
12035
12036 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
12037
12038         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
12039         unload.
12040
12041 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
12042
12043         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
12044         args is not set. Fixes #78926.
12045
12046 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
12047
12048         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
12049
12050         * image.c (load_class_names): Move this to class.c, and rename it to 
12051         'mono_image_init_name_cache'.
12052         (load_modules): Fix a warning.
12053
12054         * class.c icall.c image.c: Initialize image->name_cache lazily.
12055
12056         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
12057         on its name using information in the AOT file.
12058
12059         * class.c (mono_class_from_name): Use the new hook function.
12060
12061 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
12062
12063         * reflection.c (mono_param_get_objects): Handle enum default parameter values
12064         correctly.
12065
12066         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
12067         Fixes #79289.
12068         
12069 2006-09-06  Martin Baulig  <martin@ximian.com>
12070
12071         * icall.c (mono_lookup_internal_call): Small fix.
12072
12073 2006-09-05  Raja R Harinath  <rharinath@novell.com>
12074
12075         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
12076         double g_free.
12077
12078 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
12079
12080         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
12081         when --debug is specified.
12082
12083 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
12084
12085         * class.c (setup_generic_array_ifaces): Fix a warning.
12086
12087 2006-09-04  Miguel de Icaza  <miguel@novell.com>
12088
12089         * Temporarily remove the patch to assemly.c that checks the
12090         assembly versions as it breaks our gacutil.
12091
12092 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
12093
12094         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
12095
12096         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
12097         a net 1.0 runtime.
12098
12099         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
12100         created using the default ctor. Fixes #79152.
12101         (mono_string_builder_to_utf16): Ditto.
12102
12103 2006-09-01  Martin Baulig  <martin@ximian.com>
12104
12105         Fix handling of the generic array interfaces.
12106
12107         * class-internals.h
12108         (MonoDefaults): Removed `generic_array_class' and added
12109         `generic_ilist' class.
12110
12111         * class.c
12112         (mono_bounded_array_class_get): Add the new generic array interfaces.
12113         (setup_generic_array_ifaces): New static method; create vtable
12114         entries for each method in the generic array interfaces.
12115
12116         * metadata.c
12117         (select_container): Allow "parent-less" generic methods.
12118
12119         * marshal.c
12120         (mono_marshal_get_generic_array_helper): New public method.
12121
12122         * icall.c
12123         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
12124         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
12125         moved the interncall into System.Array.
12126
12127 2006-09-01  Raja R Harinath  <rharinath@novell.com>
12128
12129         A few more cases of avoiding work on types with ->byref set.
12130         Has the real fix for #79238
12131         * icall.c (is_generic_parameter): New helper.
12132         (ves_icall_Type_GetGenericParameterPosition): Use it.
12133         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
12134         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
12135         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
12136         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
12137         reference types.
12138         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
12139         reference types.
12140         (ves_icall_Type_get_IsGenericInstance): Likewise.
12141         (ves_icall_Type_get_IsGenericType): Likewise.
12142
12143 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
12144
12145         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
12146         class if possible.
12147
12148         * mempool.h (mono_mempool_get_allocated): New helper function.
12149
12150         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
12151         change.
12152
12153         * mempool.c: Fix warnings and the calculation of stats.
12154
12155         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
12156
12157         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
12158
12159         * loader.c (mono_get_method_from_token): Update method_count stat.
12160
12161         * class-internals.h (MonoStats): Add some stats.
12162
12163 2006-08-31 Robert Jordan  <robertj@gmx.net>
12164
12165         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
12166         with managed variants.
12167         All code is contributed under the MIT/X11 license.
12168         
12169 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
12170
12171         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
12172         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
12173
12174         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
12175
12176         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
12177         with cycles in classes.
12178
12179         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
12180
12181         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
12182         missing a [MarshalAs] directive. Fixes #79203.
12183
12184         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
12185         klass->marshal_info. Fixes #79217.
12186
12187 2006-08-30  Martin Baulig  <martin@ximian.com>
12188
12189         Committing a patch from Joachim Ante <joe@otee.dk>:
12190         Add support for binary data symbol stores.
12191
12192         * debug-mono-symfile.c
12193         (mono_debug_open_mono_symbol_file): Renamed into
12194         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
12195         arguments.
12196
12197         * mono-debug.c
12198         (mono_debug_open_image): Added `raw_contents' and `size' args.
12199         (mono_debug_init_2_memory): New public function.
12200
12201 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
12202
12203         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
12204
12205 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12206
12207         * appdomain.c: implement support for ShadowCopyFiles.
12208
12209 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
12210
12211         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
12212         when value is NULL (and should remove CID #51).
12213
12214 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12215
12216         * image.c: moved 2 functions to ../utils.
12217
12218 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
12219
12220         * gc.c: cope with the target object of a GC handle being NULL
12221         (bug #78877).
12222
12223 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
12224
12225         * class.c: recursively check parent's explicit implementations
12226         of interface methods (fixes bug #79125).
12227
12228 2006-08-19  Miguel de Icaza  <miguel@novell.com>
12229
12230         * filewatcher.c: Avoid warnings when building, do not redefine
12231         constants that are defined.
12232
12233         Remove warnings.
12234
12235 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12236
12237         * image.c: don't fail when the link points to an absolute path.
12238
12239 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
12240
12241         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
12242         Fix CID #3.
12243
12244 2006-08-17  Miguel de Icaza  <miguel@novell.com>
12245
12246         * image.c (full_path): A new method used to obtain the actual path
12247         of an assembly even in the presence of symbolic links.  
12248
12249         This is necessary for the case where we are running a binary that
12250         has been GACed, but we are using the "published" path name
12251         ($prefix/mono/1.0/blah.exe) which happens to point to the real
12252         file in the GAC.
12253
12254         This was the source of the failure for the `xsp' command with the
12255         recent AppDomain changes, as far as the runtime was concerned,
12256         there were two different assemblies: $prefix/mono/1.0/blah.exe and
12257         $prefix/mono/gac/blah/version/blah.exe.
12258
12259         (do_mono_image_open): use full path
12260
12261 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12262
12263         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
12264
12265 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
12266
12267         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
12268         domain_id is supplied. Fix CID #241 and corlib's unit tests.
12269
12270 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12271
12272         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
12273         small structures. Fixes #78990.
12274
12275 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12276
12277         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
12278
12279         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
12280
12281 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12282
12283         * appdomain.c:
12284         * marshal.c: don't load all the assemblies from a domain into newly
12285         created ones. The new domains might have different rules and load
12286         assemblies from different locations. Fixes bug #76757.
12287
12288         Patch by Lluis. Conflicts resolved by Brian Crowell.
12289
12290 2006-08-16  Alp Toker  <alp@atoker.com>
12291
12292         * socket-io.c: First half of the fix for #79084.
12293         Set sa_size to the length of the content, not that of the struct.
12294         Don't add NULL suffix to the content, this should be done in
12295         managed code if needed.
12296
12297 2006-08-14  Raja R Harinath  <rharinath@novell.com>
12298
12299         Fix part of #79012
12300         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
12301         mono_metadata_parse_type returns NULL.
12302
12303 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
12304
12305         * normalization-tables.h : new file for string normalization data.
12306         * locales.c, locales.h, icall.c :
12307           added load_normalization_resource() for string normalization,
12308           and icall as well.
12309         * Makefile.am : added normalization-tables.h to the sources.
12310
12311 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
12312
12313         * marshal.c: Add more helper functions to reduce code duplication and use them
12314         everywhere.
12315
12316 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
12317
12318         * marshal.c: Fix non-x86 stdcall warnings.
12319         
12320         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
12321         them everywhere.
12322
12323 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
12324
12325         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
12326         type check on multi-dimensional arrays. Fixes #79000.
12327
12328 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
12329
12330         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
12331         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
12332         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
12333         * class-internals.h: add is_com_object to class structure.
12334         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
12335         null checks to COM object marshalling. Fix .ctor call on RCW.
12336         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
12337         
12338         All code is contributed under the MIT/X11 license.
12339
12340 2006-08-09  Dick Porter  <dick@ximian.com>
12341
12342         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
12343         racing mono_monitor_allocator_lock() somewhere, so don't delete
12344         the critical section for now.  Found by running and exiting
12345         monodevelop.
12346
12347 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
12348
12349         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
12350         (ves_icall_System_ComObject_FindInterface): Ditto.
12351         (ves_icall_System_ComObject_CacheInterface): Ditto.
12352
12353         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
12354         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
12355
12356 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12357
12358         * threadpool.c: treat pipes from process asynchronous reads as sockets
12359         when reading from them, so we get select/poll or epoll to wait for
12360         data.
12361
12362 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
12363
12364         * loader.c: Fix a typo (CID #233) in the null check.
12365
12366 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
12367
12368         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
12369         Hopefully fixes #78949.
12370         
12371         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
12372         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
12373         bytes. Fixes #78972.
12374
12375 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12376
12377         * filewatcher.c: we need to set errno here.
12378
12379 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12380
12381         * filewatcher.c: let Win32Exception get the error value.
12382
12383 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12384
12385         * filewatcher.c: translate errno into win32 errors for Win32Exception
12386         to know what happened.
12387
12388 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
12389
12390         * threadpool.c: Fix more warnings.
12391
12392         * assembly.c (search_loaded): Fix warnings.
12393
12394         * threadpool.c (mono_thread_pool_finish): Fix warnings.
12395         (mono_async_invoke): Ditto.
12396
12397 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
12398
12399         * object.c (mono_remote_class_vtable): Need to create proxy vtable
12400         entries for __ComObject type in addition to ComImport types.
12401         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
12402         about hash table.
12403         
12404         All code is contributed under the MIT/X11 license.
12405
12406 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
12407
12408         * image.c: avoid tentative loading of modulerefs that contain
12409         no metadata (P/Invoke library names).
12410
12411 2006-07-28  Dick Porter  <dick@ximian.com>
12412
12413         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
12414         mono_loader_lock() somewhere, so don't delete the critical section
12415         for now.  Found by running and exiting monodevelop.
12416
12417 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12418
12419         * filewatcher.c: define the inotify syscalls when we're building on
12420         linux and have sys/syscall.h. The build system might not have support
12421         for inotify but the target system might have it.
12422
12423 2006-07-26  Miguel de Icaza  <miguel@novell.com>
12424
12425         * domain.c: Documentation updates.
12426
12427         * loader.c (mono_free_method): Do not release the method
12428         information if we are being profiled, as profilers will use this
12429         information at shut down to present some data to the user.
12430
12431         This is needed so that the profiler does not crash, as the
12432         profiler tends to keep MonoMethods around, and they might become
12433         invalid if we free these.
12434
12435         (mono_get_method_constrained): Return the original CIL stream
12436         method as well, so verification can be performed against it.
12437
12438 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12439
12440         * filewatcher.[ch]: support for inotify file system watcher.
12441         * icall.c: add new internal calls for the inotify file system watcher.
12442
12443 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12444
12445         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
12446         #78888.
12447
12448 2006-07-20  Dick Porter  <dick@ximian.com>
12449
12450         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
12451         warning.
12452
12453 2006-07-20  Dick Porter  <dick@ximian.com>
12454
12455         * threads.c (start_wrapper): Do the thread cleanup while we still
12456         hold a reference to its object.  Fixes bug 78123.
12457
12458 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
12459
12460         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
12461         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
12462           "managed-to-managed".
12463         * icall.c: Redirect string constructors that take sbyte* to
12464           ves_icall_System_String_ctor_RedirectToCreateString.
12465         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
12466           to CreateString () methods with matching signature.
12467         * reflection.c: Use original security informations for
12468           MONO_WRAPPER_MANAGED_TO_MANAGED.
12469         * security-manager.c: Use original security informations for
12470           MONO_WRAPPER_MANAGED_TO_MANAGED.
12471         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
12472           that is a placeholder and only its address should be used.
12473         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
12474           that is a placeholder and only its address should be used.
12475
12476 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
12477
12478         Begin implementing COM Interop.
12479         * appdomain.c: Increment corlib version.
12480         * class.c: Set ComImport classes' parent to __ComObject.
12481         * loader.c: Mark cominterop methods as such.
12482         * domain.c: Add __ComObject class to MonoDefaults structure.
12483         * image.c: Add 2 hashtables to the image for COM Interop related methods
12484         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
12485         using the mempool allocator
12486         
12487         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
12488         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
12489         declaration for mono_metadata_type_dup_mp.
12490         
12491         * debug-helpers.c: Added strings for two additional wrapper types
12492         * object.c: Create proxy objects for ComImport classes
12493         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
12494         and added __ComObject class to MonoDefaults structure.
12495         
12496         * object-internals.h: Finish MonoRealProxy definition, and add definition of
12497         MonoComInteropProxy and MonoComObject.
12498         
12499         * marshal.c: Added support for COM Interop
12500         (signature_cominterop): Converts managed signature to corresponding
12501         unmanaged COM signature.
12502         (cominterop_get_function_pointer): gets unmanaged function pointer via
12503         COM object vtable
12504         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
12505         (cominterop_get_method_interface): returns interface type that method is defined on
12506         (mono_mb_emit_cominterop_call): emits native call to function pointer
12507         gotten from vtable
12508         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
12509         that matches signature of unmanaged function.
12510         (cominterop_get_native_wrapper): wrapper around adjusted method call.
12511         (cominterop_get_invoke): forwards call from proxy to __ComObject
12512         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
12513         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
12514         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
12515         
12516         * marshal.h: Added Marshal icall declarations.
12517         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
12518         so we can access them in finalizer
12519         
12520 2006-07-14  Dick Porter  <dick@ximian.com>
12521
12522         * object.c (mono_type_initialization_cleanup): Fix a race
12523         condition by temporarily commenting out the critical section
12524         deletion.
12525
12526 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
12527
12528         * reflection.c (create_custom_attr): Fix some warnings.
12529         (create_custom_attr_data): Ditto.
12530         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
12531         types. Fixes #78855.
12532
12533 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
12534
12535         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
12536
12537         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
12538
12539 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
12540
12541         * reflection.c (resolve_object): Add support for DynamicMethod.
12542
12543         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
12544         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
12545
12546 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
12547
12548         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
12549         don't leak GPtrArray's pdata has we have no use (nor free) for it.
12550
12551 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
12552
12553         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
12554         Fixes #77888.
12555
12556 2006-06-30  Raja R Harinath  <rharinath@novell.com>
12557
12558         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
12559         slightly: remove a shadow local variable.
12560
12561 2006-06-29  Raja R Harinath  <rharinath@novell.com>
12562
12563         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
12564         definition that introduces the virtual function slot.
12565         Also fix Coverity #105.
12566
12567 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
12568
12569         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
12570         for dynamic assemblies. Fixes #78724.
12571
12572 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
12573
12574         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
12575         Fixes #78722.
12576
12577 2006-06-21  Martin Baulig  <martin@ximian.com>
12578
12579         * reflection.c
12580         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
12581         fixes #76484.
12582
12583 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
12584
12585         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
12586
12587 2006-06-20  Raja R Harinath  <rharinath@novell.com>
12588
12589         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
12590         nor TYPEREFs.
12591         * class.c (mono_class_create_from_typespec): Add 'context' argument.
12592         Inflate result if necessary.
12593         (mono_class_get_full): Remove old version.  Rename from
12594         'mono_class_get' and add 'context' argument.  Pass it to
12595         ..._create_from_typespec.
12596         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
12597         (mono_ldtoken): Revert change below.
12598
12599 2006-06-20  Martin Baulig  <martin@ximian.com>
12600
12601         * class.c (mono_ldtoken): Don't pass the generic context to
12602         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
12603
12604 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
12605
12606         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
12607         and later freeing it. Fixes #78638.
12608
12609 2006-06-15  Miguel de Icaza  <miguel@novell.com>
12610
12611         * icall.c (mono_class_get_throw): Revert over-zealous error
12612         throwing, the caller for mono_class_get_throw will cope with
12613         errors when classes are not properly initialized already.
12614
12615         The code still copes with loader exceptions though.
12616
12617         Fixes the regression in reftype1 and reftype3 from the CAS tests.
12618         
12619 2006-06-14  Miguel de Icaza  <miguel@novell.com>
12620
12621         Fixes the `make run1' version of RuntimeAbort (to be commited,
12622         source is in Bugzilla).
12623         
12624         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
12625         FALSE on class loading failure instead of returning true.
12626
12627         * class.c (mono_class_create_from_typedef): It is possible for
12628         mono_metadata_interfaces_from_typedef_full to fail if a class is
12629         not found, cope with this.
12630         
12631
12632 2006-06-14  Dick Porter  <dick@ximian.com>
12633
12634         * socket-io.c: 
12635         * process.c: Fix a bunch of signed/unsigned warnings from gcc
12636         4.1.1
12637
12638 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
12639
12640         * culture-info-table.h : oops, forgot to make it nsync with r61548.
12641
12642 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12643
12644         * icall.c: Another fix for building mono in Visual Studio.
12645
12646 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12647
12648         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
12649         
12650 2006-06-09  Martin Baulig  <martin@ximian.com>
12651
12652         * debug-mono-symfile.c: Put this back and really fix it this
12653         time. Sorry for all the trouble.
12654
12655 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
12656
12657         * icall.c (mono_class_get_throw): Fix a warning.
12658         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
12659         ReflectionTypeLoadException if needed. Fixes #78606.
12660
12661         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
12662         (mono_class_init): Ditto.
12663
12664         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
12665         ref_only exceptions.
12666         (mono_loader_clear_error): Make this work even if there is no error.
12667
12668 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
12669
12670         * object-internals.h marshal.c marshal.h icall.c: Implement method 
12671         Marshal.GetComSlotForMethodInfo using internal call.
12672
12673 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
12674
12675         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
12676         a function for signalling it.
12677
12678         * class.c (mono_class_from_typeref): Use the new kind of loader error when
12679         a referenced assembly is not found.
12680
12681         * loader.c (mono_loader_error_prepare_exception): Add support for 
12682         LOADER_ERROR_ASSEMBLY. Fix formatting.
12683
12684 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
12685
12686         * domain.c appdomain.c class-internals.h marshal.c: Add support 
12687         for VARIANT marshalling on windows and increment corlib version
12688         since Variant struct was added.
12689
12690 2006-06-03  Miguel de Icaza  <miguel@novell.com>
12691
12692         * debug-mono-symfile.c: Revert Martin's previous patch which broke
12693         stack trace line information:
12694
12695         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
12696         (Martin) when looking up B which is between A and C, return A not C.
12697
12698         Bug is #78573.
12699
12700         Thanks to Alexander Olk for tracking this down.
12701
12702 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
12703
12704         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
12705         
12706         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
12707         avoid clobbering its value.
12708         (mono_string_to_lpstr): Fix a warning on windows.
12709
12710 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
12711
12712         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
12713
12714         * reflection.c loader.c: Removed references to 'dummy' flag.
12715
12716         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
12717
12718         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
12719         it gets GC tracking.
12720
12721         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
12722         GC tracking.
12723         
12724         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
12725
12726         * marshal.c threadpool.c: Update callers of mono_async_result_new.
12727
12728         * appdomain.c: Bump corlib version.
12729
12730 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
12731
12732         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
12733         CEE_STIND_REF when working with object references.
12734
12735 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
12736
12737         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
12738         Fixes #78539.
12739
12740 2006-05-30  Miguel de Icaza  <miguel@novell.com>
12741
12742         * loader.c (method_from_memberref): Fix argument value for
12743         mono_loader_set_error_method_load (I was passing the MonoClass
12744         instead of the class name char *).
12745
12746 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
12747
12748         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
12749         CEE_STIND_REF when working with object references.
12750
12751 2006-05-30  Martin Baulig  <martin@ximian.com>
12752
12753         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
12754         mono_method_full_name() change and replace the ':' with a '.'
12755         here.
12756
12757 2006-05-30  Martin Baulig  <martin@ximian.com>
12758
12759         * debug-mono-symfile.c
12760         (mono_debug_symfile_lookup_location): Fix the algorithm:
12761         when looking up B which is between A and C, return A not C.
12762
12763 2006-05-29  Martin Baulig  <martin@ximian.com>
12764
12765         * mono-debug.h
12766         (MonoDebugMethodInfo): Make the typedef public.
12767         (MonoDebugSourceLocation): New public struct.
12768
12769         * mono-debug.c
12770         (mono_debug_source_location_from_address): Removed.
12771         (mono_debug_source_location_from_il_offset): Removed.
12772         (mono_debug_il_offset_from_address): Removed.
12773         (mono_debug_address_from_il_offset): Removed.
12774         (mono_debug_lookup_method): New public function.
12775         (mono_debug_lookup_source_location): New public function; replaces
12776         the old mono_debug_source_location_from_*() functions; see the
12777         inline documentation.
12778         (mono_debug_free_source_location): New public function.
12779         (mono_debug_print_stack_frame): New public function; see the
12780         inline documentation.
12781
12782         * debug-mono-symfile.c
12783         (mono_debug_find_source_location): Renamed into
12784         mono_debug_symfile_lookup_location(); only take a
12785         `MonoDebugMethodInfo *' and an `offset' argument; added inline
12786         documentation.
12787         (mono_debug_find_method): Renamed into
12788         mono_debug_symfile_lookup_method().
12789
12790 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
12791
12792         * assembly.c (mono_assembly_open_full): Dont overwrite the status
12793         returned by mono_image_open_full ().
12794
12795         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
12796         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
12797         #78517.
12798
12799         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
12800         #78518.
12801
12802 2006-05-27  Miguel de Icaza  <miguel@novell.com>
12803
12804         * class.c (mono_class_from_typeref): handle missing images
12805         earlier, deals with bug #78418.   Refactor code; 
12806
12807         Fix a warning introduced in my previous commit (some stale code
12808         from before I revisited my patch).
12809
12810         * class.c (mono_class_create_from_typedef): On failure, remove the
12811         class from the MonoImage->class_cache as the class is not
12812         initialized;   Fixes the leak pointed out by Paolo.
12813
12814 2006-05-25  Dick Porter  <dick@ximian.com>
12815
12816         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
12817         DeleteCriticalSections until I figure out which one may still be
12818         sometimes locked when mono_thread_cleanup is called.
12819
12820 2006-05-24  Dick Porter  <dick@ximian.com>
12821
12822         * threads.c (mono_thread_cleanup): Move the threading cleanup out
12823         of mono_thread_manage and back into its own function, so it can be
12824         called after the finalizer thread has finished.
12825
12826         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
12827
12828 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
12829
12830         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
12831         Fixes #78495.
12832
12833         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
12834         with non-blittable elements.
12835         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
12836
12837 2006-05-24  Martin Baulig  <martin@ximian.com>
12838
12839         * mono-debug-debugger.h (MonoDebuggerEvent): Added
12840         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
12841
12842         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
12843         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
12844         `mono_debugger_event_handler' to NULL.
12845
12846 2006-05-24  Martin Baulig  <martin@ximian.com>
12847
12848         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
12849
12850 2006-05-24  Martin Baulig  <martin@ximian.com>
12851
12852         * mono-debug-debugger.h
12853         (mono_debugger_create_notification_function): Added
12854         `MonoCodeManager *' argument.
12855
12856 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
12857
12858         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
12859
12860 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
12861
12862         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
12863         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
12864         implementation.
12865
12866 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
12867
12868         * icall.c: precise GC support: objects can't be stored in unmanaged
12869         memory anymore, even if they are kept alive by other references: since
12870         they can move the GC needs to be able to always find them.
12871
12872 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
12873
12874         * object.c: precise GC support for static fields. Support
12875         for moving GCs: write barriers and pinned allocation for interned
12876         strings.
12877
12878 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
12879
12880         * domain.c, domain-internals.h: precise GC support for the MonoDomain
12881         structure.
12882
12883 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
12884
12885         * class.c, gc.c: sgen and precise GC updates.
12886
12887 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
12888
12889         * marshal.h, marshal.c: added write barrier wrapper and precise type
12890         fixes.
12891
12892 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
12893
12894         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
12895         support.
12896
12897 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
12898
12899         * reflection.c: precise and sgen GC updates.
12900
12901 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
12902
12903         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
12904
12905 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
12906
12907         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
12908
12909 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
12910
12911         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
12912         MONO_TYPE_OBJECT. Fixes #78462.
12913
12914 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
12915
12916         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
12917         and blittable types.
12918
12919 2006-05-17  Miguel de Icaza  <miguel@novell.com>
12920
12921         * class.c (mono_class_get_exception_for_failure): Implement parts
12922         of a TODO: if the loader error is set (instead of the class
12923         error), we return a Loader exception that can be properly thrown
12924         elsewhere.
12925
12926         This was exposed by some Winforms 2.0 code that I tried to run
12927         (Atsushi pointed me to it).
12928
12929 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
12930
12931         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
12932         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
12933         
12934         * marshal.c (emit_marshal_vtype): Add limited support for 
12935         UnmanagedType.LPStruct. Fixes #78427.
12936
12937         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
12938         Applied a patch from kangaroo to fix #77523.
12939
12940 2006-05-17  Martin Baulig  <martin@ximian.com>
12941
12942         * threads.c
12943         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
12944         (debugger_thread_created): Removed.
12945         (debugger_thread_exited): Removed.
12946
12947 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
12948
12949         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12950
12951         * object-internals.h (MonoReflectionResource): Sync with managed version.
12952
12953 2006-05-12  Wade Berrier <wberrier@novell.com>
12954
12955         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
12956
12957 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
12958
12959         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
12960         functions try to allocate from the image mempool.
12961
12962 2006-05-12  Dick Porter  <dick@ximian.com>
12963
12964         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
12965
12966 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
12967
12968         * object.c: The FieldGetter and FieldSetter methods require the full
12969         name of the class, not only the name. Fixes bug #78277.
12970
12971 2006-05-11  Miguel de Icaza  <miguel@novell.com>
12972
12973         * loader.c (method_from_memberref): Do not pass the NULL klass to
12974         mono_loader_set_error_() methods.  Pass the non-NULL value
12975         (class). 
12976
12977 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
12978
12979         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
12980         (mono_assembly_close): Null out assembly->image->references after freeing it.
12981
12982         * image.c (mono_image_close): Free image->references.
12983         
12984         * reflection.c (mono_image_basic_init): Fix a small memory leak.
12985
12986 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
12987
12988         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
12989         before checking if it's NULL (g_assert).
12990
12991 2006-05-10  Martin Baulig  <martin@ximian.com>
12992
12993         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
12994         I thought I already killed that two months ago, but now it somehow reappeared.
12995
12996 2006-05-10  Martin Baulig  <martin@ximian.com>
12997
12998         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
12999
13000 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
13001
13002         * reflection.c: Allocate memory for dynamically created methods in the image
13003         mempools.
13004
13005 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
13006
13007         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
13008         don't use the ad pointer before checking if it's NULL (g_assert).
13009
13010 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
13011
13012         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
13013         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
13014
13015         * marshal.c: Allocate all signatures from mempools.
13016
13017         * marshal.c: Allocate some more signatures from mempools.
13018
13019 2006-05-09  Miguel de Icaza  <miguel@novell.com>
13020
13021         * object.c (mono_load_remote_field): The code used to provide a
13022         temporary variable for returning results if the user did not
13023         provide a result pointer.  But our temporary variable was allocted
13024         on the satck.
13025
13026         Fix calling code to always pass a result area.   Coverity ID 103.
13027
13028 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
13029
13030         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
13031         value, not the old. Fixes #78312.
13032         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
13033
13034         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
13035         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
13036         per-image cache.
13037
13038         * assembly.c (mono_assembly_close): Free image->references.
13039
13040         * assembly.c (mono_assembly_names_equal): Fix a warning.
13041         (mono_assemblies_cleanup): Cleanup more global data.
13042
13043         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
13044
13045         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
13046         ptr_cache and image->modules.
13047
13048         * image.c (mono_image_init): Allocate array_cache lazily.
13049         
13050 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13051
13052         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
13053         behavior was changed recently and has bad side effects.
13054
13055 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
13056
13057         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
13058         
13059         * assembly.c (mono_assembly_close): Remove a debug printf.
13060
13061         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
13062
13063         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
13064         to also allow for temporary references between mono_image_open ()/close ().
13065
13066         * domain.c (get_runtimes_from_exe): Add a FIXME.        
13067
13068 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
13069
13070         * marshal.c: Fix support for dynamic methods.
13071
13072         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
13073
13074         * marshal.c (mono_marshal_cleanup): New cleanup function.
13075
13076         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
13077         image mempools.
13078
13079         * class.c (mono_class_init): Fix leaking class->nested_classes.
13080
13081         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
13082
13083         * image.c (mono_image_init): Initialize the new cashes.
13084
13085         * image.c (mono_image_close): Destroy the new cashes.
13086
13087         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
13088
13089         * mempool.c (mono_mempool_strdup): New helper function.
13090
13091         * class-internals.h: Add prototype for mono_loader_unlock ().
13092
13093         * domain.c (mono_jit_info_table_find): Fix a warning.
13094         (mono_debugger_check_runtime_version): Ditto.
13095
13096         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
13097         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
13098         functions to these modules.
13099
13100         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
13101         metadata modules.
13102         
13103         * marshal.c (mono_free_bstr): Fix a warning.
13104
13105         * assembly.c (mono_assembly_open_full): Fix another small leak.
13106
13107         * object.c: Fix some unload leaks in the remoting code.
13108
13109         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
13110         function.
13111
13112         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
13113
13114         * reflection.c: Fix some unload leaks in dynamic assemblies.
13115
13116 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
13117
13118         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
13119         * marshal.h: Add BSTR support on Win32
13120         * icall.c: Add BSTR icalls
13121         * metadata.h: Add BSTR enums
13122
13123 2006-04-28  Miguel de Icaza  <miguel@novell.com>
13124
13125         Work to catch the crash from #76795 and turn it into an
13126         exception.   As I stubbed out pieces of the VisualBasic support,
13127         I found a number of places where the code was failing and I added
13128         checks to those places. 
13129         
13130         * metadata.c (do_mono_metadata_parse_generic_class): Make this
13131         function return a status code.  If we fail to parse the signature
13132         from mono_metadata_parse_generic_inst, return FALSE.
13133
13134         * loader.c (mono_get_method_from_token): If we fail to load the
13135         method (mono_class_get) return NULL.   
13136
13137         * (method_from_memberref): Return NULL if we are unable to parse
13138         the method signature
13139
13140         (mono_loader_error_prepare_exception): Since we now use the
13141         loader_error flag internally to stop processing, and obtaining
13142         exceptions that might be thrown will walk this code path the
13143         proper way of going from a MonoLoaderError into a
13144         MonoException was convoluted.   This new routine encapsulates the
13145         process of turning the error into an exception and *clearing* the
13146         error afterwards.
13147         
13148 2006-04-27  Miguel de Icaza  <miguel@novell.com>
13149
13150         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
13151         with missing assemblies), and to cope with:
13152
13153                 * Missing fieldref from a non-existing assembly.
13154                 * Missing methodref from a non-existing assembly.
13155
13156         The first batch of work to address *some* of the issues from 76661.
13157         
13158         * object.c (mono_class_create_runtime_vtable): If we fail to
13159         initialize the class raise the exception here. 
13160
13161         * metadata.c (mono_class_get_overrides_full): If any methods fail
13162         to load return the failure to the caller.
13163
13164         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
13165         flagging assemblies that failed to load.   
13166
13167         Do not crash if we are unable to load the assembly.
13168
13169         (mono_assembly_close): Do nothing with REFERENCE_MISSING
13170         assemblies. 
13171
13172         * loader.c (mono_loader_set_error_type_load): Change the
13173         convention to always pass unallocated strings, so we make our own
13174         copies (I know our own code had duplicated strings before, but
13175         this keeps the normal conventions).
13176         (method_from_memberref): Call mono_loader_set_error_method_load
13177         for all possible failures of loading the class. 
13178         Remove assert, turn into a loader error.
13179
13180         (mono_loader_error_to_exception): Move this routine from mini
13181         (mini_loader_error_to_exception) there was no need to have that in
13182         mini. 
13183
13184         * class.c (mono_class_from_typeref): If we were not able to load
13185         the assembly with mono_assembly_load_reference, call the
13186         mono_loader_set_error_type_load to register the problem.
13187
13188         (mono_class_setup_fields): If we fail to load the type from
13189         mono_metadata_parse_type_full, call mono_class_set_failure and
13190         break from the loop.
13191
13192         If class->exception_type is set, we do not layout the fields as
13193         that might crash the runtime, and instead return (from breaking
13194         from the previous loop).
13195
13196         (mono_class_setup_vtable): This now returns a boolean indicating
13197         whether the table was properly setup.   The decision is driven by
13198         mono_class_get_overrides_full which might run into non-existing
13199         methods. 
13200         
13201         (mono_class_init): Returns TRUE on success or FALSE if there was a
13202         problem in loading the type (incorrect assemblies, missing
13203         assemblies, methods, etc).
13204
13205         When we call mono_class_setup_fields we also check for a potential
13206         error inside this call (either a class exception or a general
13207         loader exception).
13208
13209         (mono_class_create_from_typedef): If the parent fails to load
13210         (calling mono_class_get_full) return NULL.
13211         
13212         ** Important **
13213
13214         calls to mono_metadata_parse_type_full should be checked
13215         everywhere and set the mono_class_set_failure
13216         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
13217
13218         The current patch checks the places where my manually constructed
13219         tests show the errors are showing up, but we should do it
13220         everywhere. 
13221
13222         ** Important2 **
13223
13224         mono_class_init return values should be tested everywhere, like
13225         the previous case this is something that we should audit
13226         everywhere and not only on the cases exposed by the tests I
13227         created. 
13228
13229 2006-04-26  Miguel de Icaza  <miguel@novell.com>
13230
13231         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
13232         boolean parameter and instead pass the information on `options'
13233         parameter (FileOptions).
13234
13235         * icall.c: Register the new signature for MonoIO.Open.
13236
13237         * debug-helpers.c (dis_one): Trying to understand how coverity
13238         works.  Fix Run 5, item 78.
13239
13240 2006-04-26  Dick Porter  <dick@ximian.com>
13241
13242         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
13243         dereference.
13244
13245 2006-04-25  Martin Baulig  <martin@ximian.com>
13246
13247         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
13248
13249         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
13250         debugger_thread_created().
13251         (debugger_gc_push_all_stacks): Don't handle the main thread in any
13252         special way.
13253         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
13254         (mono_debugger_finalize_threads): New function; undo the effects
13255         of mono_debugger_init_threads().
13256         (mono_debugger_create_all_threads): Removed.
13257
13258 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
13259
13260         * image.c (mono_image_close): Tidy up trace messages.
13261
13262         * assembly.c (mono_assembly_close): Ditto.
13263
13264         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
13265         no longer references an already freed assembly. Fixes #78168.
13266
13267 2006-04-21  Dick Porter  <dick@ximian.com>
13268
13269         * threads.c (mono_thread_detach): Fix reference counting when
13270         detaching threads.
13271
13272 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
13273
13274         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
13275         #78155.
13276
13277 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
13278
13279         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
13280         (mono_type_to_stind): Ditto.
13281
13282         * marshal.c: Use the new helper functions to simplify code.
13283
13284         * image.c (mono_image_close): Add some code for help debug assembly unloading
13285         problems.
13286
13287         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
13288         image mempool.
13289
13290         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
13291         assembly was already loaded in another appdomain. Fixes #78083.
13292
13293 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
13294
13295         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
13296         referenced assemblies.
13297         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
13298
13299         * domain.c (mono_domain_free): Add a trace message.
13300
13301         * appdomain.c (add_assemblies_to_domain): Ditto.        
13302
13303         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
13304         field.  
13305
13306 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13307
13308         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
13309
13310 2006-04-12  Martin Baulig  <martin@ximian.com>
13311
13312         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
13313         `USE_INCLUDED_LIBGC'.   
13314
13315 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13316
13317         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
13318         the patch contains ../ and a small directory name later. Hopefully fixes
13319         #78035.
13320
13321 2006-04-10  Martin Baulig  <martin@ximian.com>
13322
13323         Clean up the debugger's thread-handling code.
13324
13325         The debugger's thread-handling code has been moved from
13326         ../mini/debug-debugger.c to threads.c.  We now iterate directly
13327         over the `threads' hash, keep track of exiting threads and also
13328         use proper locking.
13329
13330         We can now debug XSP and XSP based applications with the debugger.
13331
13332         * object-internals.h (MonoThread): Added `gpointer end_stack'.
13333
13334         * threads.h
13335         (MonoThreadCallbacks): Removed; this was only used by the debugger.
13336         (mono_install_thread_callbacks): Likewise.      
13337
13338         * threads.c (mono_thread_callbacks): Removed.
13339         (debugger_thread_created, debugger_thread_exited): New static functions.
13340         (start_wrapper): Call debugger_thread_created().
13341         (thread_cleanup): Call debugger_thread_exited().
13342         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
13343         (mono_debugger_init_threads): New public function.
13344         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
13345         iterate directly over the `threads' hash and also use proper locking.
13346
13347         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
13348
13349         * mono-debug-debugger.h
13350         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
13351
13352 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
13353
13354         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
13355         argument type=array. Fixes #78057.
13356
13357 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
13358
13359         * culture-info-table.h : regenerated. Fixed bug #69652.
13360
13361 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
13362
13363         * loader.c metadata.c: Reapply a variant r59116.
13364         
13365         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
13366
13367         * class.c (mono_class_setup_interface_offsets): New internal function.
13368
13369         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
13370         interfaces too. Fixes #77398.
13371
13372         * reflection.c (encode_cattr_value): Add support for 
13373         parameter type=object, argument type=array.
13374         (load_cattr_value): Ditto. Fixes #77916.
13375
13376         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
13377         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
13378
13379         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
13380         a byval char array and CharSet is Ansi.
13381
13382         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
13383
13384 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
13385
13386         * metadata.c: Add some locking comments.
13387         
13388         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
13389         mempool.
13390         (mono_metadata_free_method_signature): Don't free the signature itself.
13391
13392         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
13393
13394         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
13395         reference the same MonoImage.
13396         (mono_assembly_load_from_full): Add an assert.
13397
13398 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
13399
13400         * image.c (mono_image_close): Don't put the image we are about to free into the
13401         loaded_images_guid_hash.
13402
13403         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
13404         to reduce code duplication.
13405
13406         * marshal.c: Register the native functions called by this module as icalls, to
13407         somewhat centralize the creation of MonoMethodSignature's.
13408
13409         * loader.c (mono_method_signature): Add a cache for method signatures.
13410
13411         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
13412         the parameter attributes of a method.
13413         (mono_metadata_parse_method_signature_full): Refactored the computation of
13414         parameter attributes into a separate function. Also avoid one allocation in
13415         most cases.
13416
13417         * assembly.c (mono_assembly_close): Ditto.
13418
13419         * image.c (mono_image_close): Log trace messages with INFO level.
13420
13421         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
13422
13423         * image.c reflection.c: Correct reference counting of image modules.
13424         
13425         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
13426         of this function from the image mempool.
13427         
13428         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
13429         to allow more cached types to be used.
13430
13431         * mono-debug.c (mono_debug_add_method): Appled patch from
13432         David S. Miller  <davem@sunset.davemloft.net>: Access 
13433         minfo->lexical_blocks[] entry elements using read32().
13434
13435 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
13436
13437         * loader.c (mono_free_method): No longer free the method header for non-dynamic
13438         methods as it is allocated from the mempool.
13439
13440         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
13441         image mempool.
13442
13443         * metadata-internals.h: Add comments describing the reference counting scheme
13444         used for MonoImage and MonoAssembly.
13445
13446         * image.c assembly.c reflection.c: Rework reference counting of images and 
13447         assemblies so they are freed when the runtime is shut down. Free some 
13448         additional memory structures when an image is unloaded.
13449         
13450 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
13451
13452         * class.c loader.c reflection.c: Allocate more data structures in
13453         the image mempool.
13454
13455 2006-03-31  Miguel de Icaza  <miguel@novell.com>
13456
13457         * icall.c
13458         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
13459         build on pre glib 2.4 systems.
13460
13461 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
13462
13463         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
13464
13465         * icall.c: Fix some warnings.
13466
13467 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
13468
13469         * culture-info-table.h : regenerated.
13470
13471 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
13472
13473         * threads.c, object-internals.h, verify.c: changed the culture caching
13474         code to use a normal MonoArray for storage so the GC can keep track of
13475         them easily. Fixed bits of the cache logic, too and simplified the
13476         code.
13477
13478 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
13479
13480         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
13481         thread for non-Boehm GCs.
13482
13483 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
13484
13485         * domain.c, object.c, domain-internals.h: reduce the amount of memory
13486         needed to keep track of the data for static fields.
13487
13488 2006-03-29  Raja R Harinath  <rharinath@novell.com>
13489
13490         Fix #75172
13491         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
13492         for interface classes.  Use 'num_methods' instead.
13493         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
13494         before using '->vtable_size' field.
13495
13496 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
13497
13498         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
13499         doesn't contain managed pointers, so use a normal hashtable.
13500
13501 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
13502
13503         * reflection.c, class-internals.h, domain.c: fixed handling of types
13504         used as values for objects in custom attributes (bug #77915):
13505
13506 2006-03-24  Martin Baulig  <martin@ximian.com>
13507
13508         * class.c (mono_class_setup_fields): Added support for generic
13509         instances; fixes #77580.
13510
13511 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13512
13513         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
13514
13515 2006-03-24  Dick Porter  <dick@ximian.com>
13516
13517         * file-io.c (get_file_attributes): More stat macro breakage.
13518         Fixes bug 77759.
13519
13520 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
13521
13522         * profiler.c: added the file=filename option in the default profiler
13523         to output the profile data to filename.
13524
13525 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13526
13527         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
13528         bug #77877.
13529
13530 2006-03-22  Martin Baulig  <martin@ximian.com>
13531
13532         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
13533         allocated `MonoClassField *' in `fb->handle'.
13534
13535 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
13536
13537         * class.c, image.c, metadata-internals.h: implemented new mechanism to
13538         allocate interface ID to save memory and allow better ID reuse on
13539         appdomain unload. setup_generic_vtable () removal from Martin.
13540
13541 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
13542
13543         * object.h, appdomain.c, domain.c, exception.c, icall.c,
13544         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
13545         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
13546         write barriers for reference stores with managed objects accessed with
13547         C structures in the runtime and in embedding programs.
13548
13549 2006-03-20  Raja R Harinath  <rharinath@novell.com>
13550
13551         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
13552         'interface_id' and 'max_interface_id' fields of MonoClasses
13553         representing open generic types.
13554
13555 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
13556
13557         * object.h, object.c, icall.c: added functions to deal with
13558         storing valuetypes that contain references in managed objects.
13559         * reflection.c, string-icalls.c, threads.c, marshal.c: small
13560         fixes and comments around uses of mono_array_addr ().
13561
13562 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
13563
13564         * object.h, icall.c, monitor.c: object.GetHashCode ()
13565         implementation that supports the moving garbage collector.
13566
13567 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
13568
13569         * icall.c, threads-types.h, threads.c: implemented finalizer for
13570         LocalDataStoreSlot.
13571
13572 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
13573
13574         * metadata.c (mono_type_size): Add a fixme.
13575         (mono_type_stack_size): Ditto.
13576
13577         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
13578         'type_forwarders' field.
13579
13580         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
13581         attribute from net 2.0.
13582
13583         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
13584         from class.c.
13585
13586         * class.c (mono_class_setup_fields): Fix a warning.
13587         
13588         * class.c (mono_class_from_name): Add support for assemblyref entries
13589         in the EXPORTEDTYPE table.
13590
13591         * reflection.c: Add support for handling type forwarders under net 2.0.
13592
13593         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
13594         
13595 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
13596
13597         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
13598         overwriting entries in ModuleBuild->types, also clean up the code
13599         a little. Fixes #77774.
13600
13601 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
13602
13603         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
13604         load friend assembly info when present.
13605
13606 2006-03-14  Raja R Harinath  <rharinath@novell.com>
13607
13608         Fix crasher on gtest-158.cs.
13609         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
13610         the return value if the MonoClass we want is yet in an
13611         inconsistent state.
13612         * class.c (mono_class_create_from_typedef): Add an comment
13613         explaining an order dependency between mono_class_setup_parent and
13614         mono_class_setup_mono_type.
13615
13616 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
13617
13618         * class.c: documentation updates and events bug fix.
13619
13620 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
13621
13622         * class.c: some cleanup, locking fixes.
13623
13624 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
13625
13626         * class.c: fix the generics code to setup nested
13627         type info to the instantiated type (bug #77770).
13628
13629 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
13630
13631         * marshal.c: fixed a few type correctness issues.
13632
13633 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13634
13635         * loader.c: the Set/Get/Addrtess array methods should be public.
13636
13637 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
13638
13639         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
13640         
13641         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
13642         info->wrapper.
13643
13644 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
13645
13646         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
13647
13648         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
13649
13650         * mempool.c (mono_mempool_alloc): Speed this up a bit.
13651         (mono_mempool_alloc0): Ditto.
13652
13653 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13654
13655         * socket-io.c:
13656         (create_object_from_sockaddr): it was allocating 4 extra bytes
13657         for the AF_UNIX data. Fixes bug #77747.
13658
13659 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
13660
13661         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
13662
13663 2006-03-09  Dick Porter  <dick@ximian.com>
13664
13665         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
13666         Fixes bug 76966 again.
13667
13668 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
13669
13670         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
13671         names from r57532
13672         * appdomain.c: Bumped corlib version to 48 (due to r57532)
13673
13674 2006-03-07  Martin Baulig  <martin@ximian.com>
13675
13676         * object.c
13677         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
13678
13679 2006-03-07  Martin Baulig  <martin@ximian.com>
13680
13681         * class.c
13682         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
13683         regression introduced in r56970; see gtest-252.cs.
13684
13685         * loader.c (mono_get_method_constrained): Correctly handle generic
13686         methods; see gtest-253.cs.
13687
13688 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
13689
13690         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
13691
13692 2006-03-04  Martin Baulig  <martin@ximian.com>
13693
13694         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
13695         compute the parent type at runtime, just like we're already doing
13696         it for interfaces.
13697
13698         * reflection.c
13699         (mono_reflection_bind_generic_parameters): Don't compute the
13700         parent type anymore.
13701
13702         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
13703
13704 2006-03-04  Martin Baulig  <martin@ximian.com>
13705
13706         * mono-debug-debugger.h
13707         (mono_debugger_create_notification_function): Allocate memory at
13708         runtime and return a pointer to it.
13709
13710 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
13711
13712         * assembly.c: Fix windows build.
13713         
13714         * assembly.c: Fix build.
13715
13716         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
13717
13718         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
13719         
13720 2006-03-03  Dick Porter  <dick@ximian.com>
13721
13722         * process.c
13723         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
13724         Check parameters before dereferencing them.  Fixes Aaron's part of
13725         bug 77393.
13726
13727 2006-03-03  Raja R Harinath  <rharinath@novell.com>
13728
13729         Fix performance regression.
13730         * loader.c (find_method_in_class): Add 'from_class' argument.
13731         Rename 'klass' argument to 'in_class'.  The signature is compared
13732         against the method in 'in_class', and the corresponding method is
13733         returned from 'from_class'.
13734         (find_method): Walk both 'in_class' and 'from_class' in parallel.
13735         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
13736         type definition and generic instantiation in parallel.
13737         (mono_get_method_constrained): Update to changes.
13738
13739 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
13740
13741         * threads.c: make sure the domain is correct, too when doing
13742         mono_thread_attach ().
13743
13744 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
13745
13746         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
13747         windows. Fixes #77683.
13748
13749 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
13750
13751         * object.h, *: introduced specific way to set elements of an array
13752         of references to be used as write barrier. Still need to audit the
13753         uses of mono_array_addr.
13754
13755 2006-03-01  Miguel de Icaza  <miguel@novell.com>
13756
13757         * object-internals.h: New field to cache the assmebly name, patch
13758         from Tambet Ingo (tambet@ximian.com)
13759
13760 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
13761
13762         * decimal.h, class-internals.h, metadata-internals.h,
13763         file-io.h: mark a few function declarations as internal, to
13764         reduce the number of PLT entries.
13765
13766 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13767
13768         * file-io.c: fix typo in warning message.
13769
13770 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
13771
13772         * loader.c: on unix, lookup the "*A" version of a function
13773         if charset is auto as a second option before failing.
13774
13775 2006-02-28  Raja R Harinath  <rharinath@novell.com>
13776
13777         * class.h (mono_class_inflate_generic_method): Revert to two
13778         argument version.
13779         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
13780         (mono_class_inflate_generic_method_full): Add.
13781         * class.c (mono_class_inflate_generic_method_full): Rename from
13782         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
13783         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
13784         * loader.c, reflection.c: Update to changes.
13785
13786 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
13787
13788         * icall.c: const fixes and small improvements.
13789
13790 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13791
13792         * threadpool.c: for asynchronous connect(), enable the same workaround
13793         for BSD 6 as for the Mac. Fixes bug #77637.
13794
13795 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
13796
13797         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
13798         formatted classes. Fixes #77524.
13799
13800 2006-02-24  Raja R Harinath  <rharinath@novell.com>
13801
13802         * class.c (inflate_generic_type): Add a couple more
13803         micro-optimizations.
13804         (inflate_generic_context): Don't use the 'gmethod' from
13805         'inflate_with'.
13806         (mono_class_inflate_generic_method): If the method has generic
13807         parameters, but the passed-in context doesn't have a 'gmethod',
13808         create one.  Use the possibly simplified generic instantiation
13809         from the declaring class instead of the one passed in.
13810
13811 2006-02-24  Raja R Harinath  <harinath@gmail.com>
13812
13813         Make generic method signature and method header handling lazy.
13814         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
13815         (inflate_generic_header): Likewise.
13816         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
13817         parameter to avoid inflating types.
13818         (mono_get_inflated_method): Empty out.
13819         * class.h (mono_class_inflate_generic_method): Update to changes.
13820         * loader.c (mono_get_method_from_token): Don't parse signature for
13821         generic methods, nor methods of generic classes.
13822         (mono_method_signature): Rename from 'mono_method_signature'.
13823         Inflate signature on demand.
13824         (mono_method_get_header): Inflate method header on demand.
13825         * reflection.c: Update to changes.
13826
13827 2006-02-23  Raja R Harinath  <rharinath@novell.com>
13828
13829         * metadata.c (mono_metadata_inflate_generic_inst): If the
13830         instantiation is closed, don't bother expanding it in the new
13831         context.
13832         * class.c (inflate_generic_class): If the generic instantiation
13833         doesn't change after inflation, return the argument itself.
13834         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
13835         Add bounds checks.
13836         (inflate_generic_context): If neither the generic class nor the
13837         generic method instantiations change, return the original context.
13838         * reflection.c (mono_method_get_object): Do
13839         'mono_get_inflated_method' before accessing the ->klass field.
13840         (inflate_mono_method): Don't create a MonoGenericMethod unless
13841         necessary.
13842         (inflate_method): Don't pass a constructed type as the declaring
13843         type of a methodbuilder.
13844
13845 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
13846
13847         * object.c: fix memory overwrite.
13848
13849 2006-02-22  Dick Porter  <dick@ximian.com>
13850
13851         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
13852         it doesn't work any more.
13853         (mono_threads_request_thread_dump): Fix unused variable warnings.
13854
13855 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13856
13857         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
13858         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
13859         the public header file.
13860
13861 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
13862
13863         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
13864
13865 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
13866
13867         * class-internals.h, object.c: reduce the size of MonoVTable
13868         and store the interface_offsets array at negative offsets.
13869
13870 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
13871
13872         * metadata.c: tweak table descriptors data structures to reduce
13873         size and runtime relocations.
13874
13875 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
13876
13877         * marshal.c: fix some types and opcodes to be type-safe
13878         in marshaling wrappers.
13879
13880 2006-02-21  Ankit Jain  <jankit@novell.com>
13881
13882         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
13883
13884 2006-02-21  Raja R Harinath  <rharinath@novell.com>
13885
13886         * metadata.c (get_constraints): Relax debugging checks for monodis.
13887
13888 2006-02-21  Ankit Jain  <jankit@novell.com>
13889
13890         * metadata.c (mono_metadata_load_generic_params): Move the code
13891         checking for ambiguous generic params from here to mono/dis/get.c
13892         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
13893
13894 2006-02-21  Raja R Harinath  <harinath@gmail.com>
13895
13896         Fix assertion triggered when compiling nemerle.
13897         * class.c (mono_get_shared_generic_inst): Rename from
13898         get_shared_inst and make non-static.
13899         * loader.c (mono_get_shared_generic_method): New.  Used to create
13900         the MonoGenericContext-equivalent of a MonoGenericContainer.
13901         (mono_get_method_from_token): Initialize the 'context' field of
13902         the created MonoGenericContainer.
13903         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
13904         * metadata.c (get_constraints): Add sanity check.
13905         * class-internals.h: Add new internal methods.
13906
13907         * reflection.c (verify_safe_for_managed_space): New sanity check.
13908         Currently checks that owner-less generic parameters aren't allowed
13909         in managed space.
13910         (mono_type_get_object): Use it.
13911         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
13912         that are now in mono_type_get_object.
13913         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
13914
13915 2006-02-19  Raja R Harinath  <harinath@gmail.com>
13916
13917         * metadata.c (mono_type_create_from_typespec): Rename from
13918         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
13919         argument and caching of types in the generic container.
13920         (unwrap_arrays, find_generic_param): Remove.
13921         * metadata-internals.h: Update.
13922         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
13923
13924 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
13925
13926         * class.c (mono_class_get_exception_for_failure): Fix a warning.
13927
13928         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
13929         return values. Fixes #77581.
13930
13931         * class.c (mono_fnptr_class_get): Switch name and name_space.
13932
13933         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
13934         classes and add support for [In, Out] attributes.
13935         (mono_marshal_free_asany): Ditto. Fixes #77524.
13936
13937 2006-02-18  Raja R Harinath  <harinath@gmail.com>
13938
13939         * class.c (mono_class_from_generic_parameter): Make more robust to
13940         incomplete MonoGenericContainers from monodis.
13941
13942 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
13943
13944         * class-internals.h: added some more exception types.
13945         * class.c, metadata.c: added a few checks to handle missing
13946         types.
13947
13948 2006-02-17  Raja R Harinath  <rharinath@novell.com>
13949
13950         Use owner-less generic-params some more.
13951         * class.c (my_mono_class_from_generic_parameter): Remove.
13952         (mono_class_from_generic_parameter): Handle null image,
13953         param->name and param->owner.
13954         (mono_class_from_mono_type): Update.
13955         (mono_class_create_from_typespec): Remove 'container' parameter.
13956         If that parameter is non-null, the result is always inflated by
13957         'mono_class_get_full' anyway.
13958         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
13959         parameter.
13960         (mono_class_get_full): Update.
13961
13962         * class.c (inflate_generic_type) [GENERICINST]: If the generic
13963         instance is not open, don't bother inflating.
13964         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
13965         parse metadata for inflated classes.
13966         (_mono_class_get): Change GenericContext* parameter to
13967         GenericContainer*.
13968         (mono_class_create_from_typespec): Likewise.  Simplify, and
13969         implement trivially.  All the cases are handled in
13970         mono_class_from_mono_type.  Don't inflate returned class.
13971         (mono_class_get_full): Delegate GENERICINST optimization to
13972         inflate_generic_type.
13973         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
13974
13975 2006-02-16  Dick Porter  <dick@ximian.com>
13976
13977         * socket-io.c (create_object_from_sockaddr): Fix typo.
13978         (create_sockaddr_from_object): Check array lengths before
13979         potentially accessing items off the end.
13980         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
13981         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
13982         (ves_icall_System_Net_Sockets_Socket_Send_internal)
13983         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
13984         length checks to avoid wraparound overflows.
13985         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
13986         contents of the array of sockets
13987         (hostent_to_IPHostEntry2)
13988         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
13989         Check return value of inet_ntop ().
13990         (addrinfo_to_IPHostEntry): Fix typo
13991
13992 2006-02-16  Raja R Harinath  <rharinath@novell.com>
13993
13994         Type metadata parsing doesn't use generic-instantiation information.
13995         * metadata.c (mono_metadata_parse_array_full): Change
13996         MonoGenericContext* parameter to MonoGenericContainer*.
13997         (mono_metadata_parse_type_full): Likewise.
13998         (mono_type_create_from_typespec_full): Likewise.
13999         (mono_metadata_parse_mh_full): Likewise.
14000         (mono_metadata_parse_generic_inst): Likewise.
14001         (do_mono_metadata_parse_generic_class): Likewise.
14002         (do_mono_metadata_parse_type): Likewise.
14003         * metadata-internals.h: Update to changes.
14004         * class.c (mono_class_find_enum_basetype): Likewise.
14005         (mono_class_setup_fields): Likewise.
14006         (mono_class_create_from_typespec): Likewise.
14007         * loader.c (method_from_methodspec): Likewise.
14008         (mono_get_method_from_token): Likewise.
14009         (mono_method_get_header): Likewise.
14010
14011 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14012
14013         * marshal.c: handle additional GENERICINST case (patch from
14014         Thong Nguyen <tum@veridicus.com>).
14015         Fix a few cases where LDIND_I/STIND_I was used for references.
14016
14017 2006-02-16  Raja R Harinath  <rharinath@novell.com>
14018
14019         * reflection.c (mono_reflection_get_token): Remove unused variable.
14020
14021 2006-02-16  Martin Baulig  <martin@ximian.com>
14022
14023         * reflection.c (mono_reflection_get_token): Add support for fields
14024         in instantiated generic types.
14025
14026         * icall.c
14027         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
14028
14029 2006-02-15  Martin Baulig  <martin@ximian.com>
14030
14031         * icall.c
14032         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
14033         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
14034         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
14035         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
14036
14037 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
14038
14039         * class.c, metadata.c, metadata.h, object.c, icall.c,
14040         marshal.c: changed mono_type_get_underlying_type () to do
14041         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
14042         Fixed handling of instantiated generic valuetypes (bug #75479).
14043
14044 2006-02-15  Raja R Harinath  <rharinath@novell.com>
14045
14046         * metadata.c (mono_metadata_decode_signed_value): Simplify.
14047         Delegate to mono_metadata_decode_value, and work on the returned value.
14048
14049         * icall.c (ves_icall_MonoType_GetGenericArguments):
14050         Add consistency check here too.
14051         
14052 2006-02-15  Ankit Jain  <jankit@novell.com>
14053
14054         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
14055         char/short etc.
14056
14057 2006-02-15  Ankit Jain  <jankit@novell.com>
14058
14059         * metadata.c (mono_metadata_decode_signed_value): New function to decode
14060         signed values, used only for representing lower bounds of arrays.
14061         (mono_metadata_parse_array_full): Use new
14062         mono_metadata_decode_signed_value to decode lower bounds.
14063
14064 2006-02-14  Martin Baulig  <martin@ximian.com>
14065
14066         * reflection.c
14067         (mono_reflection_get_token): Support "MonoGenericMethod" and
14068         "MonoGenericCMethod" and allow generic instances / methods.
14069
14070 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
14071
14072         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
14073         to obtain the terminal size using an ioctl.
14074
14075         * object.c (mono_nullable_init): Revert this as nullable reference
14076         types are not valid.
14077         (mono_nullable_box): Ditto.
14078
14079 2006-02-09  Dick Porter  <dick@ximian.com>
14080
14081         * threads.c (mono_thread_detach): Drop a reference to the thread
14082         we're detaching.
14083
14084 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
14085
14086         * object.c (mono_nullable_init): Handle nullable reference types.
14087         (mono_nullable_box): Ditto. Fixes #77446.
14088
14089 2006-02-07  Martin Baulig  <martin@ximian.com>
14090
14091         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
14092
14093 2006-02-07  Ankit Jain  <jankit@novell.com>
14094
14095         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
14096         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
14097         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
14098         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
14099         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
14100         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
14101
14102 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
14103
14104         * class.c (mono_class_create_generic): Set type_token as well.
14105
14106         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
14107         compatible with MS.
14108
14109 2006-02-02  Martin Baulig  <martin@ximian.com>
14110
14111         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
14112         has never been used so far.
14113
14114 2006-02-02  Martin Baulig  <martin@ximian.com>
14115
14116         * mono-debug-debugger.h: Changed comment at the top of this file;
14117         the header is not installed, but it's safe to #include it from
14118         within the JIT.
14119
14120         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
14121         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
14122
14123 2006-02-02  Martin Baulig  <martin@ximian.com>
14124
14125         * mono-debug.h
14126         (MonoSymbolTable): Removed the `metadata_info' field.
14127
14128         * mono-debug.c
14129         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
14130
14131         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
14132         (mono_debugger_add_builtin_types): Removed.
14133         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
14134         (mono_debugger_create_notification_function): We now operate on a
14135         pre-allocated area; take a `gpointer' and return `void'.
14136
14137         * mono-debug-debugger.c
14138         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
14139         (mono_debugger_add_builtin_types): Removed.
14140
14141 2006-02-02  Martin Baulig  <martin@ximian.com>
14142
14143         * threads.c (mono_debugger_create_all_threads): New public method.
14144
14145 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14146
14147         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
14148         breaks on several platforms.
14149
14150 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
14151
14152         * assembly.c: the VS.NET build doesn't supply default values for
14153         MONO_ASSEMBLIES and MONO_CFG_DIR.
14154
14155 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
14156
14157         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
14158         helper function.
14159
14160         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
14161
14162         * loader.c (method_from_memberref): Fix a warning.
14163
14164         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
14165
14166         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
14167         with explicit layout. Fixes #77433.
14168
14169 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
14170
14171         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
14172         max_interface_id is initialized before using it. Fixes #77398.
14173         (ves_icall_Type_GetInterfaces): Ditto.
14174
14175 2006-01-30  Raja R Harinath  <rharinath@novell.com>
14176
14177         * metadata.c (mono_metadata_parse_method_signature_full): Don't
14178         allocate memory for parameter attributes when parsing memberref
14179         signatures.
14180         * loader.c (mono_loader_set_error_method_load): Don't warn.
14181         (method_from_memberref): Ensure MissingMethodException gets thrown
14182         if method is not found.  Make warning more informative.
14183
14184 2006-01-29  Raja R Harinath  <harinath@gmail.com>
14185
14186         Fix #77397
14187         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
14188         return true if is byref.
14189         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
14190         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
14191         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
14192
14193 2006-01-27  Raja R Harinath  <rharinath@novell.com>
14194
14195         Fix tests/find-method.2.il
14196         * loader.c (find_method, find_method_in_class): Remove is_inflated
14197         argument.  Revert 2006-01-18 change.
14198         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
14199         is generic, search for method in its generic definition.
14200         * class.c (mono_class_setup_vtable_general): Print generic
14201         arguments of generic types in debugging printf.
14202
14203 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
14204
14205         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
14206
14207         * threads.c (mono_threads_request_thread_dump): New helper function.
14208
14209 2006-01-25  Raja R Harinath  <rharinath@novell.com>
14210
14211         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
14212
14213 2006-01-25  Ankit Jain  <jankit@novell.com>
14214
14215         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
14216         move definition to ..
14217         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
14218         
14219 2006-01-25  Ankit Jain  <jankit@novell.com>
14220             Raja R Harinath  <rharinath@novell.com>
14221
14222         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
14223         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
14224         as necessary.
14225
14226 2006-01-25  Martin Baulig  <martin@ximian.com>
14227
14228         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
14229         `MonoDebuggerThread' into debug-debugger.c.
14230
14231 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
14232
14233         * profiler.c: fix printing of data.
14234
14235 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
14236
14237         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
14238           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
14239
14240 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14241
14242         * object.c: fix deadlock related to string interning.
14243
14244 2006-01-23  Martin Baulig  <martin@ximian.com>
14245
14246         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
14247
14248         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
14249
14250 2006-01-23  Martin Baulig  <martin@ximian.com>
14251
14252         * mono-debug.h: Moved the prototypes of some functions which are
14253         used by the JIT here from mono-debug-debugger.h.
14254
14255 2006-01-21  Martin Baulig  <martin@ximian.com>
14256
14257         * Makefile.am: Don't install mono-debug-debugger.h.
14258
14259 2006-01-21  Martin Baulig  <martin@ximian.com>
14260
14261         * mono-debug-debugger.h: Enforce the private status of this header
14262         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
14263         Moved some stuff from mono-debugger-jit-wrapper.h here.
14264
14265 2006-01-20  Raja R Harinath  <rharinath@novell.com>
14266
14267         * class.c (mono_class_from_typeref): Add a sanity test to help
14268         catch lack of assembly load/search hooks.
14269
14270 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
14271
14272         * marshal.c (emit_struct_conv): Relax the fields with same offset
14273         check even more. Fixes #77230.
14274
14275 2006-01-18  Martin Baulig  <martin@ximian.com>
14276
14277         * loader.c (find_method_in_class): Added `gboolean is_inflated'
14278         argument; if false, we compare the uninstantiated signatures.
14279         (method_from_memberref): Compare the uninstantiated signatures;
14280         fixes #76417.
14281
14282 2006-01-18  Robert Jordan  <robertj@gmx.net>
14283
14284         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
14285         Clear the weak link. Fixes bug #77170.
14286
14287         * gc.c (mono_gchandle_free):
14288         Reflect *-gc.c changes (tiny optimization).
14289
14290 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
14291
14292         * metadata.c (mono_metadata_signature_dup): Applied patch from
14293         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
14294         Fixes #77288.
14295
14296 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
14297
14298         * marshal.c (emit_struct_conv): Allow fields with the same offset when
14299         marshalling from native to managed code. Fixes #77230.
14300
14301 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14302
14303         * threadpool.c: fix problem (Mac only) when more than one asynchronous
14304         connect. Fixes bug #77020.
14305
14306 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14307
14308         * class.c: fixed id assignement for nested interfaces (bug #77275).
14309         Added also better info for --print-vtable debugging.
14310
14311 2006-01-12  Martin Baulig  <martin@ximian.com>
14312
14313         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
14314         interfaces on-the-fly; fixes #76625.
14315
14316         * class-internals.h
14317         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
14318         don't need that anymore.
14319
14320 2006-01-12  Miguel de Icaza  <miguel@novell.com>
14321
14322         * socket-io.c
14323         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14324         To avoid initing the nested_classes when not needed I turned the
14325         PeerCredData as a toplevel internal class, as it has to be shared
14326         anyways. 
14327
14328         Fixes the CASA issue.
14329
14330 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
14331
14332         * domain.c: Accessors for MonoJitInfo
14333
14334         * profiler-private.h: Add jitinfo to the end jit hook
14335
14336         * profiler.[ch]: Define new hooks, called after jitting which give
14337         the MonoJitInfo that was compiled
14338
14339 2006-01-10  Martin Baulig  <martin@ximian.com>
14340
14341         * class.c (mono_class_setup_events): Add support for generic
14342         classes; fixes #76440.
14343
14344 2006-01-06  Raja R Harinath  <rharinath@novell.com>
14345
14346         Fix #77160.
14347         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
14348         on passed-in method.
14349
14350 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
14351
14352         * object.c (mono_runtime_invoke_array): Add Nullable support.
14353
14354         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
14355
14356 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
14357
14358         * file-io.c: Don't consider sockets as directory and avoid an endless
14359         loop. Fix bug #76966.
14360
14361 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
14362
14363         * object.c (mono_nullable_init): New helper function.
14364         (mono_nullable_box): Ditto.
14365
14366         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
14367
14368         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
14369
14370         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
14371         
14372 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
14373
14374         * class.c (mono_class_is_assignable_from): Make T assignable to 
14375         Nullable<T>.
14376
14377 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
14378
14379         * appdomain.c: Bump corlib version to 46.
14380         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
14381         serialization purpose) and changed ves_icall_System_Reflection_
14382         Assembly_get_code_base signature to accept a boolean (to escape, or 
14383         not, the assembly code base).
14384
14385 2005-12-23  Dick Porter  <dick@ximian.com>
14386
14387         * icall.c: 
14388         * threads-types.h: 
14389         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
14390         CreateEvent icall now returns "created" boolean parameter.
14391
14392 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
14393
14394         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
14395         #76967.
14396
14397         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
14398         when attr_klass is an interface. Fixes #77045.
14399
14400 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
14401
14402         * marshal.c (emit_struct_conv): Fix previous patch.
14403         
14404         * marshal.c (emit_struct_conv): Add a check for fields with the same
14405         offset.
14406
14407 2005-12-20  Raja R Harinath  <rharinath@novell.com>
14408
14409         Fix regression in Mono.C5.
14410         * class.c (mono_class_create_generic): If 'klass' is an interface
14411         set up the interface offsets.
14412         (mono_class_is_assignable_from): Don't throw away generic arguments.
14413
14414 2005-12-19  Raja R Harinath  <rharinath@novell.com>
14415
14416         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
14417         type parameters.
14418
14419 2005-12-15  Raja R Harinath  <rharinath@novell.com>
14420
14421         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
14422         dead store.
14423         (do_mono_metadata_parse_generic_class): Don't pass the current
14424         generic context when parsing the type being instantiated: it
14425         cannot use it, anyway.
14426
14427         * loader.c (method_from_memberref): Don't inflate a signature if
14428         it doesn't contain any type parameters.
14429
14430 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
14431
14432         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
14433
14434 2005-12-14  Martin Baulig  <martin@ximian.com>
14435
14436         * class.c
14437         (mono_type_get_name_recurse): Don't return null for type
14438         parameters and open generic classes.
14439         (mono_class_setup_methods): Don't exclude generic instances.
14440         (mono_get_unique_iid): Use different IDs for different
14441         instantiations of the same generic type.
14442         (mono_class_setup_vtable): Only use setup_generic_vtable() for
14443         open generic instances; create a normal vtable for closed generic
14444         instances.
14445         (mono_class_setup_vtable_general): We're now also called for
14446         closed generic instances.
14447
14448         * reflection.c
14449         (mono_reflection_bind_generic_parameters): Correctly use
14450         mono_metadata_lookup_generic_inst() everywhere.
14451
14452 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
14453
14454         * object.c (mono_class_create_runtime_vtable): Call 
14455         mono_class_setup_vtable ().
14456
14457         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
14458         function.
14459         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
14460         #76959.
14461
14462         * loader.c (mono_loader_set_error_type_load): Print the type load
14463         warnings to the console so they are more visible to the user.
14464         (mono_loader_set_error_method_load): Ditto.
14465
14466         * reflection.c (ensure_runtime_vtable): Revert the last change as it
14467         is still broken.
14468         
14469         * reflection.c (ensure_runtime_vtable): Fix build.
14470
14471         * reflection.c (ensure_runtime_vtable): Disable an optimization which
14472         doesn't work in all cases.
14473
14474 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
14475
14476         * object.c (mono_array_new_full): Treat a single dimensional array
14477         with 0 lower bounds as an szarray. Fixes #76973.
14478
14479         * reflection.c (custom_attr_visible): Really fix this.
14480
14481 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
14482
14483         * reflection.c (custom_attr_visible): Allow nested public attributes
14484         as well.
14485
14486         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
14487         interface check.
14488
14489 2005-12-12  Raja R Harinath  <harinath@gmail.com>
14490
14491         * class.c (set_generic_param_owner): Delete.
14492         (mono_class_create_from_typedef): Don't set ->owner field of
14493         generic parameters to "param containers" of enclosing classes.
14494         * reflection.c (mono_reflection_initialize_generic_parameter):
14495         Likewise.
14496
14497 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
14498
14499         * reflection.c (custom_attr_visible): Fix build.
14500
14501 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
14502
14503         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
14504         private attributes.
14505         
14506         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
14507         handling of null parameter defaults.
14508
14509 2005-12-09  Raja R Harinath  <rharinath@novell.com>
14510
14511         * class.c (mono_class_from_generic_parameter): Don't set
14512         klass->generic_container.
14513         (my_mono_class_from_generic_parameter): Likewise.
14514
14515 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
14516
14517         * reflection.c (load_public_key): Fix a warning.
14518         (method_encode_code): Fix unaligned accesses.
14519
14520 2005-12-07  Martin Baulig  <martin@ximian.com>
14521
14522         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
14523
14524         * reflection.c
14525         (write_generic_param_entry): Encode our custom attrs.
14526
14527         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
14528
14529 2005-12-07  Martin Baulig  <martin@ximian.com>
14530
14531         * reflection.c (encode_new_constraint): Removed; we don't use the
14532         `NewConstraintAttribute' anymore.
14533
14534 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
14535
14536         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
14537         not fire a TypeResolve event when Assembly.GetType () is called.
14538
14539 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
14540
14541         Beginning of support for nullable types in the runtime. Parts of
14542         this patch are from Martin.
14543
14544         * appdomain.c (MONO_CORLIB_VERSION): Bump
14545
14546         * domain.c (mono_init_internal): get the nullable type
14547
14548         * class.c (mono_class_is_nullable): New method
14549         (mono_class_get_nullable_param): New mehod
14550         (mono_class_create_generic): In types T? set cast_class to T
14551
14552         * class-internals.h (MonoDefaults): new nullable default class
14553         (mono_class_get_nullable_param, mono_class_get_nullable_param):
14554         new methods.
14555
14556 2005-12-05  Raja R Harinath  <rharinath@novell.com>
14557
14558         * metadata.c (select_container): New.  Refactor code to select the
14559         appropriate GenericContainer given the type of generic parameter
14560         we are looking for.
14561         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
14562         not a MonoGenericContext.  Use select_container.  Update parameters.
14563         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
14564         and MONO_TYPE_MVAR.
14565         (unwrap_arrays): Remove duplicate tests.
14566         (find_generic_param): Rename from 'has_same_context'.  Now walks a
14567         generic instantiated class to find any arguments that are generic
14568         parameters.
14569         (mono_type_create_from_typespec_full): Use find_generic_param to
14570         avoid evicting some generic instantiations from the typespec
14571         cache.
14572
14573 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
14574
14575         * reflection.c: fixed writing of doubles on ARM FPA.
14576
14577 2005-12-02  Robert Jordan  <robertj@gmx.net>
14578
14579         * icall.c: Fixed EventInfo.ReflectedType (#76829).
14580
14581 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14582
14583         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
14584         least on SUSE 10 they are not the same (on debian, they are just the
14585         same thing).
14586
14587 2005-12-01  Raja R Harinath  <rharinath@novell.com>
14588
14589         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
14590         DeclaringType for VARs and MVARs.
14591         * class.c (set_generic_param_owner): Fix initialization of owner
14592         fields.
14593
14594 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
14595
14596         * icall.c: fixed Enum.ToObject() to correctly convert the values.
14597
14598 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14599
14600         * threadpool.c: workaround for a bug that shows up on the Mac:
14601         select()+connect() on a blocking socket is not like it should
14602         be, so we proceed to connect() in that case, wasting the I/O
14603         threadpool thread until connect succeedes. Fixes bug #75436.
14604
14605 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14606
14607         * threadpool.c: fix typo when setting file descriptor states.
14608
14609 2005-11-28  Raja R Harinath  <rharinath@novell.com>
14610
14611         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
14612         * metadata.c (mono_metadata_parse_method_signature_full): Don't
14613         create a temporary signature container.
14614         (mono_metadata_parse_generic_param): Update to changes.
14615         (mono_type_create_from_typespec_full): Update to changes.
14616         * loader.c (method_from_memberref): Don't use a
14617         MonoGenericContainer while parsing a memberref signature.
14618         (method_from_methodspec): Remove dead-store of the 'container'
14619         variable.  It's overwritten before use.
14620
14621         * metadata.c (mono_type_create_from_typespec_full): Make debugging
14622         checks tighter.
14623         (mono_metadata_parse_generic_param): Likewise.
14624         * loader.c (find_method_in_class): Does not need a
14625         MonoGenericContainer.  Use 'mono_method_signature' rather than
14626         'mono_method_signature_full'.
14627         (find_method, mono_get_method_constrained, method_from_memberref):
14628         Update to changes.
14629
14630         * metadata.c (mono_type_create_from_typespec_full): Ensure that
14631         owner-less generic-parameters are never evicted from the typespec
14632         cache.
14633
14634         * loader.c (method_from_memberref): Don't use the current context
14635         when parsing signatures.
14636         (method_from_methodspec, mono_get_method_from_token): Update to changes.
14637
14638         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
14639         side-effects in g_assert.
14640         * loader.c (mono_get_method_from_token): Resolve klass earlier so
14641         that we don't potentially lose information.
14642
14643 2005-11-26  Dick Porter  <dick@ximian.com>
14644
14645         * icall.c:
14646         * threads.c: icalls to implement basic (ie, not named)
14647         System.Threading.Semaphore.
14648
14649 2005-11-24  Dick Porter  <dick@ximian.com>
14650
14651         * process.c
14652         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
14653         Use GetProcessId() if it's available.
14654
14655 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
14656
14657         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
14658
14659 2005-11-23  Raja R Harinath  <rharinath@novell.com>
14660             Ankit Jain  <jankit@novell.com>
14661
14662         * loader.c (mono_get_method_from_token): Initialize 'method' field
14663         of all generic parameters before parsing the signature.  Remove
14664         code that "fixed"-up MVAR references.
14665
14666 2005-11-23  Ankit Jain  <jankit@novell.com>
14667
14668         * metadata.c (mono_metadata_has_generic_params):
14669         (mono_metadata_load_generic_param_constraints):
14670         (mono_metadata_load_generic_params): Move duplicate code ...
14671         (mono_metadata_get_generic_param_row): ... here. Returns the
14672         first row-id in GenericParam table for a given owner (token).
14673         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
14674         prototype.
14675
14676 2005-11-23  Raja R Harinath  <rharinath@novell.com>
14677             Ankit Jain  <jankit@novell.com>
14678
14679         * metadata.c (mono_metadata_class_equal): Pass signature_only when
14680         comparing VARs too.
14681         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
14682         type->data.generic_param only if the type is an MVAR.
14683         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
14684         leak owner-less VARs and MVARs into managed space.
14685
14686 2005-11-21  Martin Baulig  <martin@ximian.com>
14687
14688         * class-internals.h
14689         (MonoMethod): Moved the `generic_container' here from
14690         `MonoMethodNormal' since we now also need it for
14691         `MonoMethodPInvoke';
14692         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
14693         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
14694         an union containing both `MonoMethodNormal' and
14695         `MonoMethodPInvoke'.
14696
14697         * loader.c
14698         (mono_get_method_from_token): Allow implementing generic methods
14699         as interncalls.
14700
14701         * threads.c
14702         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
14703         icall.
14704
14705 2005-11-17  Dick Porter  <dick@ximian.com>
14706
14707         * icall.c: 
14708         * process.h: 
14709         * process.c: Split the Process Start_internal icall into
14710         ShellExecuteEx_internal and CreateProcess_internal, which are
14711         called depending on whether UseShellExecute is true.  Fixes bug
14712         76670.
14713
14714         * appdomain.c (MONO_CORLIB_VERSION): Incremented
14715
14716 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
14717
14718         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
14719         'msize' parameters, use the information in 'mspec' instead.
14720         (emit_object_to_ptr_conv): Ditto.
14721
14722         * marshal.c (emit_struct_conv): Handle explicit layout structs with
14723         fields out of order. Fixes #76733.
14724
14725 2005-11-17  Ankit Jain  <jankit@novell.com>
14726
14727         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
14728
14729 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
14730
14731         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
14732           bug #76575.
14733
14734 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
14735
14736         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
14737         for types with non-auto layout. Fixes #76717.
14738
14739 2005-11-16  Ankit Jain  <jankit@novell.com>
14740
14741         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
14742         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
14743         if generic_context is null.
14744           (mono_metadata_generic_param_equal): param->owner can be null.
14745           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
14746         null.
14747
14748 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
14749
14750         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
14751         the correct value.
14752
14753 2005-11-15  Martin Baulig  <martin@ximian.com>
14754
14755         * object.c (set_value): Use mono_class_from_mono_type() instead of
14756         the hack for generic instances; fixes #76136.
14757
14758 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
14759
14760         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
14761         fields.
14762
14763         * image.c (load_metadata_ptrs): Initialize the new fields.
14764
14765         * reflection.c (create_dynamic_mono_image): Ditto.
14766
14767         * reflection.c (build_compressed_metadata): Use the new fields.
14768
14769         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
14770         icall.
14771
14772         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
14773         icall.
14774         
14775 2005-11-15  Ankit Jain  <jankit@novell.com>
14776             Raja R Harinath  <harinath@gmail.com>
14777
14778         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
14779         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
14780         new per-generic_container cache if the cached MonoType's context matches
14781         the current context.
14782           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
14783         to the expected context.
14784           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
14785
14786 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14787
14788         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
14789         we changed the signature of an icall.
14790         * icall.c: Modify to mono_double_ParseImpl return true/false 
14791         depending on the success, instead of throwing the exception. This will
14792         help us in Double.TryParse methods.
14793         
14794 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
14795
14796         * marshal.c (emit_marshal_object): Throw an exception when
14797         marshalling 'object' instead of crashing. Fixes #76696.
14798
14799 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
14800
14801         * class-internals.h: Add prototype for mono_type_get_full_name ().
14802
14803 2005-11-11  Dick Porter  <dick@ximian.com>
14804
14805         * threads.c (mono_thread_manage): Make sure the main thread has
14806         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
14807
14808 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
14809
14810         * loader.c (mono_loader_set_error_type_load): Log a warning to the
14811         console about the missing type.
14812         (mono_loader_set_error_method_load): Ditto.
14813
14814 2005-11-09  Miguel de Icaza  <miguel@novell.com>
14815
14816         * mono-config.c (mono_get_config_dir): Set the system defaults if
14817         none is specified.
14818
14819         * assembly.c (mono_set_dirs): New API entry point to set the
14820         assembly and the config directory in one call
14821
14822 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
14823
14824         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
14825         the ftnptr was created from a delegate in a domain other than the
14826         current domain. Fixes #75377.
14827
14828         * exception.h exception.c: Add mono_get_exception_not_supported ().
14829
14830 2005-11-08  Martin Baulig  <martin@ximian.com>
14831
14832         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
14833
14834 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
14835
14836         * security-manager.h: Added definitions to deal with strongname key 
14837         pairs bigger (and smaller) than 1024 bits.
14838         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
14839         adjust wrt the public key length being used.
14840
14841 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14842
14843         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
14844           Windows build (r51396-51397).
14845
14846 2005-11-03  Martin Baulig  <martin@ximian.com>
14847
14848         * class.c (mono_class_setup_vtable_general): Also add generic
14849         methods to the vtable; fixes #76581.
14850
14851 2005-11-01  Miguel de Icaza  <miguel@novell.com>
14852
14853         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
14854         sure that we lookup GetString method from the System.Text.Encoding
14855         class, not the derived class or we get an empty method.
14856
14857         Fixed class #76612.
14858
14859 2005-10-25  Miguel de Icaza  <miguel@novell.com>
14860
14861         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
14862         if it has been previously set (embedders). 
14863
14864         Make mono_set_rootdir available also on Unix.
14865
14866 005-10-24  Robert Jordan  <robertj@gmx.net>
14867
14868         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
14869
14870 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
14871
14872         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
14873         only calls which are made to native code use this flag.
14874
14875         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
14876
14877 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
14878
14879         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
14880         Add support for FieldBuilders.
14881
14882 2005-10-29  Martin Baulig  <martin@ximian.com>
14883
14884         * mono-debug.c
14885         (mono_debug_using_mono_debugger): New public method; returns
14886         whether we're running inside the debugger.
14887
14888 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
14889
14890         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
14891         for Method/Constructor/FieldBuilders.
14892
14893 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
14894
14895         * reflection.c (module_add_cattrs): Save custom attributes for global methods
14896         and fields as well.
14897
14898 2005-10-26  Martin Baulig  <martin@ximian.com>
14899
14900         * mono-debug-debugger.c
14901         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
14902
14903 2005-10-24  Raja R Harinath  <harinath@gmail.com>
14904
14905         * icall.c (base64_to_byte_array): Don't pass an out-of-range
14906         integer to isspace.
14907
14908 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
14909
14910         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
14911         when passing valuetypes byref. Fixes #76502.
14912
14913 2005-10-19  Jackson Harper  <jackson@ximian.com>
14914
14915         * profiler.c: Don't put a . in front of types that are not in a
14916         namespace.
14917
14918 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
14919
14920         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
14921
14922 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
14923
14924         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
14925         #76436.
14926         (mono_marshal_get_ldflda_wrapper): Fix a warning.
14927
14928 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14929
14930         * assembly.c metadata-internals.h icall.c: Define an additional
14931         parameter for mono_assembly_name_parse_full, so we can avoid creating
14932         S.R.AssemblyName.Version when no version info wasn't passed.
14933         
14934 2005-10-09  Miguel de Icaza  <miguel@novell.com>
14935
14936         * class.c (mono_type_get_full_name): Reimplement method that was
14937         removed. 
14938
14939         * image.c: Some docs
14940
14941 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
14942
14943         * profiler.c (output_newobj_profile): Fix printing of Total memory
14944         on x86.
14945
14946 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
14947
14948         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
14949
14950 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
14951
14952         * threads.c: remove debug output.
14953
14954 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
14955
14956         * threads.c (mono_thread_manage): Fix crashes if more than 64
14957         threads need to be aborted. Hopefully fixes #75899.
14958
14959         * assembly.c (mono_stringify_assembly_name): New helper function.
14960
14961         * class.c: Use mono_stringify_assembly_name instead of the similar
14962         static function.
14963
14964         * assembly.h assembly.c: Add support for calling a postload search 
14965         hook if an assembly cannot be loaded.
14966
14967         * appdomain.c: Register new search hooks which call the AssemblyResolve
14968         events in AppDomain. Fixes #75231
14969
14970 2005-10-07  Martin Baulig  <martin@ximian.com>
14971
14972         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
14973         methods without debug info.
14974
14975 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
14976
14977         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
14978         wrappers.
14979
14980 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14981
14982         * file-io.c: now that we return symlinks, use lstat and, when the file
14983         is a symbolic link, stat, to get the file attributes. Also avoid the
14984         conversion to/from utf16/external.
14985
14986 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
14987
14988         * class.c (mono_class_layout_fields): Compute klass->has_references
14989         correctly if an embedded valuetype is not yet initialized. Fixes
14990         #76331.
14991
14992 2005-10-04  Martin Baulig  <martin@ximian.com>
14993
14994         * metadata.c
14995         (mono_metadata_load_generic_param_constraints): New public
14996         function; splitted the constraints loading out from
14997         mono_metadata_load_generic_params().
14998
14999         * class.c (mono_class_create_from_typedef): Call
15000         mono_metadata_load_generic_param_constraints() after setting up
15001         the type and creating our parent; fixes #75329.
15002
15003 2005-10-04  Martin Baulig  <martin@ximian.com>
15004
15005         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
15006         non-dynamic parent classes.
15007
15008 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15009
15010         * file-io.c : win32 build fix (ETXTBSY seems not found).
15011
15012 2005-10-04  Martin Baulig  <martin@ximian.com>
15013
15014         * reflection.c
15015         (mono_image_get_methodspec_token): Make the cache actually work;
15016         fixes #75974.
15017
15018 2005-10-04  Martin Baulig  <martin@ximian.com>
15019
15020         * class.c (mono_class_name_from_token): Removed the unneccessary
15021         `MonoGenericContext *' argument.
15022
15023 2005-10-04  Martin Baulig  <martin@ximian.com>
15024
15025         * loader.c
15026         (method_from_methodspec): Make the caching work again; fixes the
15027         performance regression from #76262.
15028
15029 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15030
15031         * file-io.c:
15032         * file-io.h:
15033         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
15034         GetFileSystemEntries that performs the same work but without going
15035         into io-layer, locking, etc.
15036
15037 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
15038
15039         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
15040         ThreadState_Stopped as well. Fixes #76047.
15041
15042 2005-09-29  Martin Baulig  <martin@ximian.com>
15043
15044         * class.c
15045         (inflate_generic_context): If the new context has a `gmethod', set
15046         its `container' that that gmethod's `container'.
15047
15048         * metadata.c
15049         (mono_metadata_parse_generic_param): Simplify things;
15050         `generic_container = generic_context->container;' is just fine.
15051
15052         * loader.c (method_from_methodspec): Code cleanups.
15053
15054 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
15055
15056         * decimal.c: fix warning (and let gcc generate correct
15057         code on ARM with optimizations).
15058
15059 2005-09-28  Martin Baulig  <martin@ximian.com>
15060
15061         * loader.c
15062         (method_from_memberref): Added `MonoGenericContext *class_context'
15063         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
15064         (method_from_methodspec): If we're a memberref, use the enclosing
15065         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
15066
15067 2005-09-28  Martin Baulig  <martin@ximian.com>
15068
15069         * object.c (mono_runtime_invoke_array): Added support for
15070         MONO_TYPE_GENERICINST; fixes #75917.
15071
15072 2005-09-27  Martin Baulig  <martin@ximian.com>
15073
15074         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
15075         `k->byval_arg.type' to determine the actual type.
15076
15077         * loader.c (method_from_methodspec): Removed some hacks.
15078
15079 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
15080
15081         * class-internals.h (mono_field_is_deleted): Do the test for
15082         rtspecialname before we check the actual name of the field. This
15083         prevents us from dereferencing a pointer into the string table,
15084         saving us from accessing a few pages
15085
15086         * *.c: Replace the use of {Enter,Leave}CriticalSection with
15087         macros. This will allow a deadlock debugger to easily be plugged
15088         in.
15089
15090 2005-09-27  Martin Baulig  <martin@ximian.com>
15091
15092         * loader.c (method_from_methodspec): Create a "signature"
15093         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
15094
15095 2005-09-27  Martin Baulig  <martin@ximian.com>
15096
15097         * class.c
15098         (inflate_generic_class): Correctly set the new context's
15099         container.
15100
15101         * loader.c
15102         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
15103         instead of a `MonoGenericContext *'.
15104         (mono_method_signature_full): Take a `MonoGenericContainer *'
15105         instead of a `MonoGenericContext *'.
15106
15107         * metadata.c
15108         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
15109         instead of a `MonoGenericContext *'.
15110         (mono_metadata_parse_method_signature_full): Likewise.
15111
15112 2005-09-26  Martin Baulig  <martin@ximian.com>
15113
15114         * class.c
15115         (mono_class_from_generic_parameter): Set `klass->generic_container'
15116         (mono_class_from_generic_parameter): Likewise.
15117         (mono_bounded_array_class_get): We inherit the generic container
15118         from the element class.
15119
15120         * loader.c
15121         (find_method, find_method_in_class): Take a `MonoGenericContext *'
15122         argument rather than computing it here.
15123         (method_from_memberref): Correctly set the generic context before
15124         parsing the signature.  Fixes #75681.
15125
15126 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
15127
15128         * object.c (mono_class_has_special_static_fields): Fix warnings.
15129
15130 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15131
15132         * assembly.c: Add parse_public_key function, to
15133         par the public keys. Also added mono_assembly_name_parse_full,
15134         to define it the parsed key should be freed or not.
15135         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
15136         to parse a long format assembly name.
15137         * metadata-internals.h: Keep mono_assembly_name_parse_full as
15138         private, since calling it to preserve the key requires
15139         freeing it manually.
15140         
15141 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
15142
15143         * locales.c : removed HAVE_ICU part.
15144
15145 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
15146
15147         * object.c (mono_class_create_runtime_vtable): Avoid calling 
15148         field_is_special_static if the klass has no special static fields.
15149
15150         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
15151         (MonoCachedClassInfo): Likewise.
15152
15153         * object.c (mono_class_has_special_static_fields): New helper function.
15154
15155 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15156
15157         * class.c (mono_class_create_from_typedef): Don't call 
15158         interfaces_from_typedef_full for enums.
15159         (mono_class_create_from_typedef): Compute the base types of enums directly
15160         without calling mono_class_setup_fields ().
15161         (mono_class_find_enum_basetype): New helper function.
15162
15163         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
15164         one place inside the string heap.
15165         
15166 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
15167
15168         * class.c: locking fixes, code cleanups, some docs added.
15169         Allocate some data structures in the image mempool.
15170
15171 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15172
15173         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
15174         the example code.
15175         
15176 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
15177
15178         * class-internals.h, class.c, reflection.c: reduce memory taken by
15179         MonoClass.
15180
15181 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
15182
15183         * metadata.c, metadata.h, loader.h: documentation updates, code and
15184         API cleanups.
15185
15186 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15187
15188         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
15189         the example code.
15190
15191         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
15192         page faults caused by the runtime while reading metadata.
15193
15194 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15195
15196         * socket-io.c: the field names were changed 3 months ago and no one
15197         realized until bug #76077 got filed!
15198
15199 2005-09-20  Martin Baulig  <martin@ximian.com>
15200
15201         * icall.c (assembly_icalls): Removed some unused debugger icalls.
15202
15203 2005-09-20  Martin Baulig  <martin@ximian.com>
15204
15205         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
15206         write the rank into the class entry.
15207
15208 2005-09-20  Martin Baulig  <martin@ximian.com>
15209
15210         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
15211
15212 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
15213
15214         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15215
15216         * icall.c (custom_attrs_defined_internal): New icall.
15217
15218         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
15219         function.
15220         (mono_custom_attrs_construct_by_type): New helper function.
15221
15222 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
15223
15224         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
15225         terminate the resulting string. Fixes #76123.
15226
15227 2005-09-16  Martin Baulig  <martin@ximian.com>
15228
15229         * mono-debug.c
15230         (mono_debug_add_method): Ignore inflated methods for the moment.
15231
15232 2005-09-14  Martin Baulig  <martin@ximian.com>
15233
15234         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
15235
15236 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
15237
15238         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
15239         return a success/failure indication.
15240         (mono_metadata_interfaces_from_typedef_full): Ditto.
15241         (get_constraints): Ditto.
15242
15243 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
15244
15245         * marshal.c (emit_marshal_array): Fix handling of null arrays.
15246         
15247         * marshal.c (emit_marshal_array): Add support for returning string
15248         arrays from delegates. Fixes #76063.
15249
15250         * marshal.c: Use the emit_ldloc/stloc macros where possible.
15251
15252 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
15253
15254         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
15255         icall.
15256
15257 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
15258
15259         * reflection.c icall.c: Fix after mono_get_exception_type_load
15260         signature change.
15261
15262         * assembly.c (mono_assembly_get_assemblyref): New helper function.
15263         (mono_assembly_load_reference): Use the new helper.
15264
15265         * class-internals.h (MonoLoaderError): New structure containing 
15266         information about type loading errors.
15267
15268         * class-internals.h loader.c: Add APIs to store per-thread loader
15269         error information.
15270
15271         * loader.c class.c: Set the loader error if needed.
15272
15273         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
15274
15275 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
15276
15277         * decimal.c: fixed to handle the broken ARM fp format.
15278
15279 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
15280
15281         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
15282         broken.
15283
15284 2005-09-06  Martin Baulig  <martin@ximian.com>
15285
15286         * domain.c (supported_runtimes): Added v2.0.50727.
15287
15288 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
15289
15290         * culture-info.h: reduce the size of some structures.
15291
15292 2005-09-05  Martin Baulig  <martin@ximian.com>
15293
15294         Reflect latest API changes in the August CTP.
15295
15296         * icall.c
15297         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
15298         ("MonoType.HasGenericArguments"): Removed.
15299         ("MonoMethod.BindGenericParameters"): Renamed to
15300         "MakeGenericMethod".
15301         ("MethodBuilder.BindGenericParameters"): Renamed to
15302         "MakeGenericMethod".    
15303
15304 2005-09-05  Martin Baulig  <martin@ximian.com>
15305
15306         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
15307
15308 2005-09-05  Martin Baulig  <martin@ximian.com>
15309
15310         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15311
15312         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
15313         generic_container is non-NULL.
15314
15315 2005-09-05  Martin Baulig  <martin@ximian.com>
15316
15317         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15318
15319         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
15320
15321 2005-08-29  Michal Moskal  <malekith@nemerle.org>
15322
15323         * reflection.c (encode_locals,
15324         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
15325         for large generic types.
15326
15327 2005-09-05  Martin Baulig  <martin@ximian.com>
15328
15329         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15330
15331         * class.c (mono_dup_array_type): New public method.
15332         (mono_metadata_signature_deep_dup): New public method.
15333         (dup_type): Correctly duplicate array and function types.
15334
15335 2005-09-05  Martin Baulig  <martin@ximian.com>
15336
15337         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15338
15339         * reflection.c (get_default_param_value_blobs): Handle generic types
15340         and generic methods.
15341
15342 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
15343
15344         * class.c: Fixed error reporting (method/class were inversed) for 
15345         inheritance demands.
15346         * security-manager.c|h: Added the AppDomain when calling the managed
15347         System.Security.SecurityManager.InheritanceDemand method.
15348
15349 2005-09-01  Raja R Harinath  <rharinath@novell.com>
15350
15351         * reflection.c (encode_marshal_blob): 'marshaltype' and
15352         'marshaltyperef' are alternate sources for the custom marshaler
15353         name.
15354
15355 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
15356
15357         * class.c: fix creation of array classes with rank == 1
15358         (patch by Ankit Jain <jankit@novell.com>).
15359
15360 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
15361
15362         * object.c: fix check for creating the bound data for arrays vs
15363         szarrays.
15364
15365 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15366
15367         * object.c: configuration file name is now based on the executable name,
15368         not the image name. Fixes bug #75931.
15369
15370 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
15371
15372         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
15373         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
15374
15375 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
15376
15377         * rand.c: Use wincrypt.h instead of WinCrypt.h.
15378
15379 2005-08-24  Ankit Jain  <jankit@novell.com>
15380             Raja R Harinath  <rharinath@novell.com>
15381
15382         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
15383           called by it recursively.
15384           (mono_class_init): Remove special case in pending_init handling, since it's
15385           superseded by the fix to mono_class_from_typeref.
15386
15387 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
15388
15389         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
15390         BROKEN_THREAD_START stuff.
15391
15392 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
15393
15394         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
15395         trampoline.
15396
15397         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
15398         
15399         * object.c (mono_delegate_ctor): Replace the original function address with
15400         a delegate trampoline.
15401
15402 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
15403
15404         * icall.c: add boolean argument to base64_to_byte_array and 
15405         InternalFromBase64String to control whether a whitespace-only string
15406         is allowed (or should casue a FormatException to be thrown). We need
15407         this as the behavior has changed between MS.NET 1.x and 2.0, and we
15408         to match the MS behaviour in both profiles.
15409         * appdomain.c: Bump corlib version.
15410
15411 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15412
15413         This patch implements a big portion of publisher policy
15414         support, used to bind assembly versions and redirect
15415         one assembly from version A to version B.
15416
15417         * assembly.c:
15418         New GSList loaded_assembly_bindings, for storing the cached
15419         assembly bindings.
15420         (assembly_binding_maps_name): New static function for checking if a 
15421         assembly binding information maps an assembly name.
15422         (mono_assembly_binding_info_free): New function for freeing
15423         assembly binding information resources.
15424         (get_publisher_policy_info): New static function for retrieving 
15425         assembly binding information from a MonoImage.
15426         (compare_versions): New static function for comparing an assembly
15427         binding information data and the version of an assembly name.
15428         (check_policy_versions): New static function for checking if an
15429         assembly binding info mapping an assembly name is valid for it.
15430         (mono_assembly_load_publisher_policy): New static function for
15431         loading the 'policy.major.minor.MyAssembly' image for an assembly
15432         with an assembly name 'aname'.
15433         (mono_assembly_bind_version): New static function for updating
15434         assembly redirection.
15435         (mono_assembly_apply_binding): New static function for applying
15436         assembly binding.
15437         (search_binding_loaded): New static function for searching 
15438         loaded assembly binding infos in the cache domain.
15439         (mono_assembly_load_full): Don't apply assembly binding for
15440         reflection only assemblies.
15441
15442         * metadata-internals.h: Add MonoAssemblyBindingInfo,
15443         which contains information about assembly binding. Also
15444         declare signature for mono_config_parse_publisher_policy ()
15445         function, used to retrieve pub policy info.
15446         
15447         * mono-config.c:
15448         (publisher_policy_start): New static function used to parse publisher 
15449         policy config files.
15450         (publisher_policy_parser): New static MonoParseHandler containing 
15451         the functions used when parsing config files.
15452         (mono_config_parse_publisher_policy): New function for parsing
15453         publisher policy files.
15454         
15455 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
15456
15457         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
15458
15459         * marshal.c (mono_delegate_free_ftnptr): Ditto.
15460
15461         * object.c (mono_get_addr_from_ftnptr): New helper function.
15462
15463         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
15464
15465         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15466
15467 2005-08-19  Dick Porter  <dick@ximian.com>
15468
15469         * threads.c, threads.h, appdomain.c, appdomain.h,
15470         profiler-private.h, monitor.c, object.c, object-internals.h,
15471         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
15472         store the thread ID, so it can hold a 64 bit value if needed.
15473
15474 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
15475
15476         * reflection.c (mono_reflection_create_dynamic_method): Store the
15477         handle class into the method references as well so ldtoken works in
15478         dynamic methods.
15479
15480         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
15481         types.
15482
15483 2005-08-19  Ankit Jain <jankit@novell.com>
15484
15485         Fix #75847.
15486         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
15487           here rather than using the method signature of a arbitrary function
15488           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
15489           two arguments.
15490           Hack done with Harinath.
15491
15492 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15493
15494         * threadpool.c: disable printing stack traces when we get a exception
15495         in a threadpool thread. I need to do more testing to figure out which
15496         cases actually print this. Fixes bug #75828.
15497
15498 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15499
15500         * icall.c: there might be ignored whitespace after the last '='. This
15501         fixes length computation and bug #75840.
15502
15503 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
15504
15505         * assembly.c (mono_assembly_load_full): Consider .exe extension as
15506         well. Fixes #75809.
15507
15508         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
15509         #75784.
15510         
15511         * reflection.c (create_custom_attr_data): Ditto.
15512
15513 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
15514
15515         * locales.c, culture-info.h : removed RegionLCIDMap.
15516         * culture-info-tables.h : regenerated.
15517
15518 2005-08-16  Martin Baulig  <martin@ximian.com>
15519
15520         * class.c (mono_type_get_name_recurse): Small fix.
15521
15522 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
15523
15524         * locales.c : indentation fixie.
15525
15526 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
15527
15528         * object-internals.h,
15529           locales.h,
15530           locales.c,
15531           culture-info.h,
15532           icall.c : added RegionInfo table support.
15533         * culture-info-table.h : regenerated for region support.
15534
15535 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
15536
15537         * reflection.c (resolve_object): handle all kinds of MonoMethod
15538         including generic ones
15539
15540 2005-08-12  Ankit Jain <jankit@novell.com>
15541
15542         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
15543           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
15544
15545 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
15546
15547         * process.c: Don't close a thread handle when it's NULL. This is a
15548         workaround for bug #75733.
15549
15550 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
15551
15552         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
15553
15554 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
15555
15556         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
15557
15558 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15559
15560         * threadpool.c: if a work item in the thread pool has a callback that
15561         catches a exception, don't propagate it after invoking the callback.
15562         Fixes bug #75336.
15563
15564 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
15565
15566         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
15567
15568         * class-internals.h (MonoCachedClassInfo): Add some new fields.
15569
15570         * class.c (mono_class_init): Load field info lazily in the AOT case.    
15571
15572         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
15573
15574 2005-08-03  Ankit Jain  <jankit@novell.com>
15575
15576         Fix #75683.
15577         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
15578           PInvoke calling convention is 0.
15579
15580 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
15581
15582         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
15583         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
15584
15585 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
15586
15587         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
15588         to handle threads not started by the GC (patch by Michael Meeks
15589         <michael.meeks@novell.com>).
15590
15591 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
15592
15593         * reflection.c: Make buffer used in emitting types larger for some
15594         big generic types (patch by Michal Moskal).
15595
15596 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
15597
15598         * mono-debug.c: Fix some (not all) alignment problems.
15599
15600 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15601
15602         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
15603         Invoke mono_image_load_from_data_full passing the refonly
15604         parameter.
15605
15606         * assembly.c
15607         (mono_assembly_open_from_bundle): Add the refonly argument, 
15608         in order to pass it to other methods it calls to.
15609         (do_mono_assembly_open): Add the refonly argument, in order 
15610         to pass it to other methods it calls to.
15611         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
15612         the refonly parameter to it.
15613
15614         * image.c: Add loaded_images_refonly_hash and
15615         loaded_images_refonly_guid_hash to cache the reflection
15616         only loaded images.
15617         (mono_images_init): Initialize the hash tables used for
15618         caching the reflection only images.
15619         (load_modules): Invoke mono_image_open_full passing the refonly
15620         parameter to load the modules the correct way.
15621         (build_guid_table): Add the refonly argument, to re-build the 
15622         correct hash table.
15623         (do_mono_image_open): Added the refonly argument, in order to
15624         define it for the loaded image.
15625         (mono_image_loaded_full): New function, which receives an
15626         additional parameter to look for the image in the refonly or
15627         non-refonly section.
15628         (mono_image_loaded): Updated, using mono_image_loaded_full.
15629         (mono_image_loaded_by_guid_full): The same case that happens
15630         with mono_image_loaded_full.
15631         (mono_image_loaded_by_guid): Likewise.
15632         (register_image): Use the ref_only variable inside MonoImage
15633         to decide in which hash table store the current image.
15634         (mono_image_open_from_data_full): Rename
15635         mono_image_open_from_data to mono_image_open_from_data_full,
15636         adding the refonly argument, to define the ref_only variable 
15637         inside MonoImage.
15638         (mono_image_open_from_data): Return 
15639         mono_image_open_from_data_full.
15640         (mono_image_open_full): Rename mono_image_open to
15641         mono_image_open_full, receiving the new refonly argument,
15642         to pass it to inner methods.
15643         (mono_pe_file_open): Update this function, to open
15644         a MonoImage as a non-refonly image.
15645         (mono_image_close): Use the refonly variable inside
15646         MonoImage to remove the image from the correct caches.
15647
15648         * image.h: Add the signatures of mono_image_open_full,
15649         mono_image_open_from_data_full, mono_image_loaded_full,
15650         mono_image_loaded_by_guid_full.
15651
15652         * metadata-internals.h: Add the ref_only field to 
15653         MonoImage.
15654         
15655 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15656
15657         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
15658         Fix the last behavior, which used to load the assemblies and
15659         extract MonoReflectionAssemblyName information, instead of
15660         extract it from the metadata tables. Needed for Reflection
15661         Only assemblies.
15662         
15663 2005-07-29  Martin Baulig  <martin@ximian.com>
15664
15665         * mono-debug-debugger.c
15666         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
15667         not initialized.
15668
15669         * mono-debug.c
15670         (mono_debug_address_from_il_offset): Check whether we have
15671         debugging support before attempting to take the lock.
15672         (mono_debug_source_location_from_address): Likewise.
15673         (mono_debug_source_location_from_il_offset): Likewise.
15674         (mono_debug_il_offset_from_address): Likewise.
15675         (mono_debug_address_from_il_offset): Likewise.
15676
15677 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
15678
15679         * class.c (mono_class_from_name_case): Add support for dynamic images.
15680         Fixes #75650.
15681
15682         * object.c (mono_class_compute_gc_descriptor): Add a workaround
15683         for #75479.
15684
15685 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
15686         
15687         * reflection.c (mono_method_get_object): Fix warning.
15688
15689 2005-07-28  Martin Baulig  <martin@ximian.com>
15690
15691         * mono-debug.c
15692         (mono_debug_add_wrapper): Also write the wrapper type.
15693
15694 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
15695
15696         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
15697         
15698         * class.c (mono_class_init): Avoid reading nested classes if the AOT
15699         data indicates the class has none.
15700
15701 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
15702
15703         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
15704         loader lock with the debugger lock. Prevents deadlocks for beagle.
15705
15706         Beagle can now run on an smp box for a weekend without any
15707         issues. Woohoo!
15708
15709 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
15710
15711         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
15712         in a module. Fixes #75629.
15713
15714 2005-07-26  Martin Baulig  <martin@ximian.com>
15715
15716         * mono-debug.c (mono_debug_add_wrapper): New static method.
15717         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
15718         interncall or a wrapper.
15719
15720         * mono-debug.h (MonoDebugWrapperData): New public typedef.
15721         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
15722         (MONO_DEBUGGER_VERSION): Bump to 51.
15723
15724         * mono-debug-debugger.c
15725         (mono_debugger_add_type): Removed this empty function.
15726         (mono_debugger_add_method): Likewise.
15727
15728 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
15729
15730         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
15731         before accessing method->slot.
15732
15733 2005-07-21  Jb Evain  <jbevain@gmail.com>
15734
15735         * reflection.c (method_encode_clauses/class): Handle filters clauses.
15736         Fixes #75010.
15737
15738 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
15739
15740         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
15741         #75587.
15742
15743 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
15744
15745         * image.h image.c: Add mono_image_get_guid () API function.
15746
15747 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
15748
15749         There were issues when multiple threads tried to load
15750         assemblies. A deadlock was created between assemblies_mutex and
15751         mono_domain_assemblies_lock. This fixes the issue by making the
15752         assembly ref counting be lock free. See bug 75586.
15753         
15754         * image.c (mono_image_close): The add ref function here was using
15755         Interlocked operations while the unref was using a mutex and a
15756         --. I don't think this was ever a bug that would be exposed in a
15757         non-pendantic way (ie, by an embedder doing a ref on one thread
15758         and an unref on another), but for the sake of correctness, this is
15759         now Interlocked.
15760
15761         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
15762         (mono_assembly_load_reference): Call mono_assembly_addref rather
15763         than touching the refcount ourselves.
15764         (mono_assembly_close): Use InterlockedDecrement to unref the
15765         assembly. Don't acquire the lock unless it is actually needed.
15766
15767 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
15768
15769         * class.c (mono_class_layout_fields): Fix calculation of has_references
15770         for generic types.
15771
15772 2005-07-12  Martin Baulig  <martin@ximian.com>
15773
15774         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15775
15776         * metadata.c
15777         (mono_type_hash): Provide better hashing for generic instances.
15778         (mono_generic_inst_hash): Improve hashing.
15779         (mono_generic_class_hash): Likewise.
15780
15781         * reflection.c (mymono_metadata_type_hash): Improve hashing for
15782         generic instances.
15783
15784 2005-07-12  Martin Baulig  <martin@ximian.com>
15785
15786         * reflection.c (mono_reflection_create_runtime_class): Remove the
15787         hack for generic type definitions and non-`Run' assemblies.
15788         (mono_reflection_bind_generic_parameters): Also use
15789         `klass->wastypebuilder' to check for TypeBuilders.
15790
15791 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
15792
15793         * class.c (mono_class_layout_fields): Fix calculation of has_references
15794         for generic types.
15795
15796         * class.c (inflate_generic_class): Fix a leak.
15797         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
15798         for generic types.
15799
15800 2005-07-11  Martin Baulig  <martin@ximian.com>
15801
15802         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
15803         on error.
15804
15805 2005-07-11  Martin Baulig  <martin@ximian.com>
15806
15807         * loader.c (find_method): Also lookup in
15808         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
15809
15810 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
15811
15812         * appdomain.c (mono_domain_unload): Don't free the error message
15813         before passing it to mono_get_exception_...
15814
15815         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
15816         
15817 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
15818
15819         * threads.c: try to better guess an available RT signal (bug #75387).
15820
15821 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
15822
15823         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
15824         and CACHE_OBJECT.
15825
15826 2005-07-07  Martin Baulig  <martin@ximian.com>
15827
15828         * class.c (mono_type_get_name_full): Return NULL for
15829         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
15830         fixes #75408.
15831
15832 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
15833
15834         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
15835         exit the appdomain as well being aborted.
15836
15837         * threadpool.c: Create all threadpool threads inside the root appdomain, and
15838         change back to the root domain after calling managed code. This enables
15839         appdomains using threadpools to be unloaded.
15840
15841 2005-07-07  Martin Baulig  <martin@ximian.com>
15842
15843         * class-internals.h
15844         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
15845         into `MonoDynamicGenericClass' since we only need it for dynamic
15846         types.
15847
15848         * reflection.c (mono_class_bind_generic_parameters): We don't need
15849         to compute the `parent' here.
15850
15851 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
15852
15853         * culture-info-table.h : regenerated.
15854
15855 2005-07-06  Martin Baulig  <martin@ximian.com>
15856
15857         * icall.c
15858         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
15859
15860         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
15861
15862 2005-07-06  Martin Baulig  <martin@ximian.com>
15863
15864         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
15865         we're doing a signature-only comparision; fixes #74945.
15866
15867 2005-07-06  Martin Baulig  <martin@ximian.com>
15868
15869         * class-internals.h (MonoGenericClass): Moved some things out into
15870         a new `MonoInflatedGenericClass' type.  
15871         (MonoInflatedGenericClass): New type; the `klass' of a
15872         `MonoGenericClass' is now computed lazyly in
15873         mono_get_inflated_generic_class().      
15874
15875         * class.c (mono_get_inflated_generic_class): New public function.
15876         (mono_class_inflate_generic_method): Removed the unused
15877         `MonoClass *' argument.
15878         (setup_generic_vtable): Don't call mono_get_inflated_method() on
15879         all the methods.
15880         (mono_class_create_generic): Make this static and merge it with
15881         mono_class_create_generic_2(); we're now called automatically from
15882         mono_get_inflated_generic_class().
15883
15884         * loader.c (mono_method_signature): Call
15885         mono_get_inflated_method() here.
15886
15887 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
15888
15889         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
15890         type of fields with RVA.
15891
15892         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
15893         for this pseudo class.
15894         (my_mono_class_from_generic_parameter): Likewise.
15895         (mono_class_init): Allow interfaces to have cctors.
15896
15897 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
15898
15899         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
15900         lazily for AOT methods.
15901
15902 2005-07-05  Martin Baulig  <martin@ximian.com>
15903
15904         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
15905         returns FALSE for a successful match, not TRUE.
15906
15907 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
15908
15909         * loader.c (mono_method_get_index): Optimize this a bit.
15910
15911 2005-07-04  Martin Baulig  <martin@ximian.com>
15912
15913         * class.c
15914         (class_compute_field_layout): Move the check for generic type
15915         definitions into mono_class_layout_fields().  Fixes #74684.
15916         (mono_class_from_generic_parameter): Correctly compute
15917         `klass->parent'; fixes #75457.
15918
15919         * reflection.c (register_assembly, register_module): Make sure
15920         `domain->rejobject_hash' is already created.
15921
15922 2005-07-02  Martin Baulig  <martin@ximian.com>
15923
15924         * class-internals.h
15925         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
15926         `MonoDynamicGenericClass'.      
15927
15928 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
15929
15930         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
15931         returned by a field getter is null, since null is a valid value.
15932
15933 2005-07-01  Martin Baulig  <martin@ximian.com>
15934
15935         * reflection.c (mono_reflection_generic_class_initialize): Update
15936         the `dgclass->fields [i].parent' to the correct class.
15937         (mono_image_get_fieldref_token): Use the declaring type, not the
15938         reflected type.
15939
15940 2005-07-01  Martin Baulig  <martin@ximian.com>
15941
15942         * loader.c (find_method): Also look in the interfaces; fixes #75429.
15943
15944 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
15945
15946         * threads.c (thread_cleanup): assert that thread != NULL
15947         (wait_for_tids_or_state_change): We were using the wrong variable
15948         when accessing wait->threads. `i' was always out of the bounds of
15949         the array.
15950
15951 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15952
15953         * loader.c: map user32 and kernel32 to libMonoSupportW
15954
15955 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
15956
15957         * appdomain.c (unload_thread_main): Mark this as WINAPI.
15958
15959 2005-06-28  Martin Baulig  <martin@ximian.com>
15960
15961         * loader.c (method_from_methodspec): Fix #75334.
15962
15963 2005-06-28  Martin Baulig  <martin@ximian.com>
15964
15965         Fix #74953 - Arrays now implement the generic IList<T> interface
15966         on the 2.0 platform.
15967
15968         * class-internals.h (MonoDefaults): Added `generic_array_class'.
15969
15970         * reflection.c (mono_class_bind_generic_parameters): New public
15971         function; similar to mono_reflection_bind_generic_parameters(),
15972         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
15973
15974         * domain.c (mono_init_internal): Try to initialize.
15975         `mono_defaults.generic_array_class' here; this'll only succeed if
15976         we're using the 2.0 corlib.
15977
15978         * icall.c
15979         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
15980         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
15981         (mono_lookup_internal_call): Added support for nested classes.
15982
15983         * loader.c
15984         (mono_get_method_from_token): Set `result->signature->pinvoke' if
15985         we're an interncall and have generic arguments.
15986
15987         * class.c
15988         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
15989         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
15990         instance of System.Array.InternalArray<T> for arrays, so they
15991         implement the generic IList<T> interface.
15992
15993 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
15994
15995         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
15996         (chastamar@yahoo.com). Fixes #75374.    
15997
15998 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
15999
16000         * culture-info-table.h: regenerated.
16001
16002 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16003
16004         * icall.c: handle spaces correctly for base64 strings.
16005
16006 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
16007
16008         * *.c: Kill some warnings.
16009
16010 2005-06-23  Duncan Mak  <duncan@novell.com>
16011
16012         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
16013         that this builds on Solaris 10 (x86).
16014
16015 2005-06-23  Martin Baulig  <martin@ximian.com>
16016
16017         * class.c
16018         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
16019         generic type definitions.
16020
16021 2005-06-23  Martin Baulig  <martin@ximian.com>
16022
16023         Fix #75331.
16024
16025         * metadata.c (mono_class_get_overrides): Renamed to
16026         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
16027         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
16028         pass it to mono_get_method_full().
16029
16030 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
16031
16032         * reflection.c (mono_reflection_create_runtime_class): take the
16033         mono_domain_lock in this method. Prevents deadlocks
16034
16035 2005-06-22  Martin Baulig  <martin@ximian.com>
16036
16037         * loader.c (method_from_methodspec): Fix #75330.
16038
16039 2005-06-22  Martin Baulig  <martin@ximian.com>
16040
16041         * reflection.c (type_get_qualified_name): Use
16042         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
16043         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
16044         argument; use it if we don't have an assembly name.
16045
16046 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
16047
16048         * object.c: In mono_message_init, set "copy out" flag for in
16049         parameters with the [Out] flag.
16050
16051 2005-06-21  Martin Baulig  <martin@ximian.com>
16052
16053         * class.c
16054         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
16055         and MONO_TYPE_PTR.
16056
16057 2005-06-21  Martin Baulig  <martin@ximian.com>
16058
16059         * class.c (mono_class_init): Don't initialize `class->fields' for
16060         generic instances since they're initialized again in
16061         compute_field_layout(). 
16062         (compute_field_layout): Set the field's `generic_info' here; fix
16063         #75320. 
16064
16065 2005-06-21  Martin Baulig  <martin@ximian.com>
16066
16067         * class-internals.h
16068         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
16069
16070         * metadata.c (mono_metadata_generic_method_equal): Also
16071         distinguish the `generic_class'; fixes #75334.
16072
16073 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16074
16075         * domain.c:
16076         * appdomain.c:
16077         * domain-internals.h:
16078         * reflection.c: 'domain_assemblies' field is now protected by its own
16079         lock. Don't call into managed code to run the AssemblyLoad event if we
16080         now there are no registered delegates for it.
16081
16082 2005-06-20  Martin Baulig  <martin@ximian.com>
16083
16084         * class.c (mono_class_is_assignable_from): Use a custom version of
16085         mono_class_has_parent() to make things work for generic instances;
16086         fix #75300.
16087
16088 2005-06-20  Martin Baulig  <martin@ximian.com>
16089
16090         * loader.c (method_from_methodspec): Apply a patch from
16091         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
16092
16093 2005-06-20  Martin Baulig  <martin@ximian.com>
16094
16095         * class.c (mono_class_init): Reverted Zoltan's last change; it
16096         breaks generics.
16097
16098 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
16099
16100         * threads.c (wait_for_tids_or_state_change): Add missing locking.
16101
16102 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16103
16104         * socket-io.c: fix the index in the socket array for writable/error
16105         sockets. Fixes bug #75306.
16106
16107 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
16108
16109         * class.c (mono_class_init): Allow interfaces to have static ctors.
16110
16111 2005-06-17  Martin Baulig  <martin@ximian.com>
16112
16113         * loader.c (method_from_methodspec): Use `context->container' when
16114         parsing the `gmethod->inst'.
16115
16116 2005-06-17  Martin Baulig  <martin@ximian.com>
16117
16118         * class.c (mono_type_get_name_recurse): Don't add the assembly
16119         name for type arguments.
16120
16121 2005-06-15  Martin Baulig  <martin@ximian.com>
16122
16123         * reflection.c (mono_image_get_inflated_method_token): Encode
16124         correct klass; fixes #75260.
16125
16126 2005-06-13 Michal Moskal <malekith@nemerle.org>
16127
16128         * icall.c: Make GetCorrespondingMethod/Constructor take
16129         MonoReflectionMethod method not MonoMethod. Removed
16130         MonoType.GetCorrespondingField, and make
16131         MonoGenericType.GetCorrespondingField take name not
16132         MonoClassField.
16133
16134 2005-06-13  Michal Moskal <malekith@nemerle.org>
16135
16136         * reflection.c (field_encode_signature, encode_locals):
16137          Make sizes of buffers for types larger (for big generic types).
16138          (create_generic_typespec,
16139          mono_reflection_sighelper_get_signature_local,
16140          mono_reflection_sighelper_get_signature_field):
16141          Add asserts for too small buffers.
16142
16143 2005-06-15  Martin Baulig  <martin@ximian.com>
16144
16145         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
16146         if our parent is not a dynamic type.
16147
16148 2005-06-15  Martin Baulig  <martin@ximian.com>
16149
16150         * class-internals.h (MonoTypeNameFormat): New enum.
16151
16152         * class.c
16153         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
16154         (mono_type_get_full_name): Removed.
16155         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
16156         argument instead of the boolean's.
16157
16158         * icall.c (ves_icall_System_MonoType_getFullName):
16159         Added `gboolean assembly_qualified'.    
16160
16161         * reflection.h
16162         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
16163
16164         * reflection.c (mono_reflection_parse_type): Parse the new type
16165         name format.
16166
16167 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16168
16169         * icall.c: no need to convert from utf16 to utf8 and then back again
16170         after the call to GetLogicalDrives.
16171
16172 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16173
16174         * icall.c: frombase64. Fix problems exposed by new tests.
16175
16176 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16177
16178         * icall.c: added internal calls for converting char [] and strings in
16179         base64 into byte [].
16180
16181 2005-06-10  Martin Baulig  <martin@ximian.com>
16182
16183         * class.c (mono_class_create_generic_2): Read the nested classes
16184         from the metadata rather than from `gklass->nested_classes' since
16185         `gklass' might not be initialized yet.
16186
16187 2005-06-09  Duncan Mak  <duncan@novell.com>
16188
16189         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
16190         all public headers. Fixes #74919.
16191
16192 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
16193
16194         * domain.c: The key for proxy_vtable_hash is now a pointer
16195         array. Added new GHashFunc and GCompareFunc functions for this.
16196
16197         * class.h: The list of interfaces in MonoRemoteClass is known in
16198         advance and can't grow (we create a new MonoRemoteClass if needed),
16199         so now the interface array can be allocated together with
16200         MonoRemoteClass.
16201         
16202         * object.c: Added a new method create_remote_class_key.
16203         Fixed mono_remote_class so it does not depend on
16204         mono_upgrade_remote_class.
16205         Removed extend_interface_array.
16206         Added new method clone_remote_class(), which makes a copy of a remote
16207         class and adds a new interface or class to it.
16208         mono_upgrade_remote_class() now creates a new remote class (or gets
16209         it from the cache) if an vtable upgrade is needed. In this way
16210         we make sure that other objects sharing the same remote class
16211         don't get the new vtable with unwanted interfaces.
16212         
16213         * object-internals.h:
16214         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
16215         
16216         * marshal.c: Track changes in mono_upgrade_remote_class().
16217
16218 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
16219         * icall.c: Add runtime methods for obtaining members of inflated
16220         class, which were created from supplied non-inflated members. It
16221         is used in internal Get{Method,Constructor,Field} methods in
16222         System.Type
16223
16224 2005-06-09  Martin Baulig  <martin@ximian.com>
16225
16226         * reflection.c
16227         (mono_reflection_bind_generic_method_parameters): Fix #75169.
16228
16229 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16230         * reflection.c (mono_image_basic_init): Define
16231         Version in MonoDynamicAssembly. 
16232         
16233 2005-06-08  Martin Baulig  <martin@ximian.com>
16234
16235         Fix #75136.
16236
16237         * loader.c
16238         (mono_method_signature_full): New public method; takes a
16239         `MonoGenericContext *'.
16240         (find_method): Use mono_method_signature_full() and pass the
16241         klass'es context to it.
16242
16243         * class.c (mono_class_is_inflated_method): Use
16244         mono_method_signature_full() and pass the context to it.
16245
16246 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
16247
16248         * object.c: add proper locking in mono_remote_class_vtable(),
16249         fixes possible memory corruption.
16250
16251 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
16252
16253         * marshal.c (mono_remoting_marshal_init): set
16254         initialized after initialization.
16255
16256 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
16257
16258         * locales.c : hush.
16259
16260 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
16261
16262         * object.c (extend_interface_array): fix really silly
16263         memory corrupting / comparison bug.
16264
16265 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16266
16267         * reflection.c: Functions added to support the creation
16268         of CustomAttributeData, which includes Attribute data
16269         used by ReflectionOnly methods.
16270
16271         * reflection.h:  mono_reflection_get_custom_attrs_data and
16272          mono_custom_attrs_data_construct added (functions exposed).
16273
16274          * icall.c: Added mono_reflection_get_custom_attrs_data
16275          as icall.
16276         
16277 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
16278
16279         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
16280         lupus's request.
16281
16282 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
16283
16284         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
16285
16286         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
16287         dynamic DllImportAttribute.
16288
16289         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
16290         dynamic DllImportAttribute.
16291
16292         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
16293         Fixes #75162.
16294
16295 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16296
16297         * threads.c: avoid segfault when an unstarted thread is aborted.
16298
16299 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
16300
16301         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
16302         Returns the name and version of the runtime for reporting.
16303
16304 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16305
16306         * appdomain.c: bump corlib version.
16307         * object-internals.h: new field in MonoReflectionAssembly.
16308
16309 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16310
16311         * object-internals.h: Carlos forgot to add this field.
16312
16313 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16314
16315         * icall.c: Added create_version to create instances
16316         of Version of MonoReflectionAssemblyName. This change helps
16317         the AssemblyName tests to keep running fine.
16318         
16319 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
16320   
16321         * object.c (mono_method_return_message_restore): A somehow less
16322         intrusive fix for #75138.
16323
16324 2005-06-03  Raja R Harinath  <rharinath@novell.com>
16325
16326         * object.c (mono_method_return_message_restore): Fix computation
16327         of expected number of out args.
16328
16329 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
16330
16331         * reflection.c (mono_image_get_method_info): Fix the case when the
16332         charset is empty.
16333
16334 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
16335
16336         * object.c: Added missing null check in
16337           mono_method_return_message_restore.
16338
16339 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
16340
16341         * reflection.c (mono_image_get_method_info): Handle the case when
16342         dllentry is empty.
16343
16344 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
16345
16346         * object.c: When creating the vtable for a proxy, take into account
16347         all inherited interfaces, not only the ones registered in
16348         iclass->interfaces. This fixs bug #74996.
16349         Also, in mono_method_return_message_restore, verify that the array
16350         of out args has the expected lengh.
16351
16352 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16353
16354         * socket-io.c: update the timeout in Poll when the call is interrupte.
16355
16356 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16357
16358         * socket-io.c: support abort/suspend in Select_internal after last
16359         change.
16360
16361 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16362
16363         * threadpool.c: remove warning.
16364
16365 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16366
16367         * icall.c:
16368         * socket-io.[ch]: Select_internal uses poll() now when available, thus
16369         removing the 1024 limit from select(). Runtime part of the fix for
16370         bug #71203.
16371
16372 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16373
16374         * socket-io.c: when resolving the addresses for the same
16375         host returned by gethostname(), get the local IPs from the interface
16376         list. Loopback addresses are discarded if the are interfaces up with
16377         non-loopback ones. Fixes bug #63265.
16378
16379 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
16380
16381         * appdomain.c, verify.c, object-internals.h, reflection.c:
16382         bumped corlib number to 36, and added new extra_flags field
16383         to ReflectionMethodBuilder and friends.  Fixes #75060.
16384
16385 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
16386
16387         * gc.c: register a new weak link only if the object is non-null
16388         (fixes bug#75047).
16389
16390 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
16391
16392         * culture-info.h : short time pattern too.
16393
16394 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
16395
16396         * culture-info.h : expand long time pattern string length.
16397
16398 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16399
16400         * culture-info-table.h : update (more French date format; #72788).
16401
16402 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
16403
16404         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
16405         the method is static. Fixes #75029.
16406
16407 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
16408
16409         * reflection.c: Update the table_idx field of method builders after
16410         saving the module, since it can change. This is a workaround for
16411         bug #74914. 
16412
16413 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16414
16415         * culture-info-table.h : update (additional French date format).
16416
16417 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
16418
16419         * icall.c (ves_icall_type_Equals): Revert last change.
16420         
16421         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
16422
16423         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
16424
16425 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
16426
16427         * class-internals.h: Added executioncontext_class field to 
16428         MonoDefaults structure.
16429         * domain.c: Cache System.Threading.ExecutionContext class in 
16430         mono_defaults.
16431         * object.c: Capture the ExecutionContext for asynchroneous calls in
16432          mono_async_result_new.
16433         * object-internals.h: Added execution_context and original_context 
16434         fields to MonoAsyncResult. Added execution_context to MonoThread.
16435         * security-manager.c|.h: Added mono_get_context_capture_method to 
16436         return the capture method (if required by the security manager or by
16437         the framework version used).
16438         * threadpool.c: Apply capture (if present) ExecutionContext in 
16439         mono_async_invoke and revert to original context after it completes.
16440
16441 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
16442
16443         * culture-info-table.h : updated (real hacky solution for zh-CHT).
16444
16445 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
16446
16447         * culture-info-table.h : zh-CHT related workaround.
16448
16449 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
16450
16451         * marshal.c (emit_marshal_custom): Add some error checking and call the
16452         methods in the ICustomMarshaler interface. Fixes #74875.
16453         
16454         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
16455         native->managed wrappers.
16456
16457 2005-05-12  Martin Baulig  <martin@ximian.com>
16458
16459         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
16460         here and use the loader lock.
16461
16462         * mono-debug.c: Properly lock when the debugger is not attached.
16463         (mono_debug_init): Release the initial lock if we're not running
16464         in the debugger.
16465
16466 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
16467
16468         * marshal.c (emit_marshal_custom): Pass through NULL values without
16469         calling the custom marshalling routines.
16470
16471         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
16472         conversion in structures. Fixes #74882.
16473
16474 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
16475
16476         * culture-info-table.h : zh-* cultures were missing.
16477
16478 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
16479
16480         * threads.c: Added a new event background_change_event which is signaled
16481         when a thread changes its background mode.
16482         Moved here several checks previously done in managed code. The checks
16483         require the thread lock, and using the thread lock in managed code
16484         can result in deadlocks.
16485         Merged Start_internal and Thread_internal into a single method. Now 
16486         Thread_internal does all work of creating and starting a thread.
16487         Added icalls for setting and getting the state of the object. Moved from
16488         managed code to avoid locking there.
16489         Added wait_for_tids_or_state_change() which is called instad of
16490         wait_for_tids when waiting for non-backround threads to end. This method
16491         will return if one of the threads ends or the background_change_event
16492         is signaled.
16493         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
16494         the background mode. This method signals the background_change_event
16495         event.
16496         * icall.c:
16497         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
16498         removed Start_internal.
16499         
16500 2005-05-11  Martin Baulig  <martin@ximian.com>
16501
16502         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
16503         to order of some fields to get proper alignment on 64-bit machines.
16504
16505 2005-05-11  Martin Baulig  <martin@ximian.com>
16506
16507         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
16508         changes as they're broken and completely fuck up the debugger.
16509
16510         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
16511
16512 2005-05-10  Martin Baulig  <martin@ximian.com>
16513
16514         * reflection.c (mono_reflection_generic_class_initialize): Don't
16515         call mono_class_setup_parent() here.
16516
16517 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16518
16519         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
16520         send/receive timeout use an integer in milliseconds. We were using a
16521         struct timeval.
16522
16523 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16524
16525         * locales.c:
16526         (internal_get_cultures): reserve the first slot of the array for the
16527         InvariantCulture, which will be filled in managed code.
16528
16529 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
16530
16531         * reflection.c (mono_image_fill_module_table): Initialize the
16532         GENERATION field as well.
16533
16534 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16535
16536         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
16537         Monitor.Enter on the object.
16538
16539 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
16540
16541         * threads.c: Enable the wait for running threads when exiting.
16542         * icall.c: Suspend all threads before exiting.
16543
16544 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
16545
16546         * assembly.c (mono_assembly_load_reference): Fix warning.
16547
16548 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16549
16550         * threadpool.c: changed the default number of threads per cpu. From now
16551         on, the default will be 20 + (5 * number of cpus) instead of 50.
16552
16553 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
16554
16555         * loader.c (mono_method_get_signature_full): Add locking here.
16556
16557 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
16558
16559         * appdomain.c: Moved methods for parsing and freeing assembly
16560         names to assembly.c.
16561         * assembly.c, domain-internals.h: Created public methods for parsing
16562         assembly names. Fixed mono_assembly_load_with_partial_name:
16563         it now finds the best match, taking into account the version,
16564         token and culture specified in the partial name. Also return
16565         the latest version if no version information is specified.
16566
16567 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
16568
16569         * threadpool.c: replace check for SocketAsyncCall class.
16570
16571 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16572
16573         * threadpool-internals.h:
16574         * Makefile.am: added threadpool-internals.h
16575
16576         * threadpool.c: call mono_unhandled_exception on exceptions not handled
16577         that happen in threadpool threads (tested on MS).
16578         (mono_thread_pool_remove_socket): new function that dispatch any pending
16579         AIO call on a socket that is closing. By now only epoll really needs it,
16580         as select/poll wake up when the socket closes.
16581
16582
16583         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
16584
16585 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
16586
16587         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
16588
16589 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
16590
16591         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
16592
16593 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
16594
16595         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
16596         has an abort request, convert it into a suspend request.
16597
16598 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
16599
16600         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
16601         warning for the usage of `UnmanagedFunctionPointerAttribute' which
16602         is not supported yet.
16603
16604 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16605
16606         * image.c: register assemblies loaded from data (bundles) in the loaded
16607         assemblies hash. Fixes bug #74772.
16608
16609 2005-04-29  Martin Baulig  <martin@ximian.com>
16610
16611         * class.c (mono_type_get_name_recurse): Update to the new naming
16612         schema from the latest .NET 2.x beta2.
16613         (mono_class_setup_vtable_general): If we're a generic instance,
16614         copy the vtable from our generic type definition and inflate all
16615         the methods in it.
16616
16617         * loader.c (find_method): Update to the new naming schema from the
16618         latest .NET 2.x beta2.
16619
16620 2005-04-29  Raja R Harinath  <harinath@gmail.com>
16621
16622         * class.c (mono_class_init): Add a mono_loader_unlock to the
16623         #74734 fix.
16624
16625 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
16626
16627         * icall.c (ves_icall_System_Environment_Exit): Remove the 
16628         suspend_all_other_threads () call for the time being, since it can hang.
16629
16630         * threads.c (mono_thread_manage): Similarly, disable the waiting for
16631         the background threads to exit, since it can also hang.
16632
16633         * class.c (mono_class_init): Applied patch from Ankit Jain 
16634         (radical@gmail.com). Avoid pending init errors when a field refers
16635         to a nested class using a typeref. Fixes #74734.
16636
16637         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
16638         this for dynamic modules.
16639
16640 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16641
16642         * threads.c: don't wait for threads that are in the process of aborting
16643         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
16644         and waiting for background threads to finish. This makes xsp and
16645         mod-mono-server exit without random length delays and/or hangs.
16646
16647 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16648
16649         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
16650
16651 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
16652
16653         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
16654         dynamic types to prevent infinite loops. Fixes #74727.
16655
16656         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
16657         ..._is_assignable_to.
16658
16659 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
16660
16661         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
16662
16663 2005-04-25  Martin Baulig  <martin@ximian.com>
16664
16665         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
16666
16667         * domain.c
16668         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
16669
16670         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
16671
16672         * reflection.c (build_compressed_metadata): Set metadata header
16673         version to 2.0.
16674
16675 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
16676
16677         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
16678         number into an integral and a decimal part. Fixes #70473.
16679
16680         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
16681
16682 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
16683
16684         * culture-info-table.h : reflected the latest locale-builder output.
16685
16686 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16687
16688         * threadpool.c: check for SuspendRequested too when deciding if
16689         mono_thread_interruption_checkpoint should be called.
16690
16691 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16692
16693         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
16694         * threads.c: remove interruption_mutex and use Interlocked instead. When
16695         suspending all the threads, wait for all the suspended events at once.
16696         If we're shutting down and get an APC that is going to be queued,
16697         call mono_thread_execute_interruption immediately, as the thread might
16698         be sleeping on a pthread condition or mutex.
16699
16700         * icall.c: call mono_runtime_set_shutting_down before suspending the
16701         threads.
16702
16703         Fixes bug #74693. And now xsp is happier when exiting.
16704
16705 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
16706
16707         * loader.c (mono_stack_walk): Fix #74690.
16708
16709 2005-04-22  Martin Baulig  <martin@ximian.com>
16710
16711         * mono-debug.h (MonoDebugMethodJitInfo): Added
16712         `MonoDebugMethodJitInfo *jit'.
16713
16714         * mono-debug.c (mono_debug_read_method): Cache the
16715         MonoDebugMethodJitInfo in `address->jit'.
16716         (mono_debug_free_method_jit_info): New public method.
16717
16718 2005-04-22  Martin Baulig  <martin@ximian.com>
16719
16720         * class.c (mono_class_is_assignable_from): Disallow
16721         type parameter -> interface.
16722
16723 2005-04-21  Dick Porter  <dick@ximian.com>
16724
16725         * threads.c (mono_thread_create): Turn an assertion into an error.
16726
16727 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
16728
16729         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
16730         
16731         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
16732         Fix some gcc 4.0 warnings.
16733
16734 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
16735
16736         * file-io.c: fix alt dir separator char on unix systems
16737         and cleanup (fixes bug #71214).
16738
16739 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
16740
16741         * marshal.c: Use CALLVIRT instead of CALL when dispatching
16742         a call to a remote domain, since the method may be an
16743         interface method in the client domain. This fixes bug #74192.
16744
16745 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16746
16747         * threadpool.c: recv/send are now performed before going back to managed
16748         code to save one transition.
16749
16750 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16751
16752         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
16753
16754         * metadata/threadpool.c: removed hack to workaround the bug above.
16755
16756         Fixes bug #74618.
16757
16758 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
16759
16760         * reflection.c reflection.h: Fix handling of parameter defaults in
16761         dynamic methods. Also fixes handling of parameter attributes.
16762         Fixes #74609.
16763
16764         * mono-debug.c (mono_debug_close_image): Fix warning.
16765
16766 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16767
16768         * socket-io.h: replaced old unused field with new 'blocking'.
16769         * threadpool.c: restore socket blocking state on windows(tm).
16770
16771 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
16772
16773         * icall.c: don't return the codebase in the AssemblyName[] returned by
16774         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
16775         * object-internals.h: Removed FIXME (fields were presents) and fixed
16776         versioncompat declaration.
16777
16778 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16779
16780         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
16781         not closed, so don't cleanup when it happens.
16782
16783 2005-04-13  Chris Toshok  <toshok@ximian.com>
16784
16785         * mono-debug-debugger.h: change prototype for
16786         mono_debugger_lookup_type.
16787
16788         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
16789         this function, although it should probably be named
16790         mono_debugger_init_type.
16791
16792 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16793
16794         * threadpool.c: fix non-AIO case.
16795
16796 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
16797
16798         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
16799         the built-in profiler to measure just JIT compilation times.
16800
16801 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16802
16803         * threadpool.c: the epollfd might be closed by another thread at
16804         any time, so ignore EBADF at treat it as a "we're closing" sign.
16805
16806 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16807
16808         * threadpool.c: release the semaphores with a count equals to the number
16809         of working threads in both IO and regular pools. Fixed typo that messed
16810         up the count of IO pool threads. Don't initialize the pipe handles if
16811         we're using epoll.
16812
16813 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16814
16815         * threadpool.c: some systems don't like a NULL when deleting the socket
16816         from epoll.
16817
16818 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16819
16820         * threadpool.c: fix semaphore allocation.
16821
16822 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16823
16824         * threadpool.c: added epoll() based implementation for asynchronous IO
16825         that is used instead of the default poll() when available.
16826         It can be disabled by setting MONO_DISABLE_AIO.
16827
16828 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16829
16830         * threadpool.c: windows needs 'closesocket' and instead of returning
16831         0 when the stream is closed while in select, it returns -1. Fixes bug
16832         #74573.
16833
16834 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
16835
16836         * class.c (class_compute_field_layout): Fix the regression caused by
16837         the previous try.
16838
16839 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16840
16841         * threadpool.c: separate pool for socket async. IO.
16842         * threadpool.h: mono_max_worker_threads is not a global any more.
16843
16844 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
16845
16846         * class.c (class_compute_field_layout): Fix #74549.
16847
16848 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16849
16850         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
16851         use 2 connected sockets instead.
16852
16853 2005-04-08  Miguel de Icaza  <miguel@novell.com>
16854
16855         * mono-config.c: Add new entry point for mkbundle
16856         mono_config_parse_memory. 
16857
16858 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16859
16860         * threadpool.c: removed another unused function.
16861
16862 2005-04-08  Ankit Jain  <radical@corewars.org>
16863
16864         * reflection.c (get_default_param_value_blobs): Add 'types'
16865         parameter to get the types encoded in the constant table.
16866         (mono_param_get_objects): Use the type from the constant table,
16867         not the type of the parameter, when creating default values.
16868         Handle null default values correctly.
16869
16870 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16871
16872         * file-io.c:
16873         * file-io.h:
16874         * threadpool.c:
16875         * threadpool.h:
16876         * icall.c:
16877         * socket-io.c: removed dead code for async IO.
16878
16879 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16880
16881         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
16882
16883         * threadpool.c: intercept socket async. calls and pass them to a thread
16884         that is polling and dispatching the job items to the threadpool as
16885         socket become ready. Fixes bugs #71217, #71933.
16886
16887         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
16888         between char and short/ushort arrays.
16889
16890         * socket-io.c: remove dead code.
16891
16892 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
16893
16894         * locales.c,
16895           icall.c : removed InternalToUpper_Comp() and
16896           InternalToLower_Comp().
16897
16898 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
16899
16900         * char-conversions.h : The tables were incorrectly generated. Should
16901           be generated against invariant culture.
16902
16903 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
16904
16905         * object.c (mono_runtime_invoke_array): Fix return value when 
16906         passing pre-created valuetype objects to ctors.
16907
16908         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
16909         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
16910         Fixes #74338.
16911
16912 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
16913
16914         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
16915         only used with --security and hides the wrong corlib version error.
16916
16917 2005-03-30  Joshua Tauberer  <tauberer@for.net>
16918
16919         * class.c: Changed mono_class_name_from_token so that types
16920         outside of a namespace don't have an initial period.  Improved
16921         the g_warning message used in _mono_class_get when loading
16922         fails.
16923         * assembly.c: In mono_assembly_load_reference, when an assembly
16924         can't be found, "No such file or directory" is misleading and
16925         unhelpful because a few paths were checked for the presence of
16926         the assembly.  When that happens (ENOENT), display a nicer
16927         message indicating the directories that were searched.  In all
16928         cases, the warning is made easier to read for non-hackers.
16929
16930 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
16931
16932         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
16933         project/solution.
16934         * appdomain.h|domain.c: Removed inline from functions.
16935         * appdomain.c: Reduced warnings when compiling on windows.
16936         * icall.c: Fixed output_debug declaration to gunichar2*.
16937         * mono-config.c: Reduced warnings when compiling on windows.
16938         * rand.c: Added missing "windows.h". Added missing return value.
16939         * rawbuffer.c: Added missing winsock2.h for windows.
16940         * sysmath.h: Added mono-compiler.h header to allow/ease 
16941         compilation with non-GCC compilers.
16942         * threads.c: Fixed declarations to compile with VS.NET C compiler.
16943         Removed cast warnings.
16944
16945         Adapted from the work of J Lothian (for VC6).
16946
16947 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
16948
16949         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
16950         from default_path.
16951
16952 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
16953
16954         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
16955         the 2.0 profile.
16956
16957 2005-03-27  Raja R Harinath  <harinath@gmail.com>
16958
16959         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
16960         has to be in $(exec_prefix).  $(prefix) is for arch-independent
16961         stuff, and it would probably use $(prefix)/share rather than
16962         $(prefix)/lib.
16963
16964 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16965
16966         * console-io.c: added 2 includes that might be missing.
16967
16968 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
16969
16970         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
16971         profile.
16972
16973         * reflection.c (create_custom_attr): Allocate the params array using
16974         alloca so it gets GC tracking.
16975
16976 2005-03-23  Chris Toshok  <toshok@ximian.com>
16977
16978         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
16979         out some spew.
16980
16981 2005-03-24  Raja R Harinath  <rharinath@novell.com>
16982
16983         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
16984         changes to pick up any changes in prefix, etc.
16985
16986 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
16987
16988         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
16989         
16990         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
16991         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
16992
16993 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
16994
16995         * class-internals.h object-internals.h class.c reflection.c: Extend the
16996         mono_lookup_dynamic_token () function to return the class of the
16997         token as well. 
16998
16999         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
17000         well. Fixes #73848.
17001
17002 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
17003
17004         * security-manager.c: Skip inheritance checks for intra-corlib
17005         class inheritance and method overrides. This skips a lot of checks
17006         and (anyway) permissions cannot work until corlib is loaded.
17007
17008 2005-03-23  Martin Baulig  <martin@ximian.com>
17009
17010         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
17011         MONO_TYPE_GENERICINST.  
17012
17013 2005-03-23  Martin Baulig  <martin@ximian.com>
17014
17015         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
17016
17017 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17018
17019         * class.c: added locking comments to some functions.
17020         Cache the interface offsets arrays (saves about 20 KB
17021         of runtime memory in a typical app).
17022         Reduce the time overhead in mono_class_setup_supertypes ().
17023
17024 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
17025
17026         * icall.c: speedup and fix leaks in GetMethodsByName and
17027         GetPropertiesByName.
17028
17029 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17030
17031         * reflection.c: some locking fixes.
17032
17033 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
17034
17035         * metadata.c: added missing break in case statement.
17036
17037 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
17038
17039         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
17040         typedbyref return values. Fixes #73941.
17041
17042 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
17043
17044         * security-manager.c|h: Added demandunmanaged method and 
17045         suppressunmanagedcodesecurity class to MonoSecurityManager.
17046         Renamed aptc class to allowpartiallytrustedcallers.
17047
17048 2005-03-17  Martin Baulig  <martin@ximian.com>
17049
17050         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
17051
17052 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17053
17054         * file-io.c: disabled file async. IO using aio_*. It uses the
17055         threadpool now. Workaround for bug #73718.
17056
17057 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17058
17059         * assembly.h, mono-config.c: added code to deal with bundled configs
17060         for bundled assemblies.
17061
17062 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
17063
17064         * *.c, private.h: cleanup, removing old private.h header file.
17065
17066 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
17067
17068         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
17069         and throw_on_unmappable_char attributes.
17070
17071 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
17072
17073         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
17074         _ProcessName_internal.
17075
17076 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
17077
17078         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
17079         #73631.
17080
17081         * icall.c threads.c threads-types.h: Remove slothash icalls as they
17082         are no longer used.
17083
17084 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
17085
17086         * object.c (compute_class_bitmap): Add support for generics. Fixes
17087         #73527.
17088
17089 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
17090
17091         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
17092
17093 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17094
17095         * filewatcher.c: commented out the code for windows watcher, as we don't
17096         use it (we use the managed implementation instead).
17097
17098 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
17099
17100         * object-internals.h (MonoThread): Remove 'unused1' field.
17101
17102         * appdomain.c: Bump corlib version.
17103
17104         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
17105
17106         * reflection.c (mono_reflection_create_runtime_class): Remove the
17107         AssemblyBuilder.Save optimization since it causes too many problems.
17108
17109 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
17110
17111         * exception.c|h: Added mono_get_exception_reflection_type_load to
17112         create a ReflectionTypeLoadException object.
17113         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
17114         to return NULL is a InheritanceDemand fails during reflection. Updated
17115         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
17116         ReflectionTypeLoadException if an InheritanceDemand fails during 
17117         reflection. Added icall mapping for GetLinkDemandSecurity.
17118         * security-manager.c|h: Added ves_icall_System_Security_
17119         SecurityManager_GetLinkDemandSecurity internal call to return the
17120         class and methods permissions set for a LinkDemand. Removed unused
17121         fields in MonoSecurityManager.
17122
17123 2005-03-10  Martin Baulig  <martin@ximian.com>
17124
17125         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
17126         it's a generic instance.
17127
17128 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
17129
17130         * reflection.c (mono_get_object_from_blob): Applied patch from
17131         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
17132
17133         * class.c (mono_class_is_assignable_from): Another try at fixing 
17134         #73469 without breaking anything.
17135
17136 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
17137
17138         * class.c: (mono_class_is_assignable_from): Revert the last changes
17139         since they don't work with generics.
17140         
17141         * class.c (mono_class_is_assignable_from): Fix build bustage.
17142
17143         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
17144         the managed IsAssignableFrom method. Fixes #73469.
17145
17146         * reflection.c (mono_reflection_call_is_assignable_from): New helper
17147         function.
17148
17149 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
17150
17151         * object.c (mono_load_remote_field_new): Fix returning uninitialized
17152         memory when the remoting callback does not sets the out arguments.
17153         Fixes #73007.
17154
17155         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
17156         by mistake.
17157
17158         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
17159
17160         * object-internals.h (MonoStackFrame): Sync with managed object layout.
17161
17162         * appdomain.c: Bump corlib version.
17163
17164 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
17165
17166         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
17167         function.
17168
17169         * threads.c (mono_thread_attach): Detect threads which are not started
17170         by the GC pthread wrappers.
17171
17172 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
17173
17174         * icall.c: Added new icall for RNG.
17175         * rand.c|h: Added new icall to open the RNG. This allows to share a 
17176         single handle on Linux to access /dev/urandom and fix #73183.
17177
17178 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
17179
17180         * object.c: setting the new vtable in a transparent proxy object must
17181         not change the GC descriptor.
17182
17183 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17184
17185         * object.c: fixed compilation without GCJ support.
17186         * reflection.c: for runtime-created types ensure klass->has_references
17187         is correct (bug #73215).
17188
17189 2005-03-02  Martin Baulig  <martin@ximian.com>
17190
17191         * class.c (mono_class_is_assignable_from): Make this work if
17192         `oklass' is a generic instance; fixes #72831.
17193
17194 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
17195
17196         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
17197         with hasthis set.
17198         
17199         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
17200
17201         * marshal.c: Reorganize native->managed marshalling code to also use
17202         the emit_marshal_... functions.
17203
17204 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
17205
17206         * object.c: typed allocs have issues with bitmap sizes > 30,
17207         so check for max_set >= 30.
17208
17209 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
17210
17211         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
17212         managed code. Fixes #73012.
17213
17214         * metadata.h (MonoMarshalSpec): Add elem_mult field.
17215
17216         * metadata.c reflection.c: Load/Emit elem_mult as well.
17217         
17218         * metadata.h (MonoMarshalSpec): Add comment.
17219
17220         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
17221
17222         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
17223         num_elem to -1 if not given.
17224
17225         * object-internals.h (MonoReflectionMarshal): Add has_size field.
17226
17227         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
17228         given values.
17229
17230 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
17231
17232         * null-gc.c (mono_gc_free_fixed): Was not compilable.
17233
17234 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
17235
17236         * reflection.c (encode_marshal_blob): Encode param_num field as well.
17237
17238         * object-internals.h (MonoReflectionMarshal): Add param_num field.
17239
17240 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
17241
17242         * object.c: generalized the reference bitmap creation
17243         and added hooks for the new GC.
17244         * class-internals.c: removed the gc_bitmap field from MonoClass.
17245
17246 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17247
17248         * domain.c: help the compiler to produce better code
17249         in mono_jit_info_table_find ().
17250
17251 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
17252
17253         * object.c: make all allocations look typed.
17254
17255 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17256
17257         * socket-io.c: load Mono.Posix if it's not loaded already
17258         (fixes bug#73033).
17259
17260 2005-02-24  Martin Baulig  <martin@ximian.com>
17261
17262         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
17263         * reflection.c (dup_type): Likewise.
17264
17265 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
17266
17267         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
17268         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
17269
17270 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17271
17272         * domain.c, threads.c, object-internals.h: make the critical thread
17273         local vars use the fast access mode (even when we're compiled in
17274         a lib). Provide accessors to be used by the jit during codegen.
17275
17276 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17277
17278         * appdomain.c: Changed hook functios behavior to include
17279         support for the reflection only assemblies. Some icalls were changed
17280         to support the mentioned assemblies too. Signatures of static methods
17281         try_assembly_resolve and real_load now have an additional parameter:
17282         refonly.
17283
17284         * assembly.c: General changes to mono_assembly_ methods to support
17285         reflection only api. Functions mono_assembly_open, mono_assembly_load,
17286         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
17287         suffix, to support an additional gbool parameter to specify whether
17288         the assembli is reflection only or not. Created some new hook functions 
17289         to add support for reflection only assemblies. Signatures of static 
17290         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
17291         have now an additional parameter: refonly.
17292
17293         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
17294         indicating whether the assembly is reflection only or not.
17295
17296         * exception.c: Add mono_get_exception_invalid_operation.
17297
17298         * icall.c: Throw an InvalidOperationException when trying to invoke
17299         a property/method/event, or trying to set/get the value of a field.
17300         Also add an icall to retrieve the ref_only flag to the
17301         MonoReflectionAssembly.
17302
17303 2005-02-23  Chris Toshok  <toshok@ximian.com>
17304
17305         Part of fix for #72827.
17306         * mono-debug.c (mono_debug_add_method): add lexical block data to
17307         the info we write.  Kind of a hack at the moment - we copy the
17308         lexical block info from the MonoDebugMethodInfo to the
17309         MonoDebugMethodJitInfo here, before writing it.
17310         (mono_debug_read_method): read the lexical block info.
17311
17312         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
17313
17314         * debug-mono-symfile.h: add lexical block support.
17315
17316         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
17317         support.
17318
17319 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17320
17321         * loader.c (mono_lookup_pinvoke_call): Fix warning.
17322
17323         * object.c (mono_runtime_free_method): Call mono_free_method () and
17324         put the TODOs there.
17325
17326         * loader.c (mono_free_method): Free up most memory allocated for 
17327         dynamic methods.
17328
17329 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
17330
17331         * reflection.c: properly flag a Type argument to a
17332         named custom attr value (bug #72248).
17333
17334 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17335
17336         * reflection.c: reduce code duplication in named custom
17337         attribute encoding.
17338
17339 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
17340
17341         * reflection.c: properly encode custom attrs of type object
17342         (bug #72649).
17343
17344 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17345
17346         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
17347
17348 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
17349
17350         * socket-io.c: load System.dll if it's not loaded already
17351         (bug #72850 and #70477).
17352
17353 2005-02-21  Martin Baulig  <martin@ximian.com>
17354
17355         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
17356         generic instances.
17357
17358 2005-02-21  Martin Baulig  <martin@ximian.com>
17359
17360         * reflection.c (mono_image_build_metadata): We also need to
17361         "fixup" the MethodImpl table after we computed the final method
17362         indices.  Call fixup_methodimpl() to do that.
17363         (fixup_methodimpl): New private method.
17364
17365 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
17366
17367         * assembly.c: special case mscorlib.dll (bug#72536),
17368         patch from Carlos Alberto Cortez.
17369
17370 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
17371
17372         * threads-types.h threads.c: Fix build bustage.
17373
17374         * threads.c: Use a union for long<->double conversions.
17375
17376         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
17377         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
17378
17379         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
17380         containing the checkpoint call with NOT_TAKEN.
17381         
17382         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
17383         checkpoint before pushing the arguments, so they won't have to be
17384         spilled to stack.
17385
17386 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17387
17388         * domain.c, assembly.c, domain-internals.h: make some data
17389         const and relocation-free.
17390
17391 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
17392
17393         * object.c, appdomain.c, class-internals.h: introduce the
17394         MonoClassRuntimeInfo structure to hold the info needed to
17395         use a class at runtime. Made mono_class_vtable() lock-free
17396         for all the appdomains.
17397
17398 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
17399
17400         * metadata-internals.h, image.c: introduce a per-image mempool to
17401         be used for memory that has the same lifetime as the image.
17402
17403 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
17404
17405         * domain.c: In mono_init_internal(), instead of selecting the first
17406         runtime version supported by an executable, get a list of all
17407         supported versions and select the one for which an mscorlib exists
17408         (since even if the runtime supports a given version, it doesn't mean
17409         that the framework for that version is installed).
17410         Modified get_runtimes_from_exe to support this behavior.
17411         In supported_runtimes, added information about additional system
17412         assembly versions.
17413         
17414         * assembly.c: Added support for more than one system assembly version
17415         per runtime version. Updated the assembly list.
17416         In mono_assembly_remap_version, removed the initial version check,
17417         since we don't know to which version we need to compare until we
17418         get the version set on which the assembly is based.
17419         Moved the code for loading corlib into the new method
17420         mono_assembly_load_corlib(), so it can be used by the initialization
17421         code.
17422         
17423         * domain-internals.h: Updated data structures and added declaration
17424         for mono_assembly_load_corlib.
17425
17426 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17427
17428         * reflection.c (resolve_object): Fix the creation of the signature in 
17429         the SignatureHelper case.
17430
17431         * assembly.c (mono_assembly_remap_version): Fix binary search.
17432         
17433 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
17434  
17435         * class.c: Added inheritance check when a method is overloaded (from a
17436         virtual method or when implementing an interface) and when a class is
17437         inherited. Added functions to set a failure for a class and to 
17438         retreive the exception from a failure.
17439         * class-internals.h: Added fields to MonoClass to keep the exception
17440         information status for inheritance (or other exceptions) to be thrown
17441         later (i.e. not at load time).
17442         * object.c: Throw the inheritance SecurityException when a type is to 
17443         be created with either class or method inheritance violations.
17444         * reflection.c|h: Fix when getting declsec from a class. Removed 
17445         unrequired code for class. Improved sanity in parameter naming.
17446         * security-manager.c|h: Added functions to check for class and method
17447         inheritance.
17448
17449 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17450
17451         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
17452         and has_finalize in dynamic types as well.
17453
17454 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
17455
17456         * culture-info-table.h : fixed currency format for en-GB (and so on).
17457
17458 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
17459
17460         * gc.c: ensure the GC handles never have 0 as a value.
17461
17462 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
17463
17464         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
17465         a pointer to a struct to unmanaged code. Fixes #72625.
17466
17467 2005-02-16  Martin Baulig  <martin@ximian.com>
17468
17469         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
17470
17471 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
17472
17473         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
17474
17475 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
17476
17477         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
17478
17479         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
17480         UnmanagedFunctionPointerAttribute, use it for determining calling convention
17481         etc. Fixes #71471.
17482
17483         * reflection.c (mono_custom_attrs_get_attr): New helper function.
17484
17485         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
17486
17487 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
17488
17489         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
17490         changes to make the current context a field in MonoThread.
17491
17492 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
17493
17494         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
17495         the last change.
17496         
17497         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
17498         extracted from mono_marshal_get_native_wrapper.
17499
17500         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
17501         to create wrappers around native functions.
17502
17503         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
17504         delegates for arbitrary function pointers. Fixes #71472.
17505
17506 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
17507
17508         * threads.c: cleaned up the code a little.
17509
17510 2005-02-15  Martin Baulig  <martin@ximian.com>
17511
17512         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
17513         the data table.
17514
17515         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
17516         allocate larger chunks if needed.
17517
17518 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17519
17520         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
17521         in by mistake.
17522
17523 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
17524
17525         * domain.c: keep the domains in an array and ensure the domain ids
17526         are kept small, so they can be used as indexes to domain-specific data
17527         with a small memory overhead.
17528
17529 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17530
17531         * icall.c: Handle byref types in Type icalls. Fixes #72544.
17532
17533 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
17534
17535         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
17536
17537 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
17538
17539         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
17540
17541         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
17542         values.
17543
17544         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
17545         
17546 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
17547
17548         * domain-internals.h: add the hashtable here.
17549
17550         * class-internals.h: Remove `info' from MonoMethod
17551
17552         * domain.c: Add a new hashtable, jit_trampoline_hash
17553
17554 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
17555
17556         * object.c: don't set the value of static fields
17557         (fixes bug#72494).
17558
17559 2005-02-11  Martin Baulig  <martin@ximian.com>
17560
17561         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
17562         (mono_debug_add_method): Silently ignore the method if it's too big.
17563         (mono_debug_add_type): Likewise.
17564
17565 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
17566
17567         * threads.c, appdomain.c: remove #ifdefs from the code.
17568
17569 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
17570
17571         * metadata-internals.h: Added flags to MonoAssembly to cache the most
17572         common security informations. This allows us to stay in unmanaged code
17573         when doing LinkDemand and it's special cases (except for the first 
17574         time for initialization). The flags a very much used with --security.
17575         * reflection.c|h: Added code to get declarative security attributes 
17576         for LinkDemand and InheritanceDemand. This required to refactor the
17577         existing code for Demand.
17578         * security-manager.c|h: Added new method fields for the special cases
17579         of LinkDemand.
17580
17581 2005-02-10  Martin Baulig  <martin@ximian.com>
17582
17583         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
17584         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
17585
17586 2005-02-10  Martin Baulig  <martin@ximian.com>
17587
17588         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
17589         debugging code; this is almost a complete rewrite.
17590
17591         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
17592
17593 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17594
17595         * domain.c, object.h: expose mono_string_equal () and 
17596         mono_string_hash ().
17597         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
17598         it's implemented in managed code.
17599
17600 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17601
17602         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
17603         lo leak objects between appdomains.
17604
17605 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17606
17607         * assembly.c: old compilers compilation fix from 
17608         robertj@gmx.net (Robert Jordan).
17609
17610 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
17611
17612         * class-internals.h: Little reminder for the future.
17613
17614         * debug-helpers.c: Fix up wrapper_type_names
17615
17616 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17617
17618         * image.c, metadata-internals.h: when loading an image from a file,
17619         mmap all of it and use the same codepaths as when using a
17620         in-memory image: the code is simpler and we use less memory
17621         (both writable and readonly).
17622
17623 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
17624
17625         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
17626         API to alloc runtime data structures that need to be tracked by the
17627         GC and contain pointers.
17628         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
17629         make the code more readable and eventually use a different GC.
17630
17631 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
17632
17633         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
17634         for out arguments.
17635         
17636 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
17637
17638         * object.c: In release_type_locks(), don't release the cctor lock
17639         if it has already been released. This fixes a crash in the
17640         thread5 test.
17641
17642 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17643
17644         * gc.c, marshal.c, icall.c: register a delegate for finalization
17645         only when the native function pointer has been allocated for it.
17646
17647 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
17648
17649         * object.c: cleaned up some code, allocate objects that are
17650         pointer free with the atomic malloc variant. Allocate memory
17651         for static data from the mempool if it's pointer-free.
17652         Allocate the bounds array at the end of the array data, when needed.
17653         * object-internals.h, object.h: move a private function in a private
17654         header.
17655         * class.c: handle missing case in tracking references in fields.
17656
17657 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
17658
17659         * class.c, class-internals.h: keep track if a type has
17660         reference fields in either the instance or static fields.
17661
17662 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
17663
17664         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
17665         and renamed to MonoRuntimeInfo. Added fields to store the expected
17666         framework assembly version. Changed mono_get_framework_version and
17667         mono_get_runtime_version for a single mono_get_runtime_info method.
17668         
17669         * assembly.c: Added method to remap system assembly versions to the
17670         current executing runtime version. Removed old mapping code.
17671         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
17672         
17673         * icall.c, reflection.c: Track api changes.
17674
17675 2005-02-06  Miguel de Icaza  <miguel@novell.com>
17676
17677         * loader.c (method_from_memberref): Improve error reporting,
17678         produce the class name instead of the typeref/typedef index. 
17679
17680 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
17681
17682         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
17683
17684 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17685
17686         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
17687         stdcall and charset name mangling.  Reorganize the code and add
17688         some tracing stuff.
17689
17690 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
17691
17692         * monodiet.c: More iters!
17693
17694         * marshal.c: Iter usage.
17695
17696         * icall.c: Iter usage.
17697
17698         * object.c: Use iters.
17699
17700         * debug-helpers.c: More iters
17701
17702 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17703
17704         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
17705         under win32.
17706
17707 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
17708
17709         * mono-debug-debugger.c: use iters
17710
17711         * class.c, class-internals.h: mono_class_setup_events is static
17712         now
17713
17714         * All callers: use iters
17715
17716 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17717
17718         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
17719         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
17720
17721 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
17722
17723         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
17724
17725         * marshal.h: Add prototypes for ldfld/stfld_remote.
17726
17727         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
17728         this is called during startup.
17729         
17730 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
17731
17732         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
17733         MonoThreadsSync struct private in monitor.c. Changed the way
17734         MonoThreadsSync is allocated so it's faster and there is no
17735         need to keep track of it with a finalizer and it uses less memory.
17736         This also finally allows us to allocate mono objects as ptrfree when
17737         there are no reference fields.
17738
17739 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
17740
17741         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
17742         disappearing link to the GC interface and use them to simplify
17743         the gchandles code.
17744
17745 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
17746
17747         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
17748         stfld_remote which call mono_load/store_field_new. This allows methods
17749         calling ldfld/stfld wrappers to be AOTed.
17750
17751         * console-io.c: Include sys/filio.h under solaris.
17752         
17753         * console-io.c: Include curses.h if needed correctly.
17754
17755 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
17756         
17757         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
17758         method->klass as well.
17759
17760         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
17761
17762         * class.c (mono_class_init): Switch on lazy initialization of 
17763         methods.
17764
17765         * class.c (mono_class_get_finalizer): Handle the case when the 
17766         finalizer is inherited.
17767
17768 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17769
17770         * console-io.c: <curses.h> is needed by term.h on solaris.
17771
17772 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
17773
17774         * icall.c, class-internals.h, monodiet.c, class.c: Remove
17775         mono_class_setup_properties where possible. Remove this ftn from
17776         the header file, and make it static.
17777
17778 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
17779
17780         * loader.c: Add missing setup_... call.
17781
17782         * class.c: Add missing setup_... calls.
17783
17784         * class.c (mono_class_init): Switch on lazy initialization of 
17785         the generic vtable.
17786         
17787         * class.c (mono_class_init): Fix generics broken by the recent changes.
17788
17789         * monodiet.c (handle_type): Add missing setup_... calls.
17790
17791         * class.c: Back out garbage in previous patch.
17792         
17793         * class.c: Add missing setup_... calls.
17794
17795         * class.c (mono_class_get_method_from_name_flags): Avoid calling
17796         mono_class_setup_methods () if possible.
17797
17798         * class-internals.h (MonoClass): Add 'has_cctor' flag.
17799
17800         * class-internals.h (MonoCachedClassInfo): New structure.
17801
17802         * class.c: Initialize properties and events fields of MonoClass lazily.
17803
17804         * class.c: Add infrastructure for lazily initializing the methods and
17805         vtable fields of MonoClass. Not yet used.
17806
17807         * class.c (mono_class_get_finalizer): New helper function.
17808
17809         * class.c: Add infrastructure for loading some class related data from
17810         an AOT file.
17811
17812         * object.c: Add infrastructure for initializing the vtable from data
17813         in the AOT file.
17814
17815         * gc.c (run_finalize): Use mono_class_get_finalizer ().
17816
17817         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
17818         appropriate initialization function before accessing parts of the
17819         MonoClass structure.
17820
17821         * marshal.c: Fix warnings.
17822         
17823         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
17824
17825         * mono-debug-debugger.c (get_exception_message): Use 
17826         mono_class_get_method_from_name_flags ().
17827
17828 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
17829
17830         * reflection.c, appdomain.c: Replace a few manual searches that
17831         Zoltan missed. (Paolo approved this part of my initial patch).
17832
17833 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
17834
17835         * profiler.c: disable recording statistical events at report time.
17836
17837 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17838
17839         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
17840         to byteswap arrays of enum values, too (bug #72080).
17841
17842 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
17843
17844         * appdomain.c (set_domain_search_path): Allow this to be called if
17845         domain->setup is not yet set.
17846
17847         * loader.c (mono_method_get_index): New helper function.
17848
17849         * loader.c reflection.c: Use mono_method_get_index ().
17850
17851         * class.c (mono_class_get_method_from_name_flags): New helper method.
17852
17853         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
17854         this.
17855
17856         * class.c (mono_class_get_cctor): New helper method.
17857
17858         * string-icalls.c object.c class.c marshal.c reflection.c: Use
17859         mono_class_get_method () to look up methods.
17860
17861 2005-02-01  Miguel de Icaza  <miguel@novell.com>
17862
17863         * console-io.c: Fix the build, this should work on Windows.
17864
17865 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
17866
17867         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
17868         be set to null to keep things valid
17869
17870 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17871
17872         * icall.c: added Console 2.0 icalls.
17873         * Makefile.am: added console-io.[ch]
17874         * console-io.[ch]: internal calls for Console 2.0 API.
17875
17876 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17877
17878         * class.c: make sure we consider all the interfaces
17879         when calculating max_interface_id (bug found by
17880         Jeroen Frijters running ikvm).
17881
17882 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
17883
17884         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
17885         valuetype fields to null.
17886
17887         * object.c (set_value): Ditto. Fixes #71669.    
17888
17889 2005-01-31  Martin Baulig  <martin@ximian.com>
17890
17891         * metadata.c (mono_metadata_has_generic_params): New public
17892         function; checks whether something is a generic method.
17893
17894 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
17895
17896         * appdomain.c: fix infinite recursion when adding assemblies.
17897
17898 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
17899
17900         * object.c: Fix small typo to return all items for Environment.
17901         GetCommandLineArgs.
17902
17903 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17904
17905         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
17906         reflection.c: more domain and assembly-unload related fixes
17907         and memory leaks plugs.
17908
17909 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
17910
17911         * 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.
17912
17913 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
17914
17915         * loader.c (mono_method_signature): Make this method lazy
17916         (mono_get_method_from_token): Don't computate the signature here.
17917
17918         Doing this saves quite a bit of memory. I got 90 kb on starting up
17919         monodoc. It should also save some disk reads on startup.
17920
17921         * *: MonoMethod->signature might be NULL now. You *MUST* use
17922         mono_method_signature.
17923
17924 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
17925
17926         * object.c (mono_runtime_get_main_args): Return an array from the
17927         current domain here. Fixes #71938.
17928
17929 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
17930
17931         * monitor.c: formatting changes to comply with the
17932         mono coding style and remove #ifdefs from the code.
17933
17934 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
17935
17936         * metadata.c, private.h: remove some unneeded data
17937         and use a more compact representation for table schemas.
17938
17939 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
17940
17941         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
17942         to get a better distribution in hash tables.
17943         * *.c: use mono_aligned_addr_hash() where appropriate.
17944         * assembly.c: make var static.
17945
17946 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
17947
17948         * domain-internals.h: Put MonoJitInfo on a diet.
17949
17950         * domain.c: Fix a warning.
17951
17952 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17953
17954         * gc.c: rework the gc handles code to reuse handles
17955         when freed.
17956
17957 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
17958
17959         * domain.c: fixed long standing bug in mono_string_equal() which
17960         was brought to light with the ldstr changes.
17961
17962 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
17963
17964         * reflection.c: Remove warning by adding missing include for marshal.h
17965
17966 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17967
17968         * domain.c, object.c: change the ldstr_table to hold
17969         MonoString* as keys: makes the runtime isinterned lookup
17970         faster and simplifies memory management.
17971
17972 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
17973  
17974         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
17975         possible to add imperative security checks before calling the icall.
17976         * reflection.c: Return security attributes on the original MonoMethod
17977         (and not the wrapped one). This fix permissions on icalls.
17978
17979 2005-01-25  Dick Porter  <dick@ximian.com>
17980
17981         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
17982         the check for mktime() support actually test the mktime() return
17983         value.  "Fixes" bug 71682, though the output is still different to
17984         MS.
17985
17986 2005-01-25  Martin Baulig  <martin@ximian.com>
17987
17988         * class.c (mono_class_is_assignable_from): Make this work for
17989         generic instances.
17990
17991 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
17992
17993         * marshal.c (mono_string_utf8_to_builder)
17994         (mono_string_builder_to_utf16): We might not have ownership of the
17995         string. In thise case, we need to create a new buffer.
17996
17997         * object-internals.h (mono_stringbuilder_capacity): sb->str might
17998         be null, in which case, use the default capacity.
17999
18000 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
18001
18002         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
18003         GC events to the profiler.
18004
18005 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
18006
18007         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
18008         if you don't want the GC to run.
18009
18010 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
18011
18012         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
18013         start providing a GC API and keeping different implementations in
18014         their own file.
18015         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
18016
18017 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
18018
18019         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
18020         mmap rather than allocating a huge buffer.
18021         (mono_debug_close_mono_symbol_file): Free the buffer allocated
18022         above.
18023
18024 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
18025
18026         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
18027         and CheckExecutionRights.
18028         * reflection.c|h: Keep the index of the declarative security to be 
18029         used, instead of the pointer, when AOT compiler is used. Also add 
18030         class initialization when requesting demands.
18031         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
18032         CheckExecutionRights. Both properties are now FALSE by default, and
18033         unmodifiable, unless the --security option is used.
18034
18035 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18036
18037         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
18038         reflection.c: properly refcount images and assemblies, many leaks fixed.
18039
18040 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18041
18042         * threadpool.c: increase the timeout for threads in the thread pool to
18043         10s.  Fixes bug #67159.
18044
18045 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
18046
18047         * class-internals.h: Sun's compiler insists on explicit
18048         signed on bit fields to handle then correctly.
18049
18050 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
18051
18052         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
18053         Make the size of the array fit only the number of invalid path
18054         chars that we have.
18055
18056         * class.c (_mono_class_get): Improve the error reporting when a
18057         class referenced is not found, to assist debugging. 
18058
18059 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
18060
18061         * threads.c: fix off-by-one error.
18062         * domain.c: free data allocated in the domain.
18063
18064 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
18065
18066         * reflection.c (mono_method_body_get_object): Fill out exception info
18067         as well.
18068
18069         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
18070         structure.
18071         
18072 2005-01-19  Martin Baulig  <martin@ximian.com>
18073
18074         * loader.c (mono_get_method_constrained): Make this work again.
18075
18076 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
18077
18078         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
18079         guint16 to match the managed side.
18080
18081         * reflection.c (mono_reflection_body_get_object): Fill out local
18082         variables array.
18083
18084         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
18085         as well.
18086
18087         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
18088         'local_var_sig_token'.
18089
18090 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
18091
18092         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
18093         System.Drawing.
18094
18095         * reflection.c (mono_method_body_get_object): Handle abstract and
18096         runtime methods.
18097
18098 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
18099
18100         * marshal.c, loader.c, class-internals.h, reflection.c:
18101         store the emthod data for a wrapper in an array instead of a list.
18102
18103 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
18104
18105         * marshal.c: change the code to allocate memory more
18106         conservatively for method wrappers.
18107
18108 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
18109
18110         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
18111         fields from MonoClass to the marshal info structure where they belong.
18112
18113 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
18114
18115         * class.c, object.c, class-internals.h, marshal.c: rearrange
18116         some fields and tweak some types to lower memory usage.
18117
18118 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
18119
18120         * threads.c (signal_thread_state_change): Handle the case when the
18121         target thread is the current thread.
18122
18123         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
18124
18125         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
18126         emit_ptr_to_object_conv. 
18127
18128         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
18129         marshalling. Fixes #71352.
18130
18131 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
18132
18133         * metadata.h, blob.h: move table enum to blob.h so it can be included
18134         in any header.
18135         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
18136         cut the size of MonoImage/MonoDynamicImage.
18137
18138 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
18139
18140         * profiler.c (mono_profiler_install_simple): Fix default arguments.
18141
18142 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18143
18144         * reflection.c, reflection.h, icall.c: add a function to check
18145         if an attribute type is defined for a metadata object.
18146
18147 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
18148
18149         * object-internals.h: Added some needed fields from StringBuilder class.
18150         * marshal.c: Set the maxCapacity when creating a StringBuilder.
18151
18152 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
18153
18154         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
18155         threads before shutting down the runtime.
18156
18157         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
18158
18159 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
18160
18161         * object-internal.h, threads.c: implement stacksize and 
18162         parameterized thread start functionality (requires
18163         matching corlib). Marked broken code for later removal.
18164
18165 2005-01-12  Martin Baulig  <martin@ximian.com>
18166
18167         * class-internals.h (MonoGenericClass): Moved the `initialized'
18168         flag to MonoDynamicGenericClass, removed `init_pending'.
18169         (MonoGenericInst): Added `is_reference' flag.
18170
18171 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
18172
18173         * reflection.c (mono_image_create_pefile): Only set the pe_offset
18174         inside the MSDOS header. Fixes #71201.
18175
18176         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
18177         gc thread.
18178         (mono_domain_finalize): Ditto.
18179
18180 2005-01-12  Martin Baulig  <martin@ximian.com>
18181
18182         * class.c (mono_get_shared_generic_class): Use the cache for
18183         non-dynamic generic classes.
18184
18185         * class-internals.h (mono_class_create_generic_2): Removed
18186         function prototype, this function is now static inside class.c.
18187
18188         * class.c (mono_class_create_generic_2): Made this static, only
18189         call it from mono_class_init() and mono_class_setup_parent().
18190         (collect_implemented_interfaces_aux): Call mono_class_init() on
18191         the interfaces we collect.
18192         (mono_class_setup_vtable): Call mono_class_init (class->parent).
18193
18194 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18195
18196         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
18197         it a real thread handle.
18198
18199         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
18200         MonoJitExceptionInfo, since each catch clause needs its own variable.
18201         
18202 2005-01-11  Dick Porter  <dick@ximian.com>
18203
18204         * image.c (mono_pe_file_open): New variant on mono_image_open()
18205         that does not set up the CLI metadata; used for FileVersionInfo so
18206         it can get the data for windows binaries too.
18207         
18208         * process.c (process_read_string_block): Don't read off the end of
18209         the StringTable block.
18210
18211         These both fix bug 70766.
18212
18213 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
18214
18215         * gc.c: set some fields to NULL at GC cleanup time.
18216         * threads.c: if we quit the main thread, call exit ().
18217
18218 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18219
18220         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
18221
18222 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
18223
18224         * threads.h, threads.c, object.c: added accessor and settor for
18225         main_thread. Handle it specially when exiting from it: wait
18226         for other foreground threads to exit.
18227
18228 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
18229
18230         * process.c, verify.c: remove some bloat.
18231
18232 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
18233
18234         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
18235         the calling convention to cdecl under win32.
18236
18237 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
18238
18239         * object.c (mono_object_get_size): New function to get the size of
18240         an object instance.
18241
18242         * profiler.c (simple_allocation): Use above.
18243
18244 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
18245
18246         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
18247         ves_icall_System_AppDomain_getRootDomain (as it's not required to
18248         get an appdomain by it's id and we can't assume the root's id is 0).
18249         * domain-internals.h: Change the function prototype to match.
18250         * icall.c: Change the icall table for AppDomain.
18251
18252 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
18253
18254         * locales.c (string_invariant_compare_char): Only compute
18255         GUnicodeTypes in the case where we need them.  Test for ordinality
18256         first and return if so.
18257
18258         From the commit:
18259
18260                 /*
18261                  * FIXME: here we must use the information from c1type and c2type
18262                  * to find out the proper collation, even on the InvariantCulture, the
18263                  * sorting is not done by computing the unicode values, but their
18264                  * actual sort order.
18265                  */
18266
18267 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
18268
18269         * loader.c: for P/Invoke methods, allow the "Internal" shared
18270         library name to refer to the calling process symbol namespace.
18271
18272 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
18273
18274         * Makefile.am: Add the security manager to the build.
18275         * security-manager.c|h: New. Initialization of the security manager.
18276
18277 2005-01-07  Dick Porter  <dick@ximian.com>
18278
18279         * threads.c: 
18280         * monitor.c: Update thread state during Monitor and WaitHandle
18281         waits.  Fixes bug 71031.
18282
18283 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
18284
18285         * reflection.c (property_encode_signature): Correctly handle when the
18286         property has no methods.
18287
18288 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
18289
18290         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
18291         
18292         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
18293         fields from mb, not rmb. Fixes #71017.
18294
18295         * marshal.c (emit_ptr_to_str_conv): Add support for 
18296         ByValTStr -> string conversion. Fixes #71015.
18297
18298         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
18299
18300         * mempool.c (mono_mempool_contains_addr): New helper function.
18301
18302 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18303
18304         * metadata.c (mono_metadata_compute_size): Fix size calculation of
18305         HasSematics encoded fields.
18306         
18307         * metadata.c (mono_type_to_unmanaged): Improve error message for 
18308         invalid string marshalling.
18309
18310         * metadata.c: Fix warnings.
18311         
18312 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18313
18314         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
18315         profiler support.
18316
18317 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18318
18319         * domain.c object.c domain-internals.h: Revert part of r38077 since the
18320         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
18321         tests.
18322
18323 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
18324
18325         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
18326         so methods containing these can be AOTed.
18327
18328 2005-01-03  Martin Baulig  <martin@ximian.com>
18329
18330         * loader.c (find_method): Removed the hack for generic instances.
18331         (method_from_memberref): If our parent is a generic instance, pass
18332         its generic type definition to find_method() and then inflate the
18333         method.
18334         (mono_get_method_constrained): Pass the generic type definition to
18335         find_method() and inflate the method later.
18336
18337         * class-internals.h (MonoStats): Added `generic_class_count'.
18338
18339         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
18340         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
18341
18342         * reflection.c (mono_custom_attrs_from_params): Don't ignore
18343         generic type definitions.
18344
18345 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
18346
18347         * loader.c icall.c: Fix warnings.
18348
18349 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
18350
18351         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
18352         blittable types. Fixes #70864.
18353
18354 2004-12-29  Martin Baulig  <martin@ximian.com>
18355
18356         * icall.c
18357         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
18358
18359         * reflection.c (mono_method_get_object): Create a
18360         "System.Reflection.MonoGenericMethod" for inflated methods; don't
18361         call mono_get_inflated_method().
18362
18363         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
18364
18365 2004-12-27  Martin Baulig  <martin@ximian.com>
18366
18367         * class-internals.h (MonoMethod): Added `is_inflated' flag.
18368         (MonoMethodInflated): Added `inflated' field.
18369
18370         * class.c (mono_class_inflate_generic_method): Don't really
18371         inflate the method here; just set the `is_inflated' flag in the
18372         MonoMethod.
18373         (mono_class_get_inflated_method): Actually inflate the method here
18374         if it's not already inflated; we use the MonoMethodInflated's new
18375         `inflated' field as a cache.
18376
18377 2004-12-26  Martin Baulig  <martin@ximian.com>
18378
18379         * class.c
18380         (inflate_generic_class): Moved some code out of inflate_generic_type().
18381         (mono_class_inflate_generic_method): If we're already inflated,
18382         inflate the context and use the declaring method; ie. make sure
18383         the declaring method of an inflated method is always the generic
18384         method definition.
18385         (mono_class_create_from_typedef): Create
18386         `class->generic_container->context->gclass'.
18387
18388 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
18389
18390         * metadata-internals.h, marshal.c, reflection.c: More
18391         MonoGHashTable->GHashTable.
18392
18393         * domain-internals.h, class.c: Change MonoGHashTable's into
18394         GHashTables for some cases where no gc stuff is used
18395
18396         All users: update apis
18397
18398 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
18399
18400         * metadata.c (builtin_types): Make this `const'. Makes this get
18401         put into the shareable section.
18402         (mono_metadata_init): Casts to make gcc happy.
18403
18404 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
18405
18406         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
18407
18408 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
18409
18410         * icall.c: Added an internal call to retrieve the position and length
18411         of assembly-level declarative security attributes (RequestMinimum, 
18412         RequestOptional and RequestRefuse). This is used by the Assembly class
18413         to re-create the corresponding permission sets.
18414
18415 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
18416
18417         * marshal.c: fix the stelemref wrapper to be type correct
18418         (and faster).
18419
18420 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
18421
18422         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
18423         to do key & 0x7fffffff. Hashtable already does this. It just
18424         results in longer code.
18425
18426 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
18427
18428         * appdomain.c: Bump corlib version.
18429         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
18430         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
18431         * reflection.c|h: Add functions to get declarative security infos
18432         (blob position and length) for assemblies, classes and methods.
18433
18434 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
18435
18436         * reflection.c: sort the constant table (bug #70693).
18437
18438 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
18439
18440         * object-internals.h, threads.c, domain.c: add accessors for
18441         the MonoThread and MonoDomain tls keys.
18442
18443 2004-12-18  Martin Baulig  <martin@ximian.com>
18444
18445         * class.c (inflate_generic_type): If we're inflating a generic
18446         instance, set `ngclass->context->container = context->container';
18447         ie. the container we inflated into.
18448
18449         * metadata.c (mono_metadata_parse_generic_param): Reflect above
18450         inflate_generic_type() changes.
18451
18452 2004-12-17  Martin Baulig  <martin@ximian.com>
18453
18454         * class-internals.h
18455         (MonoGenericClass): Replaced `MonoType *generic_type' with
18456         `MonoClass *generic_class'.  Removed `dynamic_info'; if
18457         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
18458         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
18459
18460 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
18461
18462         * exception.c (mono_exception_from_token): New helper function.
18463
18464 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
18465
18466         * assembly.c (mono_assembly_load_with_partial_name): Call 
18467         mono_assembly_loaded before invoking the preload hooks. Fixes
18468         #70564.
18469
18470         * object-internals.h (MonoThread): Change culture_info and 
18471         ui_culture_info into an array.
18472
18473         * threads.c: Cache culture info objects from more than one appdomain.
18474
18475         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
18476         current UI culture.
18477
18478 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
18479
18480         * threads.h threads.c appdomain.c: Clear the culture_info field of
18481         all threads during unloading if they point to an object in the dying
18482         appdomain.
18483
18484 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
18485
18486         * culture-info.h (TextInfoEntry): New struct
18487         * object-internals.h: sync with managed
18488         * locales.c: fill the `text_info_data' field
18489         * culture-info-tables.h: update
18490
18491 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
18492
18493         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
18494         collector.
18495
18496 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
18497
18498         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
18499         (ves_icall_ModuleBuilder_getMethodToken): Ditto
18500
18501 2004-12-12  Martin Baulig  <martin@ximian.com>
18502
18503         * mono-debug-debugger.c (write_type): If we're an enum and the
18504         builtin types have already been initialized, call mono_class_init().
18505
18506 2004-12-11  Martin Baulig  <martin@ximian.com>
18507
18508         * metadata.c (mono_metadata_load_generic_params): Added
18509         `MonoGenericContainer *parent_container' argument; automatically
18510         compute `container->is_method'; pass the correct owner to
18511         get_constraints().      
18512
18513         * reflection.c (compare_genericparam): Sort the GenericParam table
18514         according to increasing owners. 
18515
18516 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
18517
18518         * profiler.c: allow disabling the default profiler.
18519
18520 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
18521
18522         * decimal.c, icall.c: allow disabling System.Decimal support.
18523
18524 2004-12-09  Marek Safar <marek.safar@seznam.cz>
18525
18526         * reflection.c: Add support for null attribute arguments.
18527
18528 2004-12-09  Martin Baulig  <martin@ximian.com>
18529
18530         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
18531         names to get rid of compiler warnings.
18532
18533 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18534
18535         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
18536         mono_marshal_load_type_info (). Fixes #69625.
18537         (mono_marshal_get_ptr_to_struct): Likewise.
18538
18539 2004-12-08  Martin Baulig  <martin@ximian.com>
18540
18541         * mono-debug.h: Bumped version number to 47.
18542
18543         * mono-debug-debugger.c
18544         (mono_debugger_event_handler, mono_debugger_event): Take two
18545         guint64 arguments insteed of a gpointer and a guint32.  
18546
18547 2004-12-08  Martin Baulig  <martin@ximian.com>
18548
18549         * debug-mono-symfile.h
18550         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
18551         `address' to `native_offset'.
18552
18553 2004-12-08  Martin Baulig  <martin@ximian.com>
18554
18555         * class.c (mono_class_create_from_typespec): Only inflate if we
18556         either have `context->gclass' or `context->gmethod'.
18557
18558 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18559
18560         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
18561
18562         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
18563
18564         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
18565
18566         * reflection.c (mono_assembly_get_object): Remove the workaround put
18567         in for the release.
18568         
18569         * appdomain.c: Use the corlib_internal field from MonoAssembly.
18570
18571         * appdomain.c: Bump corlib version.
18572
18573         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
18574         be visible in other appdomains.
18575
18576 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
18577
18578         * threads.c: Interlocked inc and dec for longs were messed up,
18579         use a KISS based impl for this. Fixes 70234
18580
18581 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
18582
18583         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
18584
18585 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
18586
18587         * icall.c: fix to follow policy not to allow struct
18588         arguments in icalls.
18589
18590 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18591
18592         * process.c: make the patch that handles spaces in file paths work
18593         on mono/windows too.
18594
18595 2004-12-06  Martin Baulig  <martin@ximian.com>
18596
18597         * class.c (mono_class_create_generic): Call
18598         mono_class_setup_supertypes() if we're dynamic.
18599         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
18600
18601 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
18602
18603         * object-internals.h: Add new fields to MonoThread.
18604
18605         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18606
18607         * icall.c threads-types.h threads.c: Add new icalls.
18608
18609         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
18610
18611         * object-internals.h (MonoReflectionAssembly): Sync object layout with
18612         managed side.
18613
18614         * appdomain.c: Bump corlib version.
18615
18616         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
18617         internal assemblies. Fixes #69181.
18618
18619 2004-12-05  Martin Baulig  <martin@ximian.com>
18620
18621         * class.c (mono_class_inflate_generic_signature): Make this a
18622         no-op if `context' is NULL or we don't have any type parameters;
18623         also copy `sentinelpos'.        
18624
18625 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
18626
18627         * image.c: Add unbox_wrapper_cache.
18628
18629         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
18630
18631         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
18632         function generator.
18633         
18634         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
18635         Fixes #70173.
18636
18637         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
18638         
18639 2004-12-04  Martin Baulig  <martin@ximian.com>
18640
18641         * loader.c (mono_method_get_signature_full): New public function;
18642         like mono_method_get_signature(), but with an additional
18643         `MonoGenericContext *' argument.
18644
18645         * class.c (mono_class_inflate_generic_signature): Formerly known
18646         as inflate_generic_signature(); make this public.
18647
18648 2004-12-04  Martin Baulig  <martin@ximian.com>
18649
18650         * metadata.c
18651         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
18652         instead of a `MonoGenericContainer *'.  
18653         (mono_metadata_parse_array_full): Likewise.
18654         (mono_metadata_parse_signature_full): Likewise.
18655         (mono_metadata_parse_method_signature_full): Likewise.
18656         (mono_metadata_parse_generic_inst): Likewise.
18657         (mono_metadata_parse_generic_param): Likewise.
18658         (mono_metadata_parse_mh_full): Likewise.
18659         (mono_type_create_from_typespec_full): Likewise.
18660
18661 2004-12-03  Martin Baulig  <martin@ximian.com>
18662
18663         * class-internals.h (MonoGenericContainer): Replaced the
18664         `MonoGenericContext * pointer with a `MonoGenericContext'
18665         structure and made it the first element.
18666
18667 2004-12-03  Martin Baulig  <martin@ximian.com>
18668
18669         * class.c
18670         (inflate_generic_type): Set the `context->container' when creating
18671         a new MonoGenericContext.
18672         (mono_class_inflate_generic_method): Likewise.
18673         (mono_class_create_from_typespec): Just use `context->container'
18674         to get the container.
18675
18676         * loader.c (method_from_methodspec): Set `context->parent' from
18677         `context->container' - and if that's a method container, use its
18678         parent.  Also set the `context->container' when creating a new
18679         MonoGenericContext.
18680         (mono_get_method_from_token): Use just `context->container' to get
18681         the container.
18682
18683         * metadata.c (do_mono_metadata_parse_generic_class): Also set
18684         `gclass->context->container'.
18685
18686         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
18687         the `context->container' when creating a new MonoGenericContext.
18688
18689 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
18690
18691         * reflection.c (compare_genericparam): Sort params with identical
18692         owner by their number. Fixes gen-111 on sparc.
18693
18694 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
18695
18696         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
18697         around the domain changes.
18698
18699         * appdomain.c (mono_domain_unload): Handle the case when the thread
18700         calling Unload is itself being aborted during unloading. Fixes #70022.
18701
18702         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
18703
18704         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
18705         checkpoint_func as an icall so it gets a wrapper.
18706         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
18707         in the cross-appdomain wrappers too.
18708
18709         * threads.c (mono_thread_has_appdomain_ref): Make this public.
18710
18711         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
18712
18713         * reflection.c: Fix some memory leaks.
18714         
18715 2004-12-02  Martin Baulig  <martin@ximian.com>
18716
18717         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
18718
18719         * metadata.c (generic_class_cache): New static hashtable.
18720         (mono_metadata_lookup_generic_class): New public method.
18721
18722 2004-12-02  Martin Baulig  <martin@ximian.com>
18723
18724         * class.c (mono_class_create_from_typedef): Call
18725         mono_class_setup_parent() and mono_class_create_mono_type() before
18726         parsing the interfaces.
18727
18728 2004-12-02  Martin Baulig  <martin@ximian.com>
18729
18730         * metadata.c (generic_inst_cache): New static hashtable.
18731         (mono_metadata_lookup_generic_inst): New public function.
18732         (mono_metadata_inflate_generic_inst): New public function.
18733         (mono_metadata_parse_generic_inst): New public function.
18734         (do_mono_metadata_parse_generic_class): Use the new
18735         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
18736         since this'll also use the cache.
18737
18738         * reflection.c (mono_reflection_bind_generic_method_parameters):
18739         Use mono_metadata_lookup_generic_inst() to use the new cache.
18740
18741         * class.c (inflate_mono_type): Use
18742         mono_metadata_inflate_generic_inst() to inflate a generic
18743         instance; this'll also use the new cache.
18744
18745         * loader.c (method_from_methodspec): Use
18746         mono_metadata_parse_generic_inst() and
18747         mono_metadata_inflate_generic_inst() rather than parsing it
18748         manually, so we can use the new cache.
18749
18750 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
18751
18752         * threads.c (wait_for_tids): Do not incorrectly free threads when 
18753         the wait times out.
18754
18755 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
18756
18757         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
18758         iter->args based on whether parameters are passed in registers (i.e.
18759         MONO_ARCH_REGPARMS is defined)
18760
18761 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
18762
18763         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
18764         the exception message. Fixes #70070.
18765         (method_from_methodspec): Fix warnings.
18766
18767 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18768
18769         * process.c: (complete_path) return the path quoted
18770
18771 2004-12-01  Martin Baulig  <martin@ximian.com>
18772
18773         * class-internals.h (MonoGenericInst): New structure.
18774         (MonoGenericClass): Replaced `type_argc', `type_argv' and
18775         `is_open' with `MonoGenericInst *inst'.
18776         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
18777         `is_open' with `MonoGenericInst *inst'.
18778
18779 2004-11-30  Martin Baulig  <martin@ximian.com>
18780
18781         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
18782
18783         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
18784         to `generic_class_cache'.
18785
18786         * metadata.c
18787         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
18788         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
18789         (mono_generic_inst_is_valuetype): Renamed to
18790         mono_generic_class_is_valuetype().
18791
18792         * class-internals.h
18793         (MonoGenericInst): Renamed to MonoGenericClass.
18794         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
18795         (MonoClass): Renamed `generic_inst' to `generic_class'.
18796         (MonoGenericContext): Renamed `ginst' to `gclass'.
18797
18798         * object-internals.h
18799         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
18800
18801         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
18802         mono_reflection_generic_class_initialize().
18803
18804         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
18805         now known as "System.Reflection.MonoGenericClass".
18806         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
18807
18808 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
18809
18810         * class-internals.h: Added a flag field to MonoClass to cache the
18811         declarative security attributes actions associated with the class.
18812         * domain-internals.h: Added booleans to MonoJitInfo to cache the
18813         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
18814         applicable to the JITted method.
18815         * reflection.c|h: Added functions to extract (as flags) which security
18816         actions are available (declaratively) for a method, class or assembly.
18817         * metadata.c|h: Added functions to search the declarative security
18818         table in the metadata.
18819         
18820 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
18821
18822         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
18823         EXPORTEDTYPES are already in the class name cache, so there is no
18824         need to add extra code here to look at them. Just removes a bit of
18825         cruft.
18826
18827         (ves_icall_System_Environment_get_TickCount): No need for #if
18828         WINDOWS. We already have the code in io-layer.
18829
18830 2004-11-28  Martin Baulig  <martin@ximian.com>
18831
18832         * loader.c
18833         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
18834         Fixes gen-112.cs.
18835
18836 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
18837
18838         * assembly.c (do_mono_assembly_open): Instead of having a
18839         conditional WITH_BUNDLE, incorporate support for bundles here, by
18840         having a global `bundles' variable holding a pointer to the actual
18841         bundles. 
18842
18843         (mono_register_bundled_assemblies): New API call used by the
18844         bundle code. 
18845
18846         See mkbundle.1 for details.
18847         
18848 2004-11-27  Martin Baulig  <martin@ximian.com>
18849
18850         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
18851         the vtable for generic methods.
18852
18853 2004-11-26  Martin Baulig  <martin@ximian.com>
18854
18855         * metadata.c
18856         (mono_metadata_generic_method_hash): New public function.
18857         (mono_metadata_generic_method_equal): Likewise.
18858
18859         * class-internals.h
18860         (MonoGenericContainer): Added `GHashTable *method_hash'.
18861
18862         * reflection.c (ReflectionMethodBuilder): Added
18863         `MonoGenericContainer *generic_container'.
18864         (reflection_methodbuilder_to_mono_method): Don't create a new
18865         MonoGenericContainer each time we're called.
18866         (mono_reflection_bind_generic_method_parameters): Use
18867         `container->method_hash' to cache the results so we don't create a
18868         different method if we're called several times with the same
18869         arguments.
18870
18871         * loader.c (method_from_methodspec): Use the new
18872         `container->method_hash' here, too.
18873
18874 2004-11-26  Martin Baulig  <martin@ximian.com>
18875
18876         * class.c (inflate_generic_signature): Correctly compute
18877         `res->has_type_parameters'.
18878         (mono_class_vtable): Use the `has_type_parameters' flag to
18879         determine whether we're a generic method.
18880
18881         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
18882
18883 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
18884
18885         * object.c (mono_runtime_run_main): Fix a small memory leak.
18886
18887 2004-11-25  Martin Baulig  <martin@ximian.com>
18888
18889         * class.c (set_generic_param_owner): Fixed the loop.
18890
18891 2004-11-25  Martin Baulig  <martin@ximian.com>
18892
18893         * object.c (mono_class_vtable): Don't create any JIT wrappers for
18894         generic methods.
18895
18896 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
18897
18898         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
18899         names. Fixes #69787.
18900
18901 2004-11-24  Martin Baulig  <martin@ximian.com>
18902
18903         * class.c (mono_class_create_generic_2): If we don't have a
18904         `ginst->parent', inflate `gklass->parent' to get our parent.
18905
18906 2004-11-24  Martin Baulig  <martin@ximian.com>
18907
18908         * reflection.c (compare_genericparam): Correctly sort the
18909         GenericParam table; fixes #69779.
18910
18911 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
18912
18913         * reflection.c: When writing a PE file, don't create a huge
18914         buffer in memory. Just write the arrays we have to the file.
18915         This reduces memory usage.
18916
18917         * metadata-internals.h: MonoDynamicStream pefile is no longer used
18918         globally.
18919
18920 2004-11-17  Martin Baulig  <martin@ximian.com>
18921
18922         * class.c (mono_class_init): Don't setup `class->parent' for
18923         dynamic instances; moved this to mono_class_generic_2().
18924         (mono_class_create_generic): Also set `klass->inited' for dynamic
18925         generic instances.
18926         (mono_class_create_generic_2): Don't do anything for dynamic
18927         generic instances.  Set `klass->parent' here and also call
18928         mono_class_setup_parent() here. 
18929
18930         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
18931         `MonoType *parent' argument; set `ginst->parent' before calling
18932         mono_class_create_generic_2(), so we set the correct parent.
18933
18934 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
18935
18936         * reflection.c: allow getting attributes from ModuleBuilder
18937         (used by ikvm).
18938
18939 2004-11-17  Martin Baulig  <martin@ximian.com>
18940
18941         * class.c (mono_class_create_from_typedef): If a type parameter is
18942         inherited from an outer class, set its owner to that class.
18943
18944 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
18945
18946         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
18947           for (int*) written size. This fixes bug #69592.
18948
18949 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
18950
18951         * icall.c: Added IsAuthenticodePresnet internal call.
18952         * image.c|h: New function that check a MonoImage for an Authenticode
18953         signature in the certificate PE data directory.
18954         * security.c|h: New internal call to ask the runtime if an 
18955         Authenticode signature seems referenced in the PE header.
18956
18957 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
18958
18959         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
18960
18961         * reflection.c (mono_image_create_pefile): Free the assembly streams
18962         after writing out the assembly file.
18963
18964         * object.c (mono_runtime_run_main): Fix small memory leak.
18965
18966         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
18967         property access modifiers. Fixes #69389.
18968
18969 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
18970
18971         * domain.c, object.c, object-internals.h, domain-internals.h,
18972         object.h, marshal.c: keep dynamic code info per domain.
18973
18974 2004-11-15  Martin Baulig  <martin@ximian.com>
18975
18976         * class.c (mono_type_get_name_recurse): Put type arguments in
18977         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
18978         see bug #68387.
18979
18980 2004-11-15  Martin Baulig  <martin@ximian.com>
18981
18982         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
18983         (mono_class_setup_vtable): When computing `the_cname' for a
18984         generic instance, don't include the namespace since we'd otherwise
18985         add it twice.
18986
18987 2004-11-15  Martin Baulig  <martin@ximian.com>
18988
18989         * class.c (mono_class_create_generic): Changed return type to void.
18990         (mono_class_create_generic_2): New public function; setup
18991         `class->method', `class->field' and `class->interfaces' here
18992         instead of in mono_class_init().
18993
18994         * class.h (mono_class_create_generic): Moved to class-internals.h.
18995
18996 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
18997
18998         * reflection.c (mono_image_create_pefile): take a file HANDLE.
18999         rather than writing to memory, write to this file. Right now,
19000         we are just writting into a buffer, and copying that. However
19001         we can avoid the buffer later.
19002
19003         (mono_dynamic_stream_reset): new function
19004
19005         * icall.c, object-internals.h: update for the above.
19006
19007 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
19008
19009         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
19010         have been using gc'd memory. First it is slower, unlikely
19011         the comment in the source code said, secondly, it increases
19012         our footprint to do it in the gc.
19013
19014         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
19015         the method so that it does not have to copy to managed code.
19016
19017 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
19018
19019         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
19020
19021 2004-11-12  Martin Baulig  <martin@localhost>
19022
19023         * reflection.c (mono_image_create_token): Allow generic method
19024         definitions here, since they may appear in an `.override'; see
19025         gen-98/gen-99 for an example.
19026
19027 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
19028
19029         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
19030         #69365.
19031
19032         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
19033         descriptive.
19034
19035 2004-11-11  Martin Baulig  <martin@ximian.com>
19036
19037         * class.c (mono_class_setup_vtable): In an explicit interface
19038         implementation, the method name now includes the arity.
19039
19040 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
19041
19042         * object.c (mono_array_full_copy): Fix warning.
19043
19044 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
19045
19046         * appdomain.c: Removed look_for_method_by_name(). Use the new method
19047         mono_class_get_method_from_name() instead.
19048         
19049         * class-internals.h: Added two new types of wrappers. 
19050         Added MonoRemotingTarget enum. Added new trampoline function type, which
19051         takes an additional MonoRemotingTarget value as parameter, so it is
19052         possible to request a trampoline for a specific target.
19053         
19054         * class.c: Added new mono_class_get_method_from_name() method.
19055         
19056         * class.h: In MonoRemoteClass, we can have now to vtables, one for
19057         general remoting sinks and one specific for cross domain calls.
19058         
19059         * debug-helpers.c: Added new wrapper names.
19060         
19061         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
19062         of a remote class.
19063         
19064         * image.c: Porperly delete value objects form the remoting invoke hashtable.
19065         
19066         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
19067         with several other methods (mono_marshal_get_xappdomain_dispatch,
19068         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
19069         and others) can generate a fast remoting wrapper for cross domain calls.
19070         More information can be found in docs/remoting.
19071         Other changes: Removed mono_find_method_by_name, and used
19072         mono_class_get_method_from_name instead.
19073         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
19074         is stored in the remoting invoke hashtable.
19075         
19076         * marshal.h: published the new method for getting the xdomain wrapper,
19077         and also added a method for getting the adequate wrapper for a given
19078         method and target.
19079         
19080         * object-internals.h, object.c: Added a couple of methods for capying and
19081         cloning arrays.
19082         Modified mono_install_remoting_trampoline, which takes the new remoting
19083         trampoline that has a remoting target as parameter.
19084         mono_class_proxy_vtable now also takes a remoting target as parameter, and
19085         will return the most suitable vtable for the target.
19086         Added mono_remote_class_vtable, which returns the vtable of a remote class
19087         (which can be the normal remoting vtable or the xdomain vtable).
19088         
19089         * threads.c: the xdomain invoke and dispatch wrappers must also be
19090         protected against interruptions.
19091
19092 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19093
19094         * icall.c: use memmove in BlockCopyInternal when the source and
19095         destination arrays are the same.
19096
19097 2004-11-09  Martin Baulig  <martin@ximian.com>
19098
19099         * class-internals.h (MonoGenericContainer): Removed `method' and
19100         `signature', replaced them with `is_method' and `is_signature'
19101         flags.  Added `context'.
19102
19103         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
19104         instead of a `MonoGenericContainer *'.
19105
19106         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
19107         for dynamic type parameters.
19108         (mono_metadata_load_generic_params): Setup `container->context'.
19109
19110         * reflection.c (mono_reflection_setup_generic_class): Setup
19111         `tb->generic_container->context'.
19112         (do_mono_reflection_bind_generic_parameters): Use
19113         mono_class_inflate_generic_type() to correctly inflate types,
19114         rather than using our own hack just for MONO_TYPE_VAR.
19115
19116 2004-11-09  Martin Baulig  <martin@ximian.com>
19117
19118         * class.c (mono_class_inflate_generic_method): Small fix; don't
19119         crash here.
19120
19121         * icall.c
19122         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
19123         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
19124         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
19125         (ves_icall_Type_BindGenericParameters): Likewise.
19126         (ves_icall_Type_get_IsGenericInstance): Likewise.
19127         (ves_icall_Type_GetGenericParameterPosition): Likewise.
19128         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
19129         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
19130         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19131
19132 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
19133
19134         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
19135         assembly versions and public key tokens. Fixes #69113.
19136
19137 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
19138
19139         * metadata.c: fix bug introduced with the type cache changes
19140         on 2004-11-06.
19141
19142 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
19143
19144         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
19145         the MonoClass pointer instead of the token in exception clauses.
19146         * reflection.c: updates for the above and make the code not depend
19147         on the structure of MonoExceptionClause.
19148
19149 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
19150
19151         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19152         Add support for dynamic assemblies. Fixes #69114.
19153
19154         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
19155
19156 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
19157
19158         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
19159         since most only those methods use it. the code member of
19160         MonoMethodPInvoke was dead, so that can be removed too. Also,
19161         remove inline_count (again, not used), and move slot so that it
19162         can share bits with some other flags. This saves 8 bytes in the
19163         structure and gives us about 50 kb back for mcs helloworld.cs
19164
19165         * *.[ch]: Do naming changes for the above.
19166
19167         * loader.c (mono_method_get_header): Lazily init the header
19168         on first access.
19169         (mono_get_method_from_token): don't init the header here
19170         (mono_free_method): the header may never be allocated
19171
19172         Overall, this saves 150 kb of unmanaged allocations
19173         for mcs helloworld.cs. That accounts for 10% of the unmanaged
19174         memory at runtime.
19175         
19176         * loader.c, loader.h (mono_method_get_header): new accessor.
19177
19178         * *.[ch]: use the above method. Prepares us to lazily load
19179         the header.
19180
19181         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
19182         three warnings, which are actual bugs (see 69206).
19183
19184         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
19185         unused. Saves a cool 4 bytes / method.
19186
19187 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
19188
19189         * metadata.c (builtin_types): Add types for System.Object here.
19190         (mono_metadata_parse_type_full): Cache MonoType*'s that are
19191         for a class or valuetype from klass->this_arg or klass->byval_arg.
19192
19193         On mcs for a hello world, this gets us down from 21836 MonoType's
19194         to 14560.
19195
19196         (mono_metadata_free_type): Account for the above change.
19197
19198 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
19199
19200         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
19201         exception instead of asserting if name is null.
19202         (ves_icall_System_AppDomain_GetData): Ditto.
19203
19204 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
19205
19206         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
19207         EnumBuilder.
19208
19209         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
19210         Return NULL when the domain does not have entry_assembly set.
19211
19212         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
19213         Add a 'resource_modules' argument.
19214         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
19215
19216         * reflection.c (mono_reflection_create_runtime_class): Move setting
19217         of wastypebuilder here, so mono_get_type_object () returns a MonoType
19218         for enums too.
19219
19220         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
19221         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
19222         Throw an ArgumentNullException if 'ptr' is null.
19223
19224         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
19225         assemblies here. Fixes #69020.
19226
19227 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
19228
19229         * reflection.c (build_compressed_metadata): Fix the previous patch for
19230         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
19231         the stack.
19232
19233 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
19234
19235         * assembly.c (mono_assembly_names_equal): Allow a match if one of
19236         the cultures is false. Fixes #69090.
19237
19238         * reflection.c (build_compressed_metadata): Fix invalid memory read 
19239         detected by valgrind.
19240         
19241         * reflection.c (mono_reflection_get_type): Avoid triggering a 
19242         TypeResolve multiple times for the same type. Fixes #65577.
19243
19244 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
19245
19246         * marshal.c: Avoid using ldftn to call managed functions. It is
19247         much slower than just a call.
19248
19249         * reflection.c (mono_module_get_object): free the basename we
19250         allocate here from glib.
19251         
19252         * reflection.c (ensure_runtime_vtable): make sure to free
19253         overrides.  Also, we were allocating an array of MonoMethod not an
19254         array of MonoMethod*.
19255
19256         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
19257
19258         * image.c (mono_image_close): free image->guid here.
19259
19260 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
19261
19262         * reflection.c: Fix some spec conformance issues with the PE file
19263         structures so mcs compiled apps run on the Net 2.0 beta.
19264
19265 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
19266
19267         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
19268         Implement this. Fixes #67264.
19269
19270         * debug-helpers.h debug-helpers.c marshal.c: Move 
19271         mono_find_method_by_name to debug-helpers.c.
19272
19273 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
19274
19275         * object.c (mono_release_type_locks): type_initialization_hash is
19276         a GHashTable.
19277
19278         * reflection.c object.c object-internals.h: Fix warnings.
19279
19280         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
19281         without accessors. Fixes #61561.
19282
19283         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
19284         application base from the root domain if not set. Fixes #65641.
19285         (mono_runtime_init): Fix warning.
19286
19287 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19288
19289         * appdomain.c: call mono_thread_pool_init.
19290         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
19291         of worker threads based on the number of CPUs and the environment
19292         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
19293         for non-windows (windows) systems.
19294
19295 2004-10-27  Chris Toshok  <toshok@ximian.com>
19296
19297         * mono-debug-debugger.c (write_class): don't call mono_class_init
19298         here, as even with the check for (!klass->init_pending), we get
19299         into a situation where we're hitting cycles in class
19300         initialization.  Fixes #68816.
19301
19302 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
19303
19304         * image.c: Avoid overwriting values in the loaded_images_hash when an
19305         assembly is loaded multiple times. Fixes #61152.
19306
19307         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
19308         so multiple satellite assemblies for the same name can be loaded.
19309         Fixes #68259.
19310
19311         * mono_domain_assembly_preload: Actually return the loaded assembly, 
19312         not NULL.
19313
19314         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
19315         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
19316
19317         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
19318         pending finalizers are not invoked after the appdomain has been 
19319         unloaded. Fixes #67862.
19320
19321 2004-10-22  Martin Baulig  <martin@ximian.com>
19322
19323         * mono-debug-debugger.c
19324         (mono_debugger_runtime_invoke): Don't box valuetypes.
19325
19326 2004-10-22  Chris Toshok  <toshok@ximian.com>
19327
19328         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
19329         don't hide private methods.
19330
19331 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
19332
19333         * icall.c: Allows the runtime to "share" (when known) the public key
19334         token of an assembly. This avoid the need to recalculate the token 
19335         (from the public key) in managed code.
19336
19337 2004-10-21  Chris Toshok  <toshok@ximian.com>
19338
19339         * debug-helpers.c (append_class_name): argh, revert last patch.
19340         
19341 2004-10-21  Chris Toshok  <toshok@ximian.com>
19342
19343         * debug-helpers.c (append_class_name): use '+' as the delimiter,
19344         not '/', so that it matches what the debugger uses to look up
19345         methods.
19346
19347 2004-10-21  Martin Baulig  <martin@ximian.com>
19348
19349         * mono-debug-debugger.c (mono_debugger_throw_exception): New
19350         public method; this is called each time an exception is thrown and
19351         allows the debugger to use exception catch points.
19352
19353 2004-10-21  Martin Baulig  <martin@ximian.com>
19354
19355         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
19356         the stack pointer and the exception object in some struct and pass
19357         that to the debugger.
19358
19359 2004-10-21  Chris Toshok  <toshok@ximian.com>
19360
19361         * mono-debug-debugger.c (do_write_class): add instance/static
19362         event support.  We don't expose "raise" or "other" yet.
19363         (event_is_static): new method.
19364
19365 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
19366
19367         * mono-debug-debugger.c
19368         (mono_debugger_handle_exception): Remove
19369         bogus return value for fussy compilers.
19370
19371 2004-10-20  Martin Baulig  <martin@ximian.com>
19372
19373         * mono-debug-debugger.c
19374         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
19375         (mono_debugger_handled_exception): Likewise.
19376
19377 2004-10-20  Martin Baulig  <martin@ximian.com>
19378
19379         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19380         MONO_DEBUGGER_EVENT_EXCEPTION.
19381
19382         * mono-debug-debugger.c (mono_debugger_handle_exception): New
19383         public function to send the debugger a notification for an
19384         exception and inform it about a catch/finally clause.
19385
19386 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
19387
19388         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
19389         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
19390         fix 2.95 build. 
19391
19392         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
19393
19394 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
19395
19396         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
19397         marshalled as [In,Out]. Fixes #58325.
19398
19399 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
19400
19401         * reflection.c (mono_method_body_get_object): Implement some fields.
19402
19403 2004-10-12  Martin Baulig  <martin@ximian.com>
19404
19405         * reflection.c (mono_reflection_bind_generic_parameters): Small
19406         fix, correctly retrieve our parent from a generic instance.
19407
19408 2004-10-12  Martin Baulig  <martin@ximian.com>
19409
19410         * metadata.c (mono_metadata_generic_param_equal): We always have
19411         an owner.
19412
19413         * class.c
19414         (mono_class_from_generic_parameter): We need to have an owner.
19415         (my_mono_class_from_generic_parameter): Likewise.
19416
19417         * reflection.c (mono_reflection_setup_generic_class): Renamed to
19418         mono_reflection_create_generic_class() and added a new
19419         mono_reflection_setup_generic_class().  
19420         (mono_reflection_initialize_generic_param): If we're a nested
19421         generic type and inherited from the containing class, set our
19422         owner to the outer class.
19423
19424 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
19425
19426         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
19427
19428         * reflection.c (mono_method_body_get_object): New function to create
19429         a MethodBody object.
19430
19431         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
19432
19433 2004-10-11  Martin Baulig  <martin@ximian.com>
19434
19435         * metadata.c (_mono_metadata_type_equal): Renamed to
19436         do_mono_metadata_type_equal() and made static.
19437
19438 2004-10-11  Martin Baulig  <martin@ximian.com>
19439
19440         * appdomain.c: Bump corlib version number to 28.
19441
19442 2004-10-10  Martin Baulig  <martin@ximian.com>
19443
19444         * class-internals.h
19445         (MonoGenericInst): Added `MonoGenericContainer *container'.
19446         (MonoGenericMethod): Likewise.
19447         (MonoGenericContext): Likewise.
19448         (MonoGenericParam): Added `MonoGenericContainer *owner'.
19449
19450         * metadata.c
19451         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
19452         (do_mono_metadata_parse_generic_inst): Likewise.
19453         (mono_metadata_parse_type_full): New public method.  This is the actual
19454         mono_metadata_parse_type() implementation - with an additional
19455         `MonoGenericContainer *' argument.
19456         (mono_metadata_parse_array_full): Likewise.
19457         (mono_metadata_parse_signature_full): Likewise.
19458         (mono_metadata_parse_method_signature_full): Likewise.
19459         (mono_metadata_parse_mh_full): Likewise.
19460         (mono_type_create_from_typespec): Likewise.
19461         (mono_metadata_interfaces_from_typedef_full): New public method;
19462         this is similar to the other _full() methods, but we take a
19463         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
19464         (mono_metadata_parse_generic_param): Take an additional
19465         `MonoGenericContainer *' argument and lookup the MonoGenericParam
19466         from that container.
19467         (mono_metadata_generic_param_equal): New static method to compare
19468         two type parameters.
19469         (_mono_metadata_type_equal): New static method; takes an
19470         additional `gboolean signature_only' argument - if true, we don't
19471         compare the owners of generic parameters.
19472         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
19473         with a TRUE argument - do a signature-only comparision.
19474
19475         * loader.c: Use the new _full() methods and pass the
19476         MonoGenericContainer to them.
19477
19478         * object-internals.h (MonoReflectionTypeBuilder): Added
19479         `MonoGenericContainer *generic_container' field.
19480         (MonoReflectionMethodBuilder): Likewise.
19481
19482 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
19483
19484         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
19485         case initial images of dynamic assemblies.
19486
19487         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
19488
19489         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
19490
19491         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
19492         length of event->other array.
19493         (typebuilder_setup_events): Ditto.
19494
19495         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
19496         'assembly_by_name' and add an 'assemblies' list.
19497
19498         * assembly.h assembly.c: Add a new search hook for determining whenever
19499         an assembly is already loaded. Use this instead of searching in the
19500         loaded_assemblies list.
19501
19502         * domain.c appdomain.c: Implement the new search hook so loaded 
19503         assemblies are now scoped by appdomain. Fixes #67727.
19504
19505 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
19506
19507         * threads.c (mono_thread_attach): Initialize synch_lock field so
19508         mono_thread_detach works again.
19509
19510         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
19511         'lib' too. Fixes #63130.
19512
19513 2004-10-06  Jackson Harper  <jackson@ximian.com>
19514
19515         * culture-info-tables.h: regenerated.
19516
19517 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
19518
19519         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
19520         implemented by other interfaces in the result. Fixes #65764.
19521         
19522         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19523         Handle unloadable modules without crashing.
19524
19525         * image.c (load_modules): Revert the previous patch since modules must
19526         have a fixed index inside the array.
19527         
19528         * image.c (load_modules): Don't include native modules in the modules
19529         array.
19530
19531 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
19532
19533         * reflection.h: Add param_defaults field.
19534
19535         * reflection.c: Add support for parameter defaults in dynamic methods.
19536         Fixes #64595.
19537
19538         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
19539         an empty string when a type has no namespace. Fixes #64230.
19540
19541 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
19542
19543         * tabledefs.h: Added "internal" security actions to support non-CAS
19544         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
19545         Note: they do not seems to be used anymore in 2.0 (new metadata format)
19546
19547 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
19548
19549         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
19550         constructor of abstract class. Fixes #61689.
19551
19552 2004-10-04  Martin Baulig  <martin@ximian.com>
19553
19554         * class-internals.h (MonoGenericContainer): New type.
19555         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
19556         `MonoGenericContainer *generic_container'.
19557         (MonoClass): Replaced `gen_params' and `num_gen_params' with
19558         `MonoGenericContainer *generic_container'.
19559
19560         * metadata.c (mono_metadata_load_generic_params): Return a
19561         `MonoGenericContainer *' instead of a `MonoGenericParam *';
19562         removed the `num' argument.
19563
19564 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
19565
19566         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
19567         for dynamic images.
19568
19569         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
19570         machine fields.
19571
19572         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
19573
19574         * reflection.c: Save pe_kind and machine values into the generated
19575         image file.
19576
19577         * appdomain.c: Bump corlib version number.
19578
19579         * object-internals.h: Reorganize layout of LocalBuilder.
19580
19581         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
19582         New helper function.
19583
19584         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
19585         created MonoType for dynamic types. Fixes #66180.
19586
19587 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
19588
19589         * threadpool.c: the ares hashtable needs a critical section around it.
19590         this prevents some nasty segfaults
19591
19592 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
19593
19594         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
19595         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
19596         bug 67324).
19597         
19598 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
19599
19600         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
19601         
19602 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
19603
19604         * image.c: Always canonicalize image file names, to avoid loading
19605         the same assembly twice when referenced using a relative path.
19606
19607 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
19608
19609         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
19610
19611         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
19612
19613         * marshal.c: Fix warnings.
19614
19615 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
19616
19617         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
19618         attempting to marshal the delegate_trampoline as the method_addr.
19619         This patch has a static hashtable of marshalled delegates so that 
19620         we can map delegate_trampoline addresses back to delegates.  This
19621         allows a delegate passed to managed code to be passed back into native
19622         code.  Fixes #67039
19623
19624 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19625
19626         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
19627
19628         * reflection.c (method_encode_code): Align method headers properly.
19629         Fixes #66025.
19630
19631 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19632
19633         * marshal.c: In the runtime invoke wrapper, reset the abort
19634         exception if it is cached. This avoids the automatic rethrowal of 
19635         the exception after the catch of the wrapper. Also check for pending
19636         interruptions before calling the managed method. This is done using
19637         the new method emit_thread_force_interrupt_checkpoint, since the
19638         normal checkpoint method is ignored when running the invoke wrapper.
19639         * object.c: If the abort exception is rethrown, set the abort_exc
19640         field of the thread, so it will be rethrown aftere every catch.
19641         * threadpool.c: Only run an interruption checkpoint if what has been
19642         requested is a stop of the thread (aborts will be ignored).
19643         * threads.c: By default, a thread will now never be interrumped while
19644         running the runtime invoke wrapper (this ensures that runtime_invoke
19645         will always return to the caller if an exception pointer is provided).
19646         There is a new special method mono_thread_force_interruption_checkpoint()
19647         to force an interruption checkpoint even if running a protected
19648         wrapper, which is used by the same runtime invoke wrapper to do a check
19649         at a safe point.
19650
19651 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19652
19653         * object.c, object-internals.h: Implemented mono_release_type_locks,
19654         which releases the cctor locks held by a thread.
19655         * threads.c, threads.h: In thread_cleanup, release cctor locks held
19656         by a thread. Added mono_thread_exit() method to be used to safely stop
19657         a thread.
19658
19659 2004-09-28  Raja R Harinath  <rharinath@novell.com>
19660
19661         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19662         Move null check before dereference.  Avoid indexing beyond the end
19663         of the 'modules' array.
19664
19665 2004-09-28  Raja R Harinath  <rharinath@novell.com>
19666
19667         * metadata-internals.h (MonoImage): Add module_count field.
19668         * image.c (load_modules): Set image->module_count.
19669         (mono_image_load_file_for_image): Use image->module_count.
19670         * reflection.c (mono_image_load_module): Append to image->modules array 
19671         of dynamic assembly.
19672         (mono_module_get_object): Fix loop to actually increment index.
19673         Use image->module_count.
19674         * assembly.c (mono_assembly_load_references): Use image->module_count.
19675         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
19676         Likewise.
19677
19678 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19679
19680         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
19681         Avoid assert on generic types.
19682
19683 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
19684
19685         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
19686
19687         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
19688
19689         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
19690         function to convert a MarshalSpec structure to its managed counterpart.
19691
19692         * reflection.c: Fix warnings.
19693         
19694         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
19695         field.
19696
19697         * icall.c (mono_create_icall_signature): Fix build.
19698
19699 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
19700
19701         * icall.c: Add MakePointType icall.
19702
19703         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
19704         warnings.
19705
19706 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19707
19708         * threadpool.c: reuse allocated slots in the queue.
19709
19710 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
19711
19712         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
19713
19714         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
19715
19716         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
19717         previous change.
19718
19719         * tabledefs.h: Add constants for pinvoke attributes BestFit and
19720         ThrowOnUnmappableChar.
19721
19722         * icall.c (ves_icall_Type_GetPacking): New icall.
19723
19724 2004-09-24  Martin Baulig  <martin@ximian.com>
19725
19726         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
19727
19728 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19729
19730         * appdomain.c:
19731         (mono_domain_set): allow setting a domain that is being unloaded.
19732         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
19733         being unloaded.
19734
19735 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
19736
19737         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
19738         the GetCustomAttributes icall.
19739
19740 2004-09-23  Martin Baulig  <martin@ximian.com>
19741
19742         * object-internals.h (MonoReflectionGenericParam): Replaced
19743         'has_ctor_constraint', `has_reference_type' and `has_value_type'
19744         with `guint32 attrs'.
19745
19746 2004-09-23  Martin Baulig  <martin@ximian.com>
19747
19748         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
19749
19750 2004-09-23  Martin Baulig  <martin@ximian.com>
19751
19752         * object-internals.h (GenericParameterAttributes): New enum.
19753
19754 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
19755
19756         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
19757         
19758         * class.c (init_events): Fill out event->other field.
19759
19760         * class.c: Fix warnings.
19761
19762         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
19763
19764 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
19765
19766         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
19767         walk which doesn't supply the IL offset.
19768
19769 2004-09-22  Martin Baulig  <martin@ximian.com>
19770
19771         * reflection.c (mono_reflection_setup_internal_class): If we're
19772         System.ValueType, System.Object or System.Enum, set
19773         `klass->instance_size' and create the vtable.
19774         (mono_reflection_create_internal_class): If we're an enum type,
19775         get the base class from our current corlib.
19776
19777 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
19778
19779         * reflection.h (MonoResolveTokenError): New type.
19780
19781         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
19782         icall.
19783
19784         * icall.c: Add an 'error' argument to the ResolveToken icalls.
19785
19786 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
19787
19788         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
19789         Support also calling constructors, but only for already allocated objects.
19790
19791 2004-09-17  Geoff Norton <gnorton@customerdna.com>
19792
19793         * reflection.c (type_get_qualified_name): If the klass is null
19794         return the typename to avoid a NullRefEx.
19795         (encode_cattr_value): Get the qualified name of the boxed type,
19796         not the underlying enumtype.  Fixes #62984.
19797
19798 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
19799
19800         * marshal.c: Fix problems with previous checkin.
19801
19802 2004-09-21    <vargaz@freemail.hu>
19803
19804         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
19805         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
19806
19807         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
19808
19809 2004-09-21  Geoff Norton <gnorton@customerdna.com>
19810
19811         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
19812         should only return a type for pointers, arrays, and passbyref types.
19813         Fixes bug #63841.
19814
19815 2004-09-21  Martin Baulig  <martin@ximian.com>
19816
19817         * domain.c (mono_debugger_check_runtime_version): New public
19818         function.
19819
19820         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
19821
19822 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
19823
19824         * reflection.c: Added missing sort to the declarative security 
19825         attributes table. MS implementation stops seeing the attributes if the
19826         token number regress in the table (as shown by ildasm and permview).
19827
19828 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
19829
19830         * object-internals.h (MonoReflectionModule): Add 'token' field.
19831         
19832         * reflection.c (mono_reflection_get_token): Add support for Module
19833         and Assembly.
19834         (mono_module_get_object): Set 'token' field.
19835         (mono_module_file_get_object): Set 'token' field.
19836
19837         * icall.c: Add new Assembly and Module icalls.
19838
19839         * appdomain.c: Bump corlib version.
19840
19841 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
19842
19843         * loader.h loader.c class.h class.c: Add helper functions for obtaining
19844         tokens of metadata objects.
19845
19846         * reflection.h reflection.c (mono_reflection_get_token): New function
19847         to obtain the token of a metadata object.
19848
19849         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
19850
19851 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
19852
19853         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
19854         
19855         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
19856
19857 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
19858
19859         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
19860         * object-internals.h: Added 3 MonoArray* members to MonoReflection
19861         AssemblyBuilder to access the permissions set in the class lib.
19862         * reflection.c: Added security attributes encoding step in 
19863         mono_image_build_metadata.
19864         * tabledefs.h: Added new security actions defined in 2.0:
19865         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
19866
19867 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
19868
19869         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
19870         macro parameter.
19871
19872 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
19873  
19874         * locales.c: nullify the ICU_collator member of CompareInfo when it is
19875           finalized. There where random SIGSEVs at program termination, when
19876           an object being finalized was trying to do a string comparison and
19877           the current culture was already finalized.
19878  
19879 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19880
19881         * threads.c: call thread_cleanup before finishing the thread if we get
19882         there.
19883
19884 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
19885
19886         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
19887         assemblies from the parent. Fixes #65665.
19888
19889 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
19890
19891         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
19892         modifiers.
19893
19894 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
19895
19896         * reflection.h: add prototype for mono_get_dbnull_object
19897         * reflection.c: add prototypes for get_default_param_value_blobs 
19898         and mono_get_object_from_blob for fussier compilers
19899
19900 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
19901  
19902         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
19903         false deadlock checks in class initialization.
19904  
19905 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
19906
19907         * image.c (mono_image_addref): Fix comment.
19908
19909         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
19910         possible.
19911
19912 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
19913
19914         * reflection.c (mono_param_get_objects): Modified to return
19915         ParameterInfo.DefaultValue object.
19916
19917         (get_default_param_value_blobs):
19918         (mono_get_object_from_blob):
19919         (mono_get_dbnull_object): New helper routines. 
19920
19921         * object.c (mono_get_constant_value_from_blob): New helper routine
19922         carved out from get_default_field_value ()
19923
19924         * object-internals.h (mono_get_constant_value_from_blob): Added
19925         function declaration.
19926
19927 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
19928
19929         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
19930         referenced assemblies. Fixes #62135.
19931
19932         * exception.h exception.c (mono_get_exception_file_not_found2): New
19933         helper function.
19934
19935 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
19936
19937         * class.h class.c: Add mono_type_get_underlying_type ().
19938
19939 2004-09-09  Geoff Norton <gnorton@customerndna.com>
19940
19941         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
19942         Fix GetTypes() to support dynamically created assemblies.
19943
19944 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
19945
19946         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
19947         
19948         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
19949         previous patch.
19950
19951         * reflection.h reflection.c loader.c: Allow dynamic construction of
19952         pinvoke methods. Fixes #65571.
19953         
19954         * reflection.c (mono_reflection_get_type): Revert previous change since
19955         it causes regressions.
19956
19957 2004-09-08  Martin Baulig  <martin@ximian.com>
19958
19959         * class.c (class_compute_field_layout): Don't call
19960         mono_class_layout_fields() for open generic instances.
19961
19962 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
19963         * threads.c appdomain.c: fix typo in GC macro
19964
19965 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19966
19967         * threads.c: don't call mono_thread_detach() in start_wrapper(),
19968         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
19969
19970 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
19971
19972         * image.c (mono_image_close): Applied patch from 
19973         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
19974         assembly is loaded multiple times from data.
19975         
19976         * image.c (mono_image_open): Fix warning.
19977
19978 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
19979
19980         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
19981         once. Fixes #58334.
19982         
19983         * reflection.c (mono_reflection_create_runtime_class): Initialize
19984         klass->nested_classes. Fixes #61224.
19985
19986 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
19987
19988         * threads.c: sched_yield() on exit, to allow threads to quit.
19989
19990 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
19991
19992         * object.c (mono_unhandled_exception): Remove leftover debug code.
19993
19994 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
19995
19996         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
19997
19998 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
19999
20000         * marshal.c (emit_marshal_array): Really null terminate string arrays.
20001         
20002         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
20003
20004 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20005
20006         * marshal.c (emit_marshal_array): Null terminate string arrays.
20007         
20008         * marshal.c (raise_auto_layout_exception): Fix warning.
20009
20010         * reflection.c (mono_param_get_objects): Initialize the default value
20011         with DBNull.Value, not null. Fixes #62123.
20012
20013 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
20014
20015         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
20016         throw an exception with a cute explanation.
20017
20018 2004-09-06  Dick Porter  <dick@ximian.com>
20019
20020         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
20021         Close the new process's thread handle, as we don't use it.  The
20022         handle stays around forever otherwise.
20023
20024 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20025
20026         * object.c (arith_overflow): Fix warning.
20027
20028         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
20029         calling conventions in method refs. Fixes #65352.
20030
20031         * reflection.c: Fix warnings.
20032
20033 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
20034
20035         * icall.c: Add a new icall for Array.Clear
20036
20037 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
20038
20039         * object.c: When allocating an array, we have to throw
20040         an overflow exception if any of the lengths are < 0.
20041
20042 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20043
20044         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
20045         properly. Also move implementation of string array marshalling to 
20046         managed code. Fixes #42316.
20047
20048 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20049
20050         * assembly.c: provide more information when loading an assembly fails.
20051
20052 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20053
20054         * filewatcher.c: don't expect the development fam package to be
20055         installed.
20056
20057 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
20058
20059         * marshal.c: Make a copy of the signature cookie since it will be
20060         freed by the caller.
20061         
20062         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
20063
20064         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
20065
20066         * metadata.c (mono_metadata_free_marshal_spec): New function to free
20067         marshal specs.
20068
20069         * marshal.c: More refactoring.
20070         
20071         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
20072         smaller functions.
20073
20074 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
20075
20076         * object.c: In mono_message_invoke, fill the output parameter array after
20077           calling the managed method (it was done before the call). This fixes
20078           bug #59299.
20079
20080 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
20081
20082         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
20083         as well.
20084
20085 2004-09-02  Martin Baulig  <martin@ximian.com>
20086
20087         * class.c (mono_class_instance_size): Don't allow generic type
20088         definitions or open generic instances.
20089         (mono_class_array_element_size): If we're a value type, call
20090         mono_class_instance_size() on the original class.
20091
20092         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
20093         handle generic instances.
20094
20095         * mono-debug-debugger.c (write_type): Handle generic instances
20096         like classes.
20097
20098 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
20099
20100         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
20101         the allocation request fails. Fixes #65089.
20102
20103         * object.c (mono_runtime_free_method): Do not call mono_free_method.
20104         
20105         * object.c (mono_runtime_free_method): New function to free a dynamic
20106         method.
20107
20108         * marshal.c (mono_delegate_free_ftnptr): New function to free the
20109         delegate trampoline.
20110
20111         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
20112         with hasthis as dynamic,
20113
20114         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
20115
20116         * domain.c (mono_jit_info_table_remove): New function to remove an
20117         entry from the jit info table.
20118
20119         * class-internals.h (MonoMethod): Add 'dynamic' field.
20120
20121         * loader.c: Fix warnings.
20122
20123 2004-09-01  Martin Baulig  <martin@ximian.com>
20124
20125         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
20126         instead of mono_debugger_lock() because the latter one is a no-op
20127         unless running in the debugger.
20128
20129 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
20130
20131         * class.c (class_compute_field_layout): Classes with auto-layout or
20132         reference fields are not blittable.
20133         
20134 2004-09-01  Dick Porter  <dick@ximian.com>
20135
20136         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
20137         mono_image_get_filename() to get the assembly location.
20138
20139         * icall.c:
20140         * metadata.h: Fix compile warnings
20141
20142 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
20143
20144         * class.c (class_compute_field_layout): System.Object is blittable.
20145
20146         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
20147         as in/out. Fixes #59909.
20148
20149 2004-09-01  Martin Baulig  <martin@ximian.com>
20150
20151         * metadata.h (MONO_TYPE_ISREFERENCE): Call
20152         mono_metadata_generic_inst_is_valuetype() if we're a generic
20153         instance to check whether our underlying type is a reference type.
20154
20155 2004-09-01  Martin Baulig  <martin@ximian.com>
20156
20157         * metadata.c (mono_type_size): If we're a generic instance, call
20158         mono_class_value_size() for value types.
20159
20160 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
20161
20162         * marshal.c: Implement more custom marshalling functionality. Fixes
20163         #64915.
20164
20165 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20166
20167         * mono-debug.c, debug-mono-symfile.c: add some locking love.
20168
20169 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
20170
20171         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
20172
20173         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
20174
20175         * icall.c: Fix some warnings.
20176
20177         * threads.c (abort_appdomain_thread): Fix unref errors.
20178         (mono_thread_current): Fix THREAD_DEBUG define.
20179
20180 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
20181
20182         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
20183
20184         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
20185
20186 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
20187
20188         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
20189         string arrays.
20190
20191 2004-08-28  Martin Baulig  <martin@ximian.com>
20192
20193         * metadata.c
20194         (mono_metadata_generic_inst_is_valuetype): New public function.
20195
20196         * metadata.h (MONO_TYPE_ISSTRUCT): Call
20197         mono_metadata_generic_inst_is_valuetype() if we're a generic
20198         instance to check whether our underlying type is a valuetype.
20199
20200 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
20201
20202         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
20203         #63768.
20204
20205 2004-08-25  Martin Baulig  <martin@ximian.com>
20206
20207         * loader.c (mono_get_method_from_token): Abstract methods can also
20208         be generic and thus have type parameters.
20209
20210         * metadata-internals.h
20211         (MonoDynamicImage): Added `GPtrArray *gen_params'.
20212
20213         * reflection.c (mono_image_get_generic_param_info): Don't create a
20214         metadata row, just add an entry to the `gen_params' array.
20215         (build_compressed_metadata): Sort the `gen_params' array and then
20216         actually create the metadata.
20217
20218 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20219
20220         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
20221
20222 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
20223
20224         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
20225
20226 2004-08-24  Martin Baulig  <martin@ximian.com>
20227
20228         * class.cs (mono_class_is_subclass_of): Like an interface, a
20229         generic instance also derives from System.Object.
20230
20231 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
20232
20233         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
20234         custom modifiers to be in any order. Fixes #61990.
20235
20236 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
20237
20238         * object.c: Register mono_object_new_fast icall.
20239         
20240         * object.c (mono_class_get_allocation_ftn): Return to calling
20241         mono_object_new_fast, since it seems faster to compute the object 
20242         size in unmanaged code than passing it as a parameter.
20243
20244         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
20245
20246         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
20247         this function with Boehm as the oom handler, so we don't have to check
20248         the result of GC_malloc.
20249
20250         * object.c: Remove checks for oom.
20251
20252         * object.h object.c (mono_class_get_allocation_ftn): New function to
20253         return the icall which can be used to allocate an instance of a given
20254         class. 
20255
20256         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
20257
20258         * class-internals.h: Add 'enabled' field.
20259
20260 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
20261
20262         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
20263
20264 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
20265         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
20266         value 0x0010.
20267
20268 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
20269
20270         * appdomain.c: use the Tls function for appdomain too,
20271         at Zoltan's request. Actually return in mono_context_get
20272
20273         * appdomain.c, profiler.c, threads.c: use __thread
20274
20275 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
20276
20277         * appdomain.c threads.c: Call GC_CreateThread on windows.
20278
20279         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
20280         multiple libraries since this don't work on windows.
20281
20282 2004-08-18  Martin Baulig  <martin@ximian.com>
20283
20284         * class-internals.h
20285         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
20286         MonoMethodHeader.
20287
20288         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
20289         MonoMethodNormal since we also need it for abstract and interface
20290         methods.
20291
20292         * reflection.c
20293         (build_compressed_metadata): Sort the GenericParam table.
20294         (mono_image_create_token): Added `gboolean create_methodspec'
20295         argument; this is false when generating a MethodImpl token.
20296         (reflection_methodbuilder_to_mono_method): Abstract and interface
20297         methods may also have generic parameters.
20298
20299 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
20300
20301         * appdomain.c: thread local alloc
20302
20303 2004-08-17  Martin Baulig  <martin@ximian.com>
20304
20305         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
20306
20307         * icall.c
20308         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
20309         argument.
20310
20311         * class.c (mono_type_get_full_name): New public function.
20312         (mono_type_get_name): Don't include the type arguments.
20313
20314 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
20315
20316         * Makefile.am: Build static versions of libmetadata and libmonoruntime
20317         for inclusion into the mono executable.
20318
20319 2004-08-16  Martin Baulig  <martin@ximian.com>
20320
20321         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
20322         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
20323
20324 2004-08-14  Martin Baulig  <martin@ximian.com>
20325
20326         * class.c (dup_type): Also copy the `byref' field.
20327
20328 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
20329
20330         * reflection.c (create_dynamic_mono_image): Revert the last change 
20331         since it breaks bootstrap.
20332
20333 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
20334
20335         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
20336
20337         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
20338         not free them with g_free.
20339
20340 2004-08-11  Martin Baulig  <martin@ximian.com>
20341
20342         * reflection.c (mono_reflection_setup_internal_class): Also call
20343         mono_class_setup_mono_type() if we already have a `tb->type.type'.
20344
20345 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
20346
20347         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
20348         called during default (first) AppDomain creation. Keep track of
20349         Evidence when loading assemblies.
20350
20351 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
20352
20353         * opcodes.c, opcodes.h: reduce runtime relocations.
20354
20355 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
20356
20357         * culture-info.h, locales.c: fixes and chages to sue the new
20358         optimized format of the locale data.
20359         * culture-info-tables.h: regenerated.
20360
20361 2004-08-06  Geoff Norton <gnorton@customerdna.com>
20362         
20363         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
20364
20365 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
20366
20367         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
20368         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
20369         * domain-internals.h: icall declaration.
20370         * icall.c: icall registration.
20371         * object-internals.h: New fields in MonoAssembly for CAS.
20372
20373 2004-08-05  Duncan Mak  <duncan@ximian.com>
20374
20375         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
20376         CEE_LDELEM_ANY.
20377
20378 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
20379
20380         * reflection.c: fix to deal with object[] arrays in custom ctors
20381         (bug #62550).
20382
20383 2004-08-05  Martin Baulig  <martin@ximian.com>
20384
20385         * class.c (mono_class_array_element_size): Added support for
20386         generic instances and correctly handle "recursive" types.
20387
20388 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
20389
20390         * assembly.c: Fix warnings.
20391
20392 2004-08-04  Martin Baulig  <martin@ximian.com>
20393
20394         * class.c
20395         (mono_type_get_name_recurse): Added `gboolean include_arity'
20396         argument specifying whether or not we should include the generic
20397         arity in the type name.
20398         (_mono_type_get_name): New static function.
20399         (mono_class_setup_vtable): If we're a generic instance, don't
20400         include the generic arity in the names of explicit method
20401         implementations.        
20402
20403 2004-08-03  Martin Baulig  <martin@ximian.com>
20404
20405         * class.c (mono_type_get_name_recurse): Enclose the generic type
20406         arguments in `<', '>'.
20407
20408 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20409
20410         * gc.c: make GC warning messages use the trace API, they are just
20411         noise to most of the users.
20412
20413 2004-08-03  Martin Baulig  <martin@ximian.com>
20414
20415         * debug-mono-symfile.c (read_string): Correctly read the string.
20416
20417 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20418
20419         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
20420         
20421         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
20422         icalls.
20423         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
20424
20425 2004-07-30  Martin Baulig  <martin@ximian.com>
20426
20427         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
20428         Reflect latest symbol writer changes.   
20429
20430 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
20431
20432         * object.c: always create an object if null is passed
20433         to Invoke() where a valuetype is expected.
20434
20435 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
20436
20437         * marshal.c (mono_marshal_init): make managed
20438         signatures match native ones better for 64bits.
20439
20440 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20441
20442         * appdomain.c: hack to build correctly the private bin path on windows.
20443         Fixes bug #61991.
20444
20445 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
20446
20447         * assembly.c: Load mscorlib from the correct framework directory
20448           (mono/<version>/mscorlib.dll).
20449         * appdomain.h: Added prototypes for new functions.
20450         * internals.h: Added some prototypes.
20451         * domain.c: When initializing the runtime, get from the executable and
20452           the configuration files the runtime version that the app supports.
20453           Added support methods for reading app.exe.config. Added list of versions
20454           supported by the JIT. Added two new methods: mono_init_from_assembly,
20455           which initializes the runtime and determines the required version from
20456           the provided exe file, and mono_init_version, which initializes
20457           the runtime using the provided version.
20458         * icall.c: Get machine.config from version-specific directory.
20459         * reflection.c: When generating an image, embed the version number
20460           of the current runtime.
20461
20462 2004-07-28  Dick Porter  <dick@ximian.com>
20463
20464         * socket-io.c
20465         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
20466         returned sockaddr size before creating the remote address object.
20467         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
20468         61608.
20469
20470 2004-07-28  Dick Porter  <dick@ximian.com>
20471
20472         * locales.c (string_invariant_compare_char): Fix invariant char
20473         compares between upper and lower cases.  Fixes bug 61458.
20474
20475 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
20476         
20477         * marshal.c: actually cache stelem.ref wrappers.
20478         
20479 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
20480
20481         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
20482         sections and remove the mono_cli_rva_map () function.
20483
20484 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
20485
20486         * debug-mono-symfile.c: fix one more endianess issue, from a patch
20487         by Geoff Norton (<gnorton@customerdna.com>).
20488
20489 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20490
20491         * class.c: fix class loads for pointer types (typeof(int) !=
20492         typeof(int*)).
20493
20494 2004-07-27  Martin Baulig  <martin@ximian.com>
20495
20496         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
20497         reading the debugging information from an external ".mdb" file.
20498
20499 2004-07-24  Martin Baulig  <martin@ximian.com>
20500
20501         * reflection.c (mono_image_get_type_info): Only write a class
20502         layout entry if we actually have a size or a packing size.
20503
20504 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
20505
20506         * reflection.c (type_get_fully_qualified_name): 
20507         insert cast to get type checking of ?: with non-gcc compilers
20508
20509 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
20510
20511         * rand.c: use g_getenv for both lookups of
20512         MONO_EGD_SOCKET
20513
20514 2004-07-17  Martin Baulig  <martin@ximian.com>
20515
20516         * reflection.c (mono_reflection_bind_generic_method_parameters):
20517         Set `gmethod->reflection_info'.
20518
20519 2004-07-17  Martin Baulig  <martin@ximian.com>
20520
20521         * class.c (mono_class_create_from_typedef): Insert the newly
20522         created class into the hash table before computing the interfaces
20523         since we could be called recursively.
20524
20525 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
20526
20527         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
20528         function to implement stelem.ref in managed code
20529         * class-internals.h, debug-helpers.c: a new wrapper type
20530         for the above.
20531
20532 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
20533
20534         * gc.c: allow GC handles to work even when no GC is compiled in.
20535         Fix part of bug #61134 (GetAddrOfPinnedObject).
20536
20537 2004-07-13  Peter Williams  <peter@newton.cx>
20538  
20539         * process.c (complete_path): Make sure we don't attempt to execute
20540         directories.
20541  
20542 2004-07-12  Geoff Norton <gnorton@customerdna.com>
20543
20544         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
20545           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
20546           and will add/subtract the hour if needed
20547
20548 2004-07-12  Martin Baulig  <martin@ximian.com>
20549
20550         * reflection.c (mono_field_get_object): If we have
20551         `field->generic_info', take the attributes from
20552         `field->generic_info->generic_type'.    
20553
20554 2004-07-12  Martin Baulig  <martin@ximian.com>
20555
20556         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
20557         This function must be called before initializing the runtime.
20558         (mono_debug_init_1): New function; call this after initializing
20559         the runtime, but before loading the assembly.  It tells the
20560         debugger to load corlib and the builtin types.
20561
20562         * mono-debug-debugger.c: Did some larger changes in the debugging
20563         code; support recursive class declarations, make sure we actually
20564         add all classes.
20565
20566 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20567
20568         * debug-helpers.c: undo my previous patch and fixed the real issue in
20569         ../mini/exceptions-x86.c
20570
20571 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20572
20573         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
20574         when no HOME env. variable was set and a NullRef was thrown in a .cctor
20575         called from other .cctors.
20576
20577 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20578
20579         * loader.c: Removed the mono_loader_wine_init hack now that we are
20580         doing a managed version of Windows.Forms.
20581
20582 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
20583
20584         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
20585         threadpool.c, threads.c: remove static data from rootset.
20586
20587 2004-07-09  Dick Porter  <dick@ximian.com>
20588
20589         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
20590         Don't do any more processing if the matched length was 0.  It was
20591         increasing the size of the string before.  Fixes bug 61167.
20592
20593 2004-07-09  Dick Porter  <dick@ximian.com>
20594
20595         * socket-io.h:
20596         * socket-io.c
20597         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20598         Add support for SO_PEERCRED if its available.
20599
20600 2004-07-09  Peter Bartok <pbartok@novell.com>
20601         * loader.c: winelib.exe.so error message is now only displayed if
20602         MONO_DEBUG is set. To help us avoid questions when people are trying
20603         out the new Managed.Windows.Forms.
20604
20605 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
20606
20607         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
20608         for isinst and castclass wrappers.
20609
20610         * class-internals.h icall.c: Move registration and lookup of JIT icalls
20611         to libmetadata from the JIT, so they could be used by the marshalling
20612         code and the interpreter.
20613
20614         * marshal.c: Register marshalling related JIT icalls here instead of
20615         in mini.c. Use CEE_MONO_ICALL instead of the family of 
20616         CEE_MONO_PROC<x> opcodes to call marshalling functions.
20617
20618         * metadata.h: Remove unneeded marshalling conversions.
20619
20620         * opcodes.c: Update for new opcodes.
20621         
20622 2004-07-08  Martin Baulig  <martin@ximian.com>
20623
20624         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
20625         (mono_debug_get_domain_data): Make this function static.
20626
20627 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
20628
20629         * gc.c, object.h: add nice GC handle API for embedders.
20630
20631 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
20632
20633         * reflection.c: more changes for the new api
20634
20635         * object.c: When we reflect on a field w/ a constant value, it
20636         will not have a memory location, so we must access metadata. Also,
20637         allow easier reading of strings so that we can read them from
20638         the constant data.
20639
20640         * class.c (mono_class_layout_fields): no need for literal fields here.
20641
20642         * class-internals.h: api changes for const fields
20643
20644         * icall.c (ves_icall_get_enum_info): use new apis for const fields
20645
20646 2004-07-06  Martin Baulig  <martin@ximian.com>
20647
20648         * mono-debug.h: Increment version number to 44.
20649
20650         * mono-debug.c (mono_debug_add_wrapper): The second argument is
20651         now a gpointer, rewrote this whole method.
20652
20653         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
20654         function.  Add information about the wrapper in a new "misc table".
20655
20656         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
20657         for the new misc table.
20658
20659 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
20660
20661         * metadata-internals.h image.c: Add a cache for helper signatures.
20662
20663         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
20664
20665 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
20666
20667         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
20668         delegates from a delegate. Fixes #61033.
20669         
20670         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
20671         marshalling of stringbuilder arrays. Fixes #59900.
20672
20673 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
20674
20675         * icall.c: Add EnumBuilder:setup_enum_type icall.
20676
20677 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
20678
20679         * icall.c: Added a new icall for the property version of
20680         OffsetOfStringData.
20681
20682 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
20683
20684         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
20685         it has a constant size across platforms.
20686
20687         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
20688         stack trace.
20689
20690 2004-06-29  Martin Baulig  <martin@ximian.com>
20691
20692         * mono-debug.c (mono_debug_add_method): Protect the whole function
20693         in mono_debugger_lock(), not just parts of it.
20694
20695 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
20696
20697         * reflection.c: make sure padding bytes in heaps are zeroed.
20698
20699 2004-06-24  David Waite  <mass@akuma.org>
20700
20701         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
20702         image.c, loader.c, locales.c, marshal.c, metadata.c,
20703         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
20704         string-icalls.c, threads.c: change to C90-style comments from C99 /
20705         C++ -style
20706
20707 2004-06-24  Dick Porter  <dick@ximian.com>
20708
20709         * threads.c
20710         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
20711         return createdNew.  Fixes bug 60412.
20712
20713         * threads-types.h: 
20714         * icall.c: Add createdNew parameter to CreateMutex icall
20715
20716 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
20717
20718         * reflection.c, object-internals.h: save default value in params.
20719
20720 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20721
20722         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
20723         no need to build a new path combining that with the application base.
20724         Fixes bug #60442.
20725
20726 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
20727
20728         * reflection.c: fixed minor standard compliance issues.
20729
20730 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
20731
20732         * reflection.c: fixed issue with encoding some custom attributes
20733         (arrays in properties and fields, bug #60411).
20734
20735 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20736
20737         * reflection.c: fix start address when copying the public key token.
20738
20739 2004-06-23  Martin Baulig  <martin@ximian.com>
20740
20741         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
20742         the `exc' object in a static object to put it into the GC's root set.
20743
20744 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
20745
20746         * reflection.c: make mono_reflection_setup_internal_class ()
20747         callable a second time to setup a new parent class.
20748
20749 2004-06-23  Dick Porter  <dick@ximian.com>
20750
20751         * threads.c: Check for WAIT_IO_COMPLETION return values.
20752
20753 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
20754
20755         * appdomain.c: Removed the g_free on the public key token. Now copy 
20756         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
20757         * assembly.c: Added public key token string value when loading 
20758         assemblies. Fix bug #60439.
20759         * icall.c: Added missing informations (like public key) in 
20760         GetReferencedAssemblies. Fix #60519.
20761         * image.h: Changed definition for public key token from const char*
20762         public_tok_value to guchar public_key_token [17];
20763         * reflection.c: Updated for changes to public key token.
20764
20765 2004-06-22  Lluis Sanchez Gual
20766
20767         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
20768         for the field in base classes.
20769
20770 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
20771
20772         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
20773         mark headers as not supported, they are installed only for use by the
20774         debugger.
20775
20776 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
20777
20778         * *.c, *.h: avoid namespace pollution in public headers.
20779
20780 2004-06-21  Martin Baulig  <martin@ximian.com>
20781
20782         * exception.c (mono_get_exception_security): It's in
20783         "System.Security", not in "System".
20784
20785         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
20786         the exception classes.
20787
20788 2004-06-21  Martin Baulig  <martin@ximian.com>
20789
20790         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
20791         Protect the exception object from being finalized.
20792
20793 2004-06-21  Martin Baulig  <martin@ximian.com>
20794
20795         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
20796         public function.
20797
20798 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
20799
20800         * reflection.c: Load the assembly in mono_reflection_type_from_name,
20801         if it was not loaded before. Fix parts of #60439.
20802
20803 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
20804
20805         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
20806         code that was broken since Ben's change: wrappers are now
20807         dependent on the method signature only again.
20808
20809 2004-06-21  Martin Baulig  <martin@ximian.com>
20810
20811         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
20812         added interface support.
20813
20814 2004-06-21  Martin Baulig  <martin@ximian.com>
20815
20816         * class.c (mono_vtable_get_static_field_data): New public method.
20817
20818 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
20819
20820         * filewatcher.c : Windows build fix to be compliant with API changes.
20821
20822 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
20823
20824         * class.h, class.c: more accessors.
20825         * metadata.h, metadata.c: prepare for hiding MonoType and
20826         MonoMethodSignature: people should use the accessors from now on
20827         outside of the tree.
20828
20829 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
20830
20831         * *.c, *.h: more API cleanups.
20832
20833 2004-06-18  Jackson Harper  <jackson@ximian.com>
20834
20835         * assembly.c: Trace loading assemblies.
20836         * loader.c: Trace loading native libraries.
20837         * mono-config.c: Trace loading config files.
20838         
20839 2004-06-18  Dick Porter  <dick@ximian.com>
20840
20841         * locales.c: Tell ICU the lengths of strings, it can cope with
20842         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
20843
20844 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
20845
20846         * image.c: swapped name/filename;
20847
20848 2004-06-18  Martin Baulig  <martin@ximian.com>
20849
20850         * mono-debug-debugger.c (write_class): Write the parent class at
20851         the end of the header.
20852
20853 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
20854
20855         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
20856
20857 2004-06-17  Raja R Harinath  <rharinath@novell.com>
20858
20859         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
20860         (bundle_obj): New conditional define.
20861         (BUILT_SOURCES): Remove.
20862         ($(bundle_srcs)): Make parallel-make safe.
20863         (libmonoruntime_la_LIBADD): Make unconditional.
20864         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
20865         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
20866
20867 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
20868
20869         * culture-info-tables.h: It was inconsistent with the latest
20870           supp info files.
20871
20872 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
20873
20874         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
20875         be loaded.
20876
20877         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
20878         with gcc 2.95.
20879
20880 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
20881
20882         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
20883         cleaned up public header threads.h.
20884
20885 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
20886
20887         * Makefile.am, *.c, *.h: more API cleanups.
20888
20889 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
20890
20891         * Makefile.am: removed monosn from compilation.
20892         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
20893         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
20894         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
20895         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
20896         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
20897         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
20898
20899 2004-06-15  Jackson Harper  <jackson@ximian.com>
20900
20901         * assembly.c: Make locales lower case when searching the GAC for
20902         assemblies. gacutil will always make locales lowercase when
20903         installing so this effectively makes them case insensitive.
20904         
20905 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
20906
20907         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
20908         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
20909           parameter which allows to choose whether the wait can be interrupted or 
20910           not. Also added the method mono_monitor_enter(), which locks the monitor
20911           using an infinite wait and without allowing interruption.
20912           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
20913           interrupted.
20914         * object.h: Added new fields in MonoThread. suspend_event holds the event
20915           used to susped/resume the thread. synch_lock is the lock object to use for
20916           modifying the thread state.
20917         * threads.c: Use the new synch_lock object for locking, instead of "this",
20918           which can generate deadlocks.
20919           Moved thread state change in Thread.Sleep and Thread.Join from managed
20920           to unmanaged code. This avoids a deadlock when the thread was suspended
20921           just after acquiring the thread lock.
20922           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
20923           Implemented Thread.Suspend using an event instead of ThreadSuspend,
20924           which is not fully implemented in the io-layer.
20925         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
20926
20927 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
20928
20929         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
20930         threads-types.h: more API cleanups.
20931
20932 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
20933
20934         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
20935         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
20936         threadpool.c, threads.c: first pass at the exported API cleanup.
20937
20938 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
20939
20940         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
20941
20942 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20943
20944         * icall.c: added internalGetHome.
20945
20946 2004-06-14  Dick Porter  <dick@ximian.com>
20947
20948         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
20949         possible to return successfully when '.' or '..' were the only
20950         entries in a directory, but were skipped.  The MonoIOStat was not
20951         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
20952         Fixes bug 59574.
20953
20954 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20955
20956         * reflection.c: make binaries run on .Net 1.1 by default.
20957
20958 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
20959
20960         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
20961
20962 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
20963
20964         * marshal.c: keep track of struct size with explicit layout
20965         (bug #59979).
20966
20967 2004-06-12  Martin Baulig  <martin@ximian.com>
20968
20969         * mono-debug-debugger.c: Comment out a debugging g_message().
20970
20971 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
20972
20973         * reflection.c, reflection.h: do not free custom attrs that are cached.
20974         * icall.c: use braces to make code clearer.
20975
20976 2004-06-11  Martin Baulig  <martin@ximian.com>
20977
20978         * class.h (MonoInflatedField): New type.
20979         (MonoClassField): Replaced `MonoType *generic_type' with
20980         `MonoInflatedField *generic_info'.
20981
20982         * icall.c
20983         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
20984
20985 2004-06-11  Martin Baulig  <martin@ximian.com>
20986
20987         * reflection.c (mono_image_create_method_token): Correctly encode
20988         varargs methods.
20989
20990 2004-06-11  Martin Baulig  <martin@ximian.com>
20991
20992         * metadata.c (mono_metadata_parse_method_signature): When parsing
20993         a MethodDef which has VarArgs, also set sentinelpos if we don't
20994         have any parameters.
20995
20996 2004-06-11  Martin Baulig  <martin@ximian.com>
20997
20998         * verify.c (mono_method_verify): In CEE_CALL, use
20999         mono_method_get_signature() to get the method's signature, unless
21000         we're a PInvoke method.
21001
21002 2004-06-10  Jackson Harper  <jackson@ximian.com>
21003
21004         * assembly.c: Use <path>/lib/mono/gac for the extra paths
21005         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
21006         logical name as the supplied path is just a prefix to the gac not
21007         the direct path to it.
21008         
21009 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
21010
21011         * reflection.c: make the token for a created method match
21012         the token of the MethodBuilder it was created from
21013         (IKVM requires this behaviour now).
21014
21015 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
21016
21017         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
21018         reflection.c, socket-io.c: leak fixes.
21019
21020 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
21021
21022         * icall.c: handle sentinel pos in vararg methods in position different
21023         from 0.
21024
21025 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21026
21027         * culture-info-tables.h: freshly generated.
21028
21029 2004-06-09  Martin Baulig  <martin@ximian.com>
21030
21031         * loader.c (mono_get_method_constrained): Call `mono_class_init
21032         (constrained_class)'.   
21033
21034 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
21035
21036         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
21037         any methods. Fixes #59629.
21038
21039 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21040
21041         * culture-info-tables.h: reflecting locale-builder updates.
21042
21043 2004-06-08  Dick Porter  <dick@ximian.com>
21044
21045         * object.h:
21046         * locales.c: Fixed compile warnings, including a real bug in
21047         CompareInfo_internal_compare.
21048         
21049 2004-06-08  Dick Porter  <dick@ximian.com>
21050
21051         * locales.c
21052         (ves_icall_System_Globalization_CompareInfo_internal_index):
21053         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
21054         Double-check the resuls of usearches, because ICU currently
21055         ignores most of the collator settings here.  Fixes bug 59720.
21056         
21057 2004-06-08  Dick Porter  <dick@ximian.com>
21058
21059         * locales.c
21060         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
21061         Fix memory leak and segfault-causing typo.  No idea how this one
21062         lasted so long without being noticed.
21063
21064 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
21065
21066         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
21067         any methods. Fixes #59629.
21068
21069 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21070
21071         * assembly.c:
21072         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
21073         own the critical section before). Removed dead code (that's done
21074         in the preload hook).
21075
21076         (mono_assembly_load_with_partial_name): call the preload hook.
21077
21078 2004-06-08  Martin Baulig  <martin@ximian.com>
21079
21080         * metadata.c (mono_metadata_signature_alloc): Default
21081         `sentinelpos' to -1.
21082
21083         * reflection.c (mono_image_get_array_token): Likewise.
21084
21085 2004-06-08  Martin Baulig  <martin@ximian.com>
21086
21087         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
21088
21089         * metadata.c (mono_metadata_parse_method_signature): When parsing
21090         a MethodDef which has VarArgs, set sentinelpos.
21091
21092         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
21093         `gint16' since we're using -1 for non-varargs methods.
21094
21095         * reflection.c
21096         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
21097         (method_encode_signature): Added varargs support.
21098         (method_builder_encode_signature): Likewise.
21099         (mono_image_get_varargs_method_token): New static method.
21100         (mono_image_create_method_token): New public method; this is
21101         called via an icall instead of mono_image_create_token() when
21102         calling a varargs method.       
21103
21104 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
21105
21106         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
21107
21108 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21109
21110         * culture-info-tables.h : Reflecting the latest locale-builder that
21111           fixed empty array representation ({} to {0}).
21112
21113 2004-06-07  Jackson Harper  <jackson@ximian.com>
21114
21115         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
21116         looking up extra gac paths. This allows MONO_GAC_PATH to act
21117         exactly like a prefix.
21118         
21119 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
21120
21121         * reflection.c (mono_reflection_type_from_name): Make a copy of the
21122         type name before modifying it. Fixes #59405.
21123
21124 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21125
21126         * culture-info.h: added fields for "all datetime patterns".
21127         * locales.c: (  ves_icall_System_Globalization_CultureInfo
21128           _construct_datetime_format ()): fill xxx_patterns fields.
21129         * object.h: added fields for "all datetime patterns" to
21130           MonoDateTimeFormatInfo.
21131         * culture-info-tables.h: reflecting locale-builder updates.
21132
21133 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
21134
21135         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
21136         the event has no add and remove methods. Fixes #59629.
21137
21138 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
21139
21140         * object.c: Fixed possible integer overflow when allocating large
21141         strings.
21142
21143 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
21144
21145         * culture-info-tables.h: reflecting locale-builder updates.
21146
21147 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
21148
21149         * culture-info-tables.h: reflecting locale-builder updates.
21150
21151 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
21152
21153         * culture-info-tables.h: reflecting locale-builder updates.
21154
21155 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
21156
21157         * threads.c: Made Thread.Sleep abortable.
21158
21159 2004-06-02  Martin Baulig  <martin@ximian.com>
21160
21161         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
21162
21163         * debug-mono-symfile.h: Bumped symbol file version number to 37.
21164
21165 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
21166
21167         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
21168
21169 2004-05-30  Jackson Harper  <jackson@ximian.com>
21170
21171         * reflection.c: Do not hardcode assembly versions or public key
21172         tokens anymore. All of this except the corlib section was dead
21173         code anyways.
21174         
21175 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
21176
21177         * object.c (mono_runtime_invoke_array): Automatically create boxed
21178         objects for byref valuetypes if needed. Fixes #59300.
21179         
21180         * object.c (mono_method_return_message_restore): Handle 
21181         MONO_TYPE_OBJECT as well.
21182
21183 2004-05-28  Jackson Harper  <jackson@ximian.com>
21184
21185         * reflection.c: The modified type encoding was causing build
21186         problems. Reverted for now.
21187         
21188 2004-05-28  Jackson Harper  <jackson@ximian.com>
21189
21190         * reflection.c/h: Take an assembly ref so that we dont create
21191         fully qualified names when encoding types in the same assembly as
21192         the custom attribute being emitted.
21193         * appdomain.c: Increment version number.
21194         
21195 2004-05-26  Duncan Mak  <duncan@ximian.com>
21196
21197         * icall.c
21198         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
21199         Set the full version number (major, minor, build, revision).
21200
21201 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
21202
21203         * marshal.c (emit_struct_conv): increment src/dst after blit
21204         (mono_marshal_get_managed_wrapper,
21205         mono_marshal_get_native_wrapper): make sure we have marshalling
21206         info before marshalling params (info computation affects
21207         blittable)
21208
21209         * class.c (class_compute_field_layout): correctly deal with
21210         blittable
21211         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
21212         value types (as per what windows dows by default)
21213         (mono_class_setup_mono_type): System.ValueType is blittable
21214         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
21215         blittable
21216
21217         * marshal.c (mono_marshal_load_type_info): flag types  as
21218         non-blittable if the native layout doesn't match the managed
21219         layout
21220
21221 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21222
21223         * appdomain.c: don't add stuff in the private search path that is
21224         above the application base. If application base is not set, there's
21225         no private search path.
21226
21227 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
21228
21229         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
21230         byref struct arguments in native->managed marshalling.
21231
21232 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
21233
21234         * marshal.c (mono_marshal_get_runtime_invoke): correctly
21235         cache methods using signature (special case for methods
21236         that are value type or string class)
21237         
21238         * image.c (mono_image_close): clean up allocated GSList's
21239         in runtime_invoke_cache.
21240
21241 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21242
21243         * mono-config.c: set the correct path for mono_cfg_dir on windows when
21244         there's no MONO_CFG_DIR environment variable defined.
21245
21246 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21247
21248         * threads.c: windows version must be >= 0x0500 to include OpenThread.
21249
21250 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
21251
21252         * threadpool.c: Really wait for 500ms after the async call, even if the wait
21253           is interrumped.
21254         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
21255           before waiting for it, and call CloseHandle after the wait to unref it.
21256           This will make sure that handles are not disposed too early.
21257
21258 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21259
21260         * appdomain.c:
21261         * appdomain.h:
21262         * icall.c: removed
21263         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
21264         needed now.
21265
21266         * object.c: se the application_base only for the domain that runs
21267         Main. Fixes bug #59216,
21268
21269 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21270
21271         * appdomain.c:
21272         * object.c: only the domain in which Main is run have
21273         SetupInformation.ConfigurationFile set, so moved a few lines from
21274         appdomain.c to object.c.
21275
21276 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21277
21278         * appdomain.c: we tried to load [name].(dll|exe), but according
21279         to bug #57710, we must also try [culture]/[name].(dll|exe) and
21280         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
21281         There's a test case attached to bug #58922.
21282
21283 2004-05-27  Dick Porter  <dick@ximian.com>
21284
21285         * icall.c:
21286         * file-io.c: Implemented icalls for locking and unlocking regions
21287         in a file.
21288         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
21289         FALSE on error (fixes both compiler warning and real bug.)
21290
21291 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
21292
21293         * culture-info-tables.h: reflecting locale-builder updates.
21294
21295           (Added missing ChangeLog entry for 05/26)
21296
21297 2004-05-27  Jackson Harper  <jackson@ximian.com>
21298
21299         * locales.c: Fix some cut and paste errors.
21300         
21301 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21302
21303         * mono-config.c: set the correct path for config. directory on windows.
21304
21305 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21306
21307         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
21308           on win32.
21309
21310 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
21311
21312         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
21313         from pinvoke functions.
21314         
21315         * marshal.c (mono_ftnptr_to_delegate): Implement this.
21316
21317 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21318
21319         * culture-info-tables.h: reflecting locale-builder updates.
21320
21321 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
21322
21323         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
21324         #59086.
21325
21326 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
21327
21328         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
21329         * icall.c: Modified icalls for RNG.
21330         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
21331         Windows (CryptoAPI).
21332
21333 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
21334
21335         * locales.c: Fix build.
21336
21337 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21338
21339         * culture-info-tables.h: reflecting locale-builder updates.
21340
21341 2004-05-25  Jackson Harper  <jackson@ximian.com>
21342
21343         * locales.c: When creating the current culture use the $LANGs
21344         specific culture. So DateTimeFormat and NumberFormat entries are created.
21345         
21346 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
21347
21348         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
21349         a char array as parameter.
21350
21351 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
21352
21353         * image.c: In mono_image_open(), always use an absolute path name to
21354           look for already loaded images.
21355
21356 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
21357
21358         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
21359         missing in the windows build (like older cygwin include files).
21360
21361 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
21362
21363         * icall.c: Fixed check for possible integer overflow in Buffer_
21364         BlockCopy icall. Replaced comments style // by /* */.
21365
21366 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
21367
21368         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
21369         
21370         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
21371         check after MONO_VTADDR. Fixes pinvoke2.exe.
21372
21373         * marshal.h marshal.c metadata.h: Add beginnings of support for
21374         ftnptr -> delegate marshalling.
21375
21376 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
21377
21378         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
21379         * threads.c: Fix warnings.
21380
21381 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
21382
21383         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
21384         * icall.c: Registered icalls for Suspend and Resume.
21385         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
21386           Thread.Abort.
21387         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
21388         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
21389         * process.c: Use WaitForSingleObjectEx.
21390         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
21391           checkpoints.
21392         * threads.c, threads.h: Make use of new Ex wait methods. Improved
21393           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
21394           for Suspend and Resume. Added new mono_thread_stop, used for stoping
21395           background threads. Added basic support for Abort in Windows.
21396           Start new threads using a managed delegate invoke wrapper. This wrapper
21397           has an interruption checkpoint that is needed since an interruption
21398           can be requested before the thread leaves the unmanaged code that starts 
21399           the thread.
21400         * marshal.c: Added interruption checkpoint after every native call, and
21401           also before managed calls for wrappers called from unmanaged code to
21402           go into managed code.
21403         * object.h: Added new field in MonoThread to keep track of interruption
21404           requests.
21405
21406 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
21407
21408         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
21409         calls.
21410
21411 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21412
21413         * appdomain.c:
21414         * assembly.c:
21415         * gc.c:
21416         * locales.c:
21417         * mono-config.c:
21418         * rand.c: getenv -> g_getenv (windows!)
21419
21420         * process.c: complete_path is also used on non-windows platforms.
21421
21422 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21423
21424         * icall.c: new signature for Process_Start.
21425
21426         * process.[ch]: new signature for Process_Start. If we're on windows
21427         and UseShellExecute is false, we have to search for the program by
21428         ourselves if we don't get a full path.
21429
21430 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
21431
21432         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
21433         marshalling and call CleanUpNativeData if needed. Fixes #58646.
21434
21435 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21436
21437         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
21438         Fixes bug #58373.
21439
21440 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21441
21442         * process.c: use double quotes to quote program name and arguments on
21443         windows. Fixes bug #58575.
21444
21445 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21446
21447         * file-io.c: don't return "." and ".." when using windows Find*File.
21448
21449 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
21450
21451         * marshal.c: Don't pass wrappers to message init because method 
21452         addressed used to lookup metadata. part of remoting[2|3] fix.
21453
21454 2004-05-15  Jackson Harper  <jackson@ximian.com>
21455
21456         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
21457         path is essentially the same as MONO_PATH except that it points to
21458         GACs instead of lib directories.
21459         * loader.h: The user gac is gone so we dont need function to
21460         enable/disable it.
21461         * mono-config.c: user gac option is now gone.
21462         
21463 2004-05-15  Jackson Harper  <jackson@ximian.com>
21464
21465         * culture-info.h: Make defines more consistent, add calendar data
21466         to the culture info table.
21467         * culture-info-tables.h: Add basic calendar data. Basically
21468         everyone gets default gregorian until all the data is
21469         updated.
21470         * locales.c: Use the new consistent defines. Set calendar data for
21471         culture info objects.
21472         * object.h: add a field for calendar data to CultureInfo
21473         
21474 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
21475
21476         * image.c: image->runtime_invoke_cache is keyed on signatures now.
21477         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
21478         a signature.
21479         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
21480         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
21481         an extra param that is the pointer of the method to invoke. The IL for
21482         the invoke method is no longer specific to the method, but to the
21483         signature of the method. Thus, we can share the same code for multiple
21484         methods. This reduces the number of methods that have to be compiled.
21485
21486 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
21487
21488         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
21489
21490         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21491
21492         * icall.c: Optimize Buffer.BlockCopy.
21493
21494 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21495
21496         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
21497         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
21498         quote). Changed them to "MMMM yyyy".
21499
21500 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
21501
21502         * rand.c
21503         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
21504
21505 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
21506
21507         * reflection.h: Updated after changes to managed structures.
21508
21509         * appdomain.c: Bump corlib version.
21510
21511 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21512
21513         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
21514         windows.
21515
21516 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21517
21518         * Makefile.am: link to ../os/libmonoos.la on windows.
21519
21520         * assembly.c:
21521                 -If MONO_DEBUG, warn about non-existing directories in
21522                 MONO_PATH.
21523                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
21524                 compile time variable.
21525                 -Removed init_default_path and call mono_set_rootdir from
21526                 libmonoos.a instead (windows only).
21527
21528         * assembly.h: declare mono_assembly_getrootdir().
21529
21530         * domain.c:
21531         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
21532
21533         * loader.c: s/getenv/g_getenv/
21534
21535 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
21536
21537         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
21538
21539         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
21540
21541         * metadata.h: Add new marshalling conversions.
21542
21543         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
21544         function.
21545
21546         * reflection.c (mono_reflection_get_type): Lookup the type in all
21547         modules of a multi-module assembly. Fixes #58291.
21548
21549 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
21550
21551         * threads.c: Before aborting a background, set the StopRequested
21552         state.  This avoids throwing the Abort exception.
21553         In mono_thread_manage, don't continue with the shutdown until all
21554         aborted threads have actually stopped.
21555
21556 2004-05-10  Jackson Harper  <jackson@ximian.com>
21557
21558         * locales.c: Remove the modifier from culture names.
21559         
21560 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21561
21562         * Makefile.am: monosn is not installed any more. It has been deprecated
21563         in favor of sn.
21564
21565 2004-05-07  Jackson Harper  <jackson@ximian.com>
21566
21567         * locales.c
21568         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
21569         Fix array construction, add bailout if the length is 0.
21570
21571 2004-05-07  Dick Porter  <dick@ximian.com>
21572
21573         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
21574         machine doesn't have a DNS entry.  Patch by Urs Muff
21575         (umuff@quark.com), fixes bug 57928.
21576
21577 2004-05-06  Jackson Harper  <jackson@ximian.com>
21578
21579         * reflection.c: Handle null PublicTokens properly. alloc mem for
21580         assembly names culture so we dont crash when freeing it.
21581         
21582 2004-05-06  Jackson Harper  <jackson@ximian.com>
21583
21584         * assembly.c: Check the usergac when loading with partial names.
21585         
21586 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
21587
21588         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
21589         does nothing for now (not required for Linux/Windows) but the class
21590         library can call it (and a newer or modified runtime could need it).
21591         * icall.c: Registred icall.
21592
21593 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21594
21595         * loader.c: prints a message on module loading error we set MONO_DEBUG
21596         environment variable.
21597
21598 2004-05-05  Jackson Harper  <jackson@ximian.com>
21599
21600         * appdomain.c: Handle PublicKeyToken=null properly.
21601         
21602 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
21603
21604         * environment.c|h: Added icall ves_icall_System_Environment_
21605         GetOSVersionString to get the current OS version as a string.
21606         * icall.c: Registred icall.
21607
21608 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
21609
21610         * object.c: in mono_object_get_virtual_method(), take into account that
21611         non-virtual methods don't have a slot in the vtable. Check needed when
21612         the object is a proxy.
21613
21614 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
21615
21616         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
21617         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
21618
21619         * object.c (mono_class_compute_gc_descriptor): Fix warning.
21620
21621         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
21622         passed when a valuetype is expected.
21623
21624         * object.c (mono_unhandled_exception): Only set the exit code if the
21625         exception happens in the main thread. Fixes thread5.exe.
21626
21627         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
21628         invalid names. Fixes #58047.
21629
21630 2004-05-03  Jackson Harper  <jackson@ximian.com>
21631
21632         * assembly.c: This line was committed accidently and is unneeded.
21633         
21634 2004-05-03  Jackson Harper  <jackson@ximian.com>
21635
21636         * icall.c: Add new icall for Assembly::LoadWithPartialName
21637         * assembly.c/.h: new function that probes the GAC to load partial
21638         assembly names by Paolo Molaro.
21639         
21640 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21641
21642         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
21643         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
21644         (type_get_fully_qualified_name): Added PublicKeyToken when building a
21645         full type name.
21646
21647 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21648
21649         * appdomain.c: fixed check for 'neutral' culture and removed warning.
21650         * reflection.c: fix bug when parsing a full type name and Version is not
21651         the last thing in the string.
21652
21653 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
21654
21655         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
21656         crashes when it is freed.
21657
21658 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21659
21660         * assembly.c: print the compat warning to stderr.
21661
21662 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
21663
21664         * assembly.c (mono_assembly_load_references): Add a compatibility
21665         hack to run old applications that might be still referencing the
21666         3300-based assemblies, only do this for System.xxx.
21667
21668 2004-05-01  Jackson Harper  <jackson@ximian.com>
21669
21670         * appdomain.c: If the culture is neutral we set it to "".
21671         
21672 2004-04-29  Jackson Harper  <jackson@ximian.com>
21673
21674         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
21675
21676 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
21677  
21678         * string-icalls.c: added low overhead function for copying chars
21679         * icall.c: added needed icall for the above function
21680  
21681 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21682
21683         * icall.c: fix return value of get_global_assembly_cache.  Implemented
21684         Environment.GetLogicalDrives.
21685
21686 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
21687
21688         * rand.c: try and talk to egd or prngd
21689         for random bytes if opening devices fail.
21690
21691 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
21692
21693         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
21694         alignment for the type using the native alignment of its members 
21695         instead of using klass->min_align.
21696
21697         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
21698
21699 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21700
21701         * file-io.c:
21702         * socket-io.c: added check for sys/aio.h.
21703
21704 2004-04-28  Dick Porter  <dick@ximian.com>
21705
21706         * threads.c: Don't abort a thread thats already aborting, when
21707         terminating everything.
21708
21709 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21710
21711         * icall.c: added 2 new async calls for Socket.
21712
21713         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
21714         IO on *nix systems.
21715
21716         * threadpool.c: removed unused variable.
21717
21718 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
21719
21720         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
21721
21722 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
21723
21724         * locales.c: put back string_invariant_tolower () and
21725         string_invariant_toupper ().
21726
21727 2004-04-26 David Waite <mass@akuma.org>
21728
21729         * file-io.h:
21730         * socket-io.h:
21731         * threads.h:
21732         * unicode.h: remove comma from end of enumeration declarations
21733
21734 2004-04-26 David Waite <mass@akuma.org>
21735
21736         * debug-mono-symfile.h:
21737         * decimal.c:
21738         * mono_debug.h:
21739         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
21740
21741
21742 2004-04-26  Jackson Harper  <jackson@ximian.com>
21743
21744         * appdomain.c: Increment version number.
21745         
21746 2004-04-26  Jackson Harper  <jackson@ximian.com>
21747
21748         * appdomain.c: Set assembly references public token value when
21749         PublicKeyToken is specified, not the hash_value. Free public token
21750         values when free assembly name data. Previously the public key
21751         token was hex decoded, however we are using hex encoded public key
21752         tokens, so this is not neccasary.
21753         * assembly.c: Lookup assemblies in the gac if their public token
21754         value is set. Add function to allow enabling user gac
21755         lookups. Specify whether or not the assembly was loaded from the
21756         GAC. Compare full assembly names when checking the cache for
21757         assemblies (Temporarily disabled see comment in code). Remove
21758         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
21759         specifies trace-loader they get extra info to stdout on the
21760         loading of assemblies.
21761         * image.h: Add a field for an assembly references public token
21762         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
21763         whether an assembly has been loaded from the GAC.
21764         * image.c: Remove a corlib -> mscorlib name mapping.
21765         * loader.h: Add function to enable/disable the user gac.
21766         * mono-config.c: Check if the usergac is enabled in the config
21767         file.
21768         * icall.c: New icall to determine whether or not an assembly has
21769         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
21770         * tabldefs.h: Add constant for assemblyref flag that specifies a
21771         full public key is used instead of a public token.
21772         * reflection.c: Remove mscorlib -> corlib mappings. Set
21773         PublicTokenValue instead of hash value. This value is a hex
21774         string so it does not need to be expanded.
21775
21776 2004-04-26  Martin Baulig  <martin@ximian.com>
21777
21778         * mono-debug-debugger.c (mono_debugger_initialize): Set
21779         `mono_debugger_initialized' before calling mono_debug_lock().
21780
21781 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
21782
21783         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
21784           InternalToUpper/InternalToLower.
21785         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
21786           removed invariant culture shortcut.  This is now done in managed code.
21787         * locales.c: (string_invariant_toupper/tolower) removed.
21788
21789 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21790
21791         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
21792         Added Poll internal call.
21793
21794         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
21795         call for Poll. Select was too heavy for polling a single socket.
21796
21797         * threadpool.[ch]: added mono_threadpool_cleanup.
21798         * threads.c: use it. Don't use Thread_Abort on windows.
21799
21800 2004-04-23  Martin Baulig  <martin@ximian.com>
21801
21802         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
21803
21804 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
21805
21806         * icall.c: Registred new icalls for key pair protection and added an
21807         icall for Environment.GetFolderPath on Windows.
21808         * security.c|h: Added new icalls for key pair protection.
21809
21810 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21811
21812         * socket-io.c: don't display the non-supported family warning for known
21813         families. Now this is not displayed on windows when checking support
21814         for IPv4/IPv6.
21815
21816 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21817
21818         * class.c: don't display the layout warning for static fields.
21819
21820 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
21821
21822         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
21823         * locales.c, locales.h: Added new icalls for culture-specific
21824         Char.ToLower and Char.ToUpper.
21825
21826 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21827
21828         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
21829         by David Waite.
21830
21831 2004-04-20  Martin Baulig  <martin@ximian.com>
21832
21833         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
21834         of the type name before passing it to mono_reflection_type_from_name().
21835
21836 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
21837
21838         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
21839         encodings here. Fixes #56965.
21840
21841 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
21842
21843         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
21844         fix test on strstr result not that I can see anything that
21845         relies on the result.
21846
21847 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
21848
21849         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
21850         Fixes #57081.
21851
21852         * marshal.c (mono_marshal_get_string_encoding): New helper function.
21853
21854         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
21855         function to determine which marshalling to use for strings. Fixes
21856         #56965.
21857
21858         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
21859
21860         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
21861
21862 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
21863
21864         * icall.c: #include mono-config.h
21865
21866 2004-04-15  Jackson Harper  <jackson@ximian.com>
21867
21868         * culture-info-tables.h: Fix date formats for en-US culture.
21869         
21870 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
21871
21872         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
21873         ThreadPool.SetMinThreads.
21874         * threadpool.c: Implemented ThreadPool.GetMinThreads and
21875         ThreadPool.SetMinThreads.
21876
21877 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
21878
21879         * mono-config.c: also load the .config file in the directory
21880         where the assembly was found.
21881
21882 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
21883
21884         * assembly.c: load per-assembly config files.
21885         * icall.c: decrapified code to get the config dir and moved to
21886         mono-config.c.
21887         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
21888         per-assembly config files. When doing a dll map lookup give precedence
21889         to the per-assembly data.
21890
21891 2004-04-14  Martin Baulig  <martin@ximian.com>
21892
21893         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
21894         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
21895         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
21896
21897         * mono-debugger-debugger.c: While the debugger is locked, remember
21898         whether the symbol tables have changes and send one single
21899         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
21900
21901 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
21902
21903         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
21904
21905         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
21906         function.
21907
21908         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
21909         account when marshalling string arrays. Fixes #56965.
21910
21911 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
21912
21913         * icall.c: Add new icalls mapping for security.
21914         * security.c|h: Add internal calls for WindowsIdentity,
21915         WindowsImpersonationContext and WindowsPrincipal.
21916
21917 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
21918
21919         * class.c: Added comment to ensure the System.MonoDummy class
21920         is removed when no longer necessary
21921
21922 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
21923
21924         * appdomain.c: Pass arguments to the bootstraping exceptions to
21925         minimize JITed methods at boot
21926
21927         * metadata.c (mono_exception_from_name_two_strings): Allow for the
21928         second string to be null.
21929
21930         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
21931         Change the protocol to minimize the JIT methods at startup.  Now
21932         it Returns the internal codepage, if the value of "int_code_page"
21933         is 1 at entry, and we can not compute a suitable code page
21934         number, returns the code page as a string.
21935
21936 2004-04-13  Jackson Harper  <jackson@ximian.com>
21937
21938         * culture-info-tables.h: Fix number of decimal digits for all
21939         english locales.
21940
21941 2004-04-13  Jackson Harper  <jackson@ximian.com>
21942
21943         * icall.c: Clairfy out of sync error message. It is not always
21944         your corlib that is out of sync.
21945
21946 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
21947
21948         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
21949         properties when only the set accessor is overriden. Fixes #55874.
21950
21951 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
21952
21953         * assembly.c (mono_assembly_load_references): Make this thread safe.
21954         Fixes #56327.
21955
21956 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
21957
21958         * monosn.c: Add missing initialization calls.
21959
21960 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
21961
21962         * locales.c:
21963         ves_icall_System_Globalization_CultureInfo_construct_number_format
21964         Fix g_assert so it compiles on fussier compilers re int/ptr
21965         mismatch
21966
21967 2004-04-08  Dick Porter  <dick@ximian.com>
21968
21969         * socket-io.h:
21970         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
21971         53992.  Also rearrange the code so that the internal calls return
21972         an error value and exceptions are thrown from managed code.
21973
21974         * icall.c: Add type info to the socket icalls.
21975
21976 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21977
21978         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
21979         owes me a beer.
21980
21981 2004-04-07  Martin Baulig  <martin@ximian.com>
21982
21983         * class.c (mono_class_from_generic_parameter): Don't default
21984         `klass->parent' to `mono_defaults.object_type'.
21985
21986 2004-04-07  Martin Baulig  <martin@ximian.com>
21987
21988         * reflection.c (mono_reflection_initialize_generic_parameter): Set
21989         `param->pklass->reflection_info'.       
21990
21991 2004-04-07  Jackson Harper  <jackson@ximian.com>
21992
21993         * culture-info-tables.h: Fix date separator symbol.
21994         
21995 2004-04-07  Martin Baulig  <martin@ximian.com>
21996
21997         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
21998         from System.Type to System.MonoType.
21999
22000 2004-04-07  Martin Baulig  <martin@ximian.com>
22001
22002         * reflection.h
22003         (MonoReflectionGenericParam): Added `has_reference_type' and
22004         `has_value_type' fields.
22005
22006         * reflection.c (mono_image_get_generic_param_info): Encode the
22007         correct flags if we have the `class' or `struct' constraint.
22008
22009 2004-04-07  Martin Baulig  <martin@ximian.com>
22010
22011         * reflection.h
22012         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
22013
22014 2004-04-07  Jackson Harper  <jackson@ximian.com>
22015
22016         * appdomain.c: Revert extra patches, just wanted to bump the
22017         version number.
22018         
22019 2004-04-07  Jackson Harper  <jackson@ximian.com>
22020
22021         * Makefile.am: Add culture-info private headers.
22022         * icall.c: Add new icalls for contructing locales.
22023         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
22024         * locales.h: Declare new culture info construction methods.
22025         * object.h: Add new fields used to avoid the CultureMap to
22026         MonoCultureInfo.
22027         * culture-info.h: Definition of structs used in the culture info
22028         tables.
22029         * culture-info-tables.h: Autogenerated tables that contain culture
22030         info data. This file was generated with the locale-builder tool.
22031         * appdomain.c: Incement corlib version number.
22032         
22033 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
22034
22035         * appdomain.c: (mono_runtime_init) move mono_thread_init
22036         to before mono_object_new calls so critical sections
22037         are initialized before use.
22038
22039 2004-04-07  Martin Baulig  <martin@ximian.com>
22040
22041         * icall.c
22042         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
22043         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
22044         (ves_icall_MonoGenericParam_initialize): Removed.
22045         (monogenericparam_icalls): Removed.
22046         (generictypeparambuilder_icalls): Added new table for
22047         System.Reflection.Emit.GenericTypeParameterBuilder.
22048
22049         * reflection.c
22050         (mono_reflection_define_generic_parameter): Removed.
22051         (mono_reflection_initialize_generic_parameter): This is now called
22052         from GenericTypeParameterBuilder's .ctor.
22053
22054 2004-04-06  Martin Baulig  <martin@ximian.com>
22055
22056         * class.c (mono_class_init): Don't inflate nested classes in a
22057         generic instance.
22058         (mono_type_get_name_recurse): Include the generic arguments for
22059         generic instances and generic type declarations.
22060         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
22061         (_mono_class_get_instantiation_name): Removed.
22062         (mono_class_create_generic): Always use `gklass->name' as our name.
22063
22064         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
22065
22066         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
22067         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
22068         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
22069         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
22070         closed generic methods here.
22071
22072         * reflection.c
22073         (mono_reflection_generic_inst_get_nested_types): Removed.
22074         (inflate_mono_method): Copy the generic parameters from the
22075         MonoMethodHeader into out MonoGenericMethod.
22076
22077 2004-04-06  Martin Baulig  <martin@ximian.com>
22078
22079         * row-indexes.h
22080         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
22081
22082         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
22083
22084         * reflection.c (build_compressed_metadata): If we have any entries
22085         in the GenericParam, MethodSpec or GenericParamConstraint tables,
22086         set the header version to 1.1.
22087
22088 2004-04-06  Martin Baulig  <martin@ximian.com>
22089
22090         * class.c (mono_class_init): If we're a generic instance,
22091         initialize our nested classes, too.
22092         (_mono_class_get_instantiation_name): Deal with the new `!%d'
22093         suffix. 
22094
22095 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22096
22097         * process.c: quote the argument passed to the shell on windows.
22098
22099 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
22100
22101         * threads.c (mono_alloc_special_static_data): Allow this to be
22102         called during startup.
22103
22104 2004-04-02  Martin Baulig  <martin@ximian.com>
22105
22106         * icall.c
22107         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
22108
22109 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
22110
22111         * icall.c: Fix build.
22112
22113 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
22114
22115         * Makefile.am: Added security.c|h.
22116         * icall.c: Added icall for get_UserName;
22117         * security.c: New file for security related icalls. Added function
22118         get_UserName for System.Environment (fix #56144).
22119         * security.h: New. Header file for security.c
22120
22121 2004-04-02  Dick Porter  <dick@ximian.com>
22122
22123         * icall.c: Deleted the icalls that were obsoleted some time ago
22124         by the ICU string code, and which were mixed into the icall
22125         rearranging.  Fixes bug 55969.
22126
22127         * string-icalls.h: 
22128         * string-icalls.c: Deleted the code that those icalls reference.
22129
22130 2004-04-01  Martin Baulig  <martin@ximian.com>
22131
22132         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
22133
22134         * class.c (mono_class_from_generic_parameter): Don't set 
22135         TYPE_ATTRIBUTE_INTERFACE.
22136         (my_mono_class_from_generic_parameter): Likewise.
22137
22138 2004-04-01  Martin Baulig  <martin@ximian.com>
22139
22140         * loader.c (find_method): Added an optional `MonoClass *ic'
22141         argument to search in a specific interface.
22142         (mono_get_method_constrained): New public function.
22143
22144 2004-04-01  Martin Baulig  <martin@ximian.com>
22145
22146         * reflection.c (mono_image_get_generic_field_token): Use the
22147         `handleref' cache here.
22148
22149 2004-04-01  Martin Baulig  <martin@ximian.com>
22150
22151         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
22152
22153         * reflection.c (create_generic_typespec): Use the `typespec' hash
22154         here, not the `typeref' one.    
22155
22156 2004-04-01  Martin Baulig  <martin@ximian.com>
22157
22158         * class.c (mono_class_inflate_generic_type): Moved the
22159         functionality into a new static inflate_generic_type() which
22160         returns NULL if it didn't do anything.  Only increment the
22161         `mono_stats.inflated_type_count' if we actually inflated
22162         something.
22163         (mono_class_get_full): Check the classes type to see whether we
22164         need to inflate it; also inflate MONO_TYPE_(M)VAR.
22165
22166 2004-04-01  Jackson Harper  <jackson@ximian.com>
22167
22168         * reflection.c: Set culture for assembly references.
22169         
22170 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
22171
22172         * reflection.[ch], icall.[ch], Fix support for pinning variables.
22173
22174 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22175
22176         * assembly.c:
22177         (do_mono_assembly_open): the critical section also covers
22178         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
22179
22180 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22181
22182         * threads.c:
22183         (mono_manage_threads): abort the background threads when finishing.
22184         Fixes bug #47232.
22185
22186 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22187
22188         * gc.c: only close the done_event handle if there was no timeout.
22189         C-ified comments.
22190
22191 2004-03-30  Martin Baulig  <martin@ximian.com>
22192
22193         * icall.c (icall_entries): It's called "System.Activator", not
22194         "System.Activation".    
22195
22196 2004-03-30  Martin Baulig  <martin@ximian.com>
22197
22198         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
22199         (mono_class_create_from_typespec): Likewise.
22200
22201 2004-03-30  Martin Baulig  <martin@ximian.com>
22202
22203         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
22204         `has_ctor_constraint' and `initialized'.
22205
22206 2004-03-30  Martin Baulig  <martin@ximian.com>
22207
22208         * reflection.c (encode_new_constraint): New static function to add
22209         the constructor constraint attribute to a type parameter.
22210         (encode_constraints): Call encode_new_constraint() if necessary.
22211
22212         * reflection.h
22213         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
22214
22215         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
22216         
22217 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
22218
22219         * reflection.c, icall.c: add support for pinning variables. 
22220
22221 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
22222
22223         * marshal.c (mono_marshal_get_managed_wrapper):
22224         init bool local with zero rather than null.
22225
22226 2004-03-29  Martin Baulig  <martin@ximian.com>
22227
22228         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
22229         the "official" behavior here.
22230         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
22231
22232 2004-03-29  Martin Baulig  <martin@ximian.com>
22233
22234         * icall.c: Reflect latest API changes.
22235
22236 2004-03-29  Martin Baulig  <martin@ximian.com>
22237
22238         * loader.c (mono_get_method_from_token): Also call
22239         mono_metadata_load_generic_params () for abstract and interface
22240         methods; replace the type arguments in the method signature with
22241         the ones which are loaded from the metadata.
22242
22243 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
22244
22245         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
22246         of the lock is not the current thread. MS.NET don't do it, in spite of
22247         what the documentation says. See bug #56157.
22248
22249 2004-03-28  Martin Baulig  <martin@ximian.com>
22250
22251         * class.c (mono_class_init): Don't call init_properties() and
22252         init_events() for generic instances; set `prop->parent' when
22253         inflating properties.
22254
22255         * reflection.c (mono_generic_inst_get_object): Call
22256         `mono_class_init (ginst->klass)'.
22257         (mono_type_get_object): Only create a MonoGenericInst if your
22258         generic type is a TypeBuilder.
22259         (do_mono_reflection_bind_generic_parameters): Only set
22260         `ginst->is_dynamic' if our generic type is a TypeBuilder.
22261
22262 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
22263
22264         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
22265         Fixes #56091.
22266
22267 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22268
22269         * icall.c: added Kill_internal icall.
22270         * process.[ch]: added Kill_internal icall.
22271
22272 2004-03-25  Martin Baulig  <martin@ximian.com>
22273
22274         * class.h (MonoStats): Added `generic_instance_count',
22275         `inflated_method_count', `inflated_type_count' and
22276         `generics_metadata_size'.       
22277
22278 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22279
22280         * reflection.c: no warnings now.
22281
22282 2004-03-25  Martin Baulig  <martin@ximian.com>
22283
22284         * class.c (mono_class_get_full): New public function; does a
22285         mono_class_get(), but also takes a `MonoGenericContext *'.
22286
22287         * loader.c (mono_field_from_memberref): Renamed to
22288         `field_from_memberref', made static and added `MonoGenericContext *'
22289         argument.
22290         (mono_field_from_token): Added `MonoGenericInst *' argument.
22291         (method_from_memberef): Likewise.
22292         (mono_get_method_from_token): Likewise.
22293         (mono_get_method_full): New public function; does a
22294         mono_get_method(), but also takes a `MonoGenericContext *'.
22295
22296         * verify.c (mono_method_verify): Get the method's generic context
22297         and pass it to mono_field_from_token(), mono_get_method_full() and
22298         mono_class_get_full().
22299
22300 2004-03-25  Martin Baulig  <martin@ximian.com>
22301
22302         * class.c (mono_class_inflate_generic_type): Take a
22303         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
22304         `MonoGenericMethod *'.
22305
22306 2004-03-25  Martin Baulig  <martin@ximian.com>
22307
22308         * loader.h (MonoMethodInflated): Store the MonoGenericContext
22309         instead of the MonoGenericMethod here.
22310
22311 2004-03-25  Martin Baulig  <martin@ximian.com>
22312
22313         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
22314         each time we create a new MonoGenericInst, we also create a new
22315         context which points back to us.
22316
22317         * class.c (inflate_method): Use `ginst->context' instead of
22318         creating a new context.
22319
22320         * loader.c (method_from_memberref): Use
22321         `klass->generic_inst->context' instead of creating a new context.
22322
22323 2004-03-25  Martin Baulig  <martin@ximian.com>
22324
22325         * class.h (MonoGenericContext): New struct.
22326         (MonoGenericMethod): Removed `generic_inst'.
22327
22328         * class.c (mono_class_inflate_generic_method): Take a
22329         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
22330
22331 2004-03-25  Martin Baulig  <martin@ximian.com>
22332
22333         * loader.h (MonoMethodInflated): New typedef.
22334
22335         * metadata.h (MonoMethodSignature): Removed `gen_method', make
22336         `generic_param_count' consume just 30 bits, added `is_inflated'
22337         and `has_type_parameters' flags (one bit each).
22338
22339         * class.c (mono_class_inflate_generic_method): Create a
22340         MonoMethodInflated instead of a MonoMethodNormal and set
22341         `is_inflated' in the method signature.
22342
22343         * class.h (MonoGenericMethod): Removed `generic_method'.
22344
22345 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
22346
22347         * image.c: Make sure the name of a MonoImage is always an absolute path.
22348           This fixes bug #54415.
22349
22350 2004-03-24  Martin Baulig  <martin@ximian.com>
22351
22352         * class.c (mono_class_setup_vtable): If we're a generic instance,
22353         use our generic type's vtable size.
22354
22355 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
22356
22357         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
22358         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
22359         problems.
22360
22361 2004-03-23  Martin Baulig  <martin@ximian.com>
22362
22363         * class.h (MonoDynamicGenericInst): Added `int count_events' and
22364         `MonoEvent *events'.
22365
22366         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
22367         (typebuilder_icalls): Added "get_event_info"; calls
22368         mono_reflection_event_builder_get_event_info(). 
22369
22370         * reflection.c (mono_reflection_generic_inst_initialize): Added
22371         `MonoArray *events'.
22372         (mono_reflection_event_builder_get_event_info): New function.
22373
22374 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
22375
22376         * object.h: add mono_type_initialization_init
22377
22378         * object.c (mono_runtime_class_init): 
22379         implement class constructor synchronization rules
22380         to cope with threading issues.  
22381         add mono_type_initialization_init
22382
22383         * appdomain.c (mono_runtime_init): call 
22384         mono_type_initialization_init
22385
22386         * class.h: removing initializing field from MonoVTable
22387
22388 2004-03-23  Martin Baulig  <martin@ximian.com>
22389
22390         * class.c (my_mono_class_from_generic_parameter): Use
22391         `param->name' if it's not NULL. 
22392
22393 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
22394
22395         * class.c: do not insert non-virtual methods in the vtable.
22396         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
22397         that means the method is non-virtual. This never would have
22398         happened before.
22399
22400 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
22401
22402         * profiler.c: Added lock for accessing coverage_hash.
22403
22404 2004-03-22  Martin Baulig  <martin@ximian.com>
22405
22406         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
22407         `method->method->signature->generic_param_count != 0' to make it
22408         work for interface methods.
22409
22410 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22411
22412         * process.c: quote the string passed to the shell using g_shell_quote.
22413
22414 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22415
22416         * threads.c:
22417         (mono_threads_manage): don't remove the finalizer thread and self
22418         from the threads hash table so that mono_thread_manage can be called
22419         more than once.
22420
22421 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22422
22423         * process.c: quote the arguments when UseShellExecute is true. Fixes
22424         bug #55790.
22425
22426 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22427
22428         * threads.c: set mono_thread_detach as a cleanup routine for every
22429         thread. This way it's always executed upon thread termination, either
22430         aborted or finished normally. No more xsp hangs!
22431
22432 2004-03-17  Martin Baulig  <martin@ximian.com>
22433
22434         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
22435         `int count_nested' and a `MonoType **nested'.
22436
22437         * reflection.c (mono_reflection_bind_generic_parameters): Moved
22438         most of the functionality into a new static
22439         do_mono_reflection_bind_generic_parameters() and don't take a
22440         `MonoType *nested_in' argument any more.  Don't compute nested
22441         types here.
22442         (mono_reflection_generic_inst_get_nested_types): New public method
22443         to get nested types.
22444
22445         * class.c (mono_class_create_generic): Set `klass->nested_in' if
22446         we're a nested class.
22447
22448         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
22449         mono_reflection_generic_inst_get_nested_types() to compute the
22450         nested types.
22451
22452 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22453
22454         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
22455         descriptive error message under windows.
22456         
22457 2004-03-17  Martin Baulig  <martin@ximian.com>
22458
22459         * class.c (dup_type): Added `const MonoType *original' argument;
22460         copy the attrs from the original type.
22461
22462 2004-03-17  Martin Baulig  <martin@ximian.com>
22463
22464         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
22465         `m->generic_inst_cache' here.
22466
22467 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22468
22469         * exception.h exception.c: Add stack_overflow_exception.
22470
22471 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22472
22473         * threadpool.c:
22474         (overlapped_callback): call SetEvent *after* invoking the callback.
22475         No need to call CloseHandle.
22476
22477 2004-03-16  Martin Baulig  <martin@ximian.com>
22478
22479         * reflection.c (mono_image_get_fieldref_token): Take a
22480         `MonoReflectionField *' instead of a `MonoClassField *' and a
22481         `MonoClass *'; store the `MonoReflectionField *' in the hash.
22482
22483 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22484
22485         * appdomain.c: don't add the culture to the filename we're looking for
22486         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
22487
22488 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22489
22490         * locales.c: don't ignore symbols when doing case insensitive compares.
22491         Thanks Dick! Fixes bug #54046.
22492
22493         * threads.c: surround 'threads' usage with enter/leave in
22494         mono_thread_manage.
22495
22496 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
22497
22498         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
22499         implicitly marshalled as [Out]. Fixes #55450.
22500
22501         (mono_marshal_get_runtime_invoke): Zero out the result if there is
22502         an exception.
22503
22504 2004-03-16  Martin Baulig  <martin@ximian.com>
22505
22506         * class.c (mono_class_from_generic_parameter): Use the actual
22507         parameter name. 
22508
22509 2004-03-16  Martin Baulig  <martin@ximian.com>
22510
22511         * reflection.c (type_get_signature_size): New static function.
22512         Compues the size of the type in a method signature.
22513         (method_get_signature_size): New static function; calls
22514         type_get_signature_size() to compute the actual size of the
22515         method's signature.
22516         (method_encode_signature): Use method_get_signature_size() to get
22517         the signature's size rather than using `nparams * 10'.
22518
22519 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22520
22521         * file-io.h: define here WapiOverlapped on windows. I don't want the
22522         regular OVERLAPPED one.
22523
22524         * file-io.c:
22525         * threadpool.c: somehow, BindIoCompletionCallback is not found.
22526         Disabling AIO on windows.
22527
22528 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22529
22530         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
22531         bug #55385.
22532
22533 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22534
22535         * appdomain.c: upgraded corlib version.
22536
22537         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
22538         and BeginWrite. Allow opening files for asynchrnous operations.
22539
22540         * file-io.h: new struct that maps FileStreamAsyncResult.
22541         * icall.c: added new icalls.
22542         * process.[ch]: support setting child process environment variables
22543         and use the SHELL or COMSPEC when UseShellExecute is true.
22544
22545         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
22546         callback for async. IO is here and also BindHandle.
22547
22548         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
22549         from here.
22550
22551 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
22552
22553         * reflection.c (create_custom_attr): Allow len == 0.
22554
22555         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
22556         computation on big-endian machines.
22557
22558 2004-03-13  Martin Baulig  <martin@ximian.com>
22559
22560         * class.h (MonoGenericInst): Added `int count_ifaces'.
22561
22562         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
22563         `ginst->count_ifaces' instead `klass->interface_count' since we
22564         may get called before the vtable is created.
22565
22566         * loader.c (mono_method_get_param_names): If we're a generic
22567         instance, return and don't initialize the class.
22568
22569         * reflection.c (mono_reflection_setup_generic_class): Don't call
22570         ensure_runtime_vtable().
22571         (mono_reflection_bind_generic_parameters): Set
22572         `ginst->count_ifaces'.
22573
22574 2004-03-11  Jackson Harper <jackson@ximian.com>
22575
22576         * icall.c:
22577         * unicode.c:
22578         * unicode.h: Remove unused System.Char icalls.
22579         
22580 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
22581
22582         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
22583         code when we P/Invoke the first library in Windows.Forms, instead
22584         of when we first open the assembly.
22585
22586         * assembly.c: Drop the lookup from here.
22587
22588 2004-03-10  Martin Baulig  <martin@ximian.com>
22589
22590         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
22591         class for properties, fields and events.  Finally fixes #54945.
22592
22593 2004-03-10  Martin Baulig  <martin@ximian.com>
22594
22595         * metadata.c (mono_metadata_class_equal): New static function;
22596         checks whether two generic instances or two generic parameters are
22597         equal.
22598         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
22599         compare classes.        
22600
22601 2004-03-10  Martin Baulig  <martin@ximian.com>
22602
22603         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
22604
22605         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
22606         argument and write it into the `reflection_info' field.
22607
22608         * icall.c
22609         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
22610         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
22611
22612 2004-03-09  Jackson Harper  <jackson@ximian.com>
22613
22614         * char-conversions.h: use 8 bits for numeric data its all we need
22615         * icall.c: numeric data is only 8 bits now.
22616
22617 2004-03-09  Martin Baulig  <martin@ximian.com>
22618
22619         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
22620
22621         * class.c (init_properties, init_events): Initialize the new
22622         `parent' field.
22623
22624         * reflection.c (typebuilder_setup_properties): Likewise.
22625         (typebuilder_setup_events): Likewise.
22626
22627         * reflection.h (MonoEventInfo): Replaced `parent with
22628         `declaring_type' and `reflected_type'.
22629
22630         * icall.c (ves_icall_get_property_info): Distinguish between
22631         declaring and reflected type.
22632         (ves_icall_get_event_info): Likewise.
22633
22634 2004-03-09  Martin Baulig  <martin@ximian.com>
22635
22636         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
22637         (ves_icall_Type_GetField): Correctly set field->klass.
22638
22639 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
22640
22641         * loader.h: Fix warning.
22642
22643 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
22644
22645         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
22646         library routine if present.  Notice that it will still continue
22647         executing even if its missing, for those working on the Gtk#
22648         edition of Windows.Forms.
22649
22650         * assembly.c (do_mono_assembly_open): If loading the
22651         System.Windows.Forms call mono_loader_wini_init.
22652
22653 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
22654
22655         * class.h: Added MonoRemoteClass struct.
22656         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
22657         function for MonoStrings.
22658         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
22659         Added internal call for getting the proxy type.
22660         * marshal.c: Get the type of transparent proxies from its remote_class.
22661         Added methods that generate the IL for type checks and casts:
22662         mono_marshal_get_isinst, mono_marshal_get_castclass, 
22663         mono_marshal_get_proxy_cancast.
22664         * marshal.h: Declaration of the previous new methods.
22665         * object.c: Added new moethods for creating and updating MonoRemoteClass
22666         instances: mono_remote_class, mono_upgrade_remote_class, 
22667         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
22668         * verify.c: FIx transparent_proxy_fields layout.
22669         * appdomain.c: Bump corlib version.
22670
22671 2004-03-04  Jackson Harper  <jackson@ximian.com>
22672
22673         * icall.c: Add icall to access char conversion tables.
22674         * char-conversions.h: Character conversion tables.
22675         * Makefile.am: Add char-conversions.h private header file.
22676         
22677 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
22678
22679         * appdomain.c (unload_thread_main): Increase unloading timeout to
22680         10 sec as a temporary workaround for Nant problems.
22681
22682 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
22683
22684         * gc.c: Add checks for GC_enable and GC_disable.
22685
22686         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
22687         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
22688         (bug #54988).
22689         
22690 2004-02-27  Martin Baulig  <martin@ximian.com>
22691
22692         * reflection.c (mono_reflection_bind_generic_parameters): Take a
22693         `MonoReflectionType *' instead of a `MonoType *'.
22694
22695 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
22696
22697         * gc.c (run_finalize): Avoid finalizing the object representing the
22698         finalizer thread.
22699         (finalizer_thread): Fix warning.
22700
22701 2004-02-25  Martin Baulig  <martin@ximian.com>
22702
22703         * class.c (_mono_class_get_instantiation_name): Added `int offset'
22704         argument for nested types.
22705         (mono_class_create_generic): Added support for nested generictypes.
22706
22707         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
22708         `GList *nested'.
22709
22710         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
22711
22712         * reflection.c (method_encode_signature): Increase the minimum
22713         value of `size' from 10 to 11.
22714         (mono_reflection_bind_generic_parameters): Take `int type_argc'
22715         and `MonoType **types' arguments instead of the `MonoArray
22716         *types'; added `MonoType *nested_in'.  Recursively instantiate
22717         nested classes. 
22718
22719 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
22720
22721         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
22722         stack_overflow_ex members which are used by exception handling.
22723
22724         * appdomain.c (mono_runtime_init): Initialize the new members.
22725
22726         * gc.c (mono_gc_enable): New helper function.
22727         * gc.c (mono_gc_disable): New helper function.
22728
22729 2004-02-23  Martin Baulig  <martin@ximian.com>
22730
22731         * icall.c: I must have been really stupid - make it actually work
22732         this time ;-)
22733
22734 2004-02-23  Martin Baulig  <martin@ximian.com>
22735
22736         * loader.c (method_from_memberref): Only inflate the method if
22737         it's in another klass.
22738
22739 2004-02-23  Martin Baulig  <martin@ximian.com>
22740
22741         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
22742         (mono_class_init): If we're a generic instance and an interface,
22743         compute `class->interface_id'; also create `class->interfaces'
22744         here and inflate them.
22745
22746         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
22747         `ginst->is_open'.
22748         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
22749
22750         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
22751
22752 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
22753
22754         * reflection.c (method_encode_code): Improved the error message
22755         generated by the exception.
22756
22757 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22758
22759         * icall.c: Martin did not do what he said in the ChangeLog for
22760         2004-02-18, but put back the changes for properties and events.
22761         Commenting those changes out again and adding comment to bug #54518.
22762         
22763         * process.c: removed warning.
22764
22765 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
22766
22767         * marshal.c (emit_struct_conv): Print an error message instead of
22768         asserting when a type does not have the StructLayout attribute.
22769
22770 2004-02-20  Martin Baulig  <martin@ximian.com>
22771
22772         * reflection.c (mono_type_get_object): Also use the cache for
22773         generic instances.
22774         (mono_reflection_bind_generic_parameters): Always compute
22775         `ginst->ifaces'.        
22776
22777 2004-02-20  Martin Baulig  <martin@ximian.com>
22778
22779         * class.h (MonoGenericMethod): Removed `klass'.
22780
22781         * class.c (mono_class_inflate_generic_method): Added `MonoClass
22782         *klass' argument.
22783
22784 2004-02-20  Martin Baulig  <martin@ximian.com>
22785
22786         * reflection.c (method_encode_methodspec): Actually use the
22787         uninflated signature for the memberref.
22788
22789 2004-02-20  Martin Baulig  <martin@ximian.com>
22790
22791         * class.h (MonoGenericMethod): Removed `declaring'.
22792
22793         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
22794         is NULL, compute it here.
22795
22796 2004-02-20  Martin Baulig  <martin@ximian.com>
22797
22798         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
22799
22800         * metadata.c (mono_metadata_generic_inst_hash): New method.
22801         (mono_metadata_generic_inst_equal): New method.
22802
22803         * reflection.c (mono_reflection_bind_generic_parameters): Use the
22804         `klass->image->generic_inst_cache' cache to avoid creating
22805         duplicate MonoGenericInst's.
22806
22807         * class.c (mono_class_inflate_generic_type): Use the cache.
22808
22809 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22810
22811         * object.c: fixed gc descriptor calculation for embedded valuetypes.
22812
22813 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22814
22815         * icall.c: added Socket.WSAIoctl icall.
22816
22817         * socket-io.[ch]: implemented
22818         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
22819
22820 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
22821
22822         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
22823
22824 2004-02-18  Urs C Muff  <umuff@quark.com>
22825
22826         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
22827         this work on PPC and other big-endian architectures.
22828
22829         * debug-mono-symfile.h: Prepended the names of all the `guint32'
22830         fields with an underscore to make sure they're only accessed by
22831         the read32() macro.
22832
22833 2004-02-18  Martin Baulig  <martin@ximian.com>
22834
22835         * icall.c: Put the klass->refclass changes back for methods and
22836         fields, but not for properties and events.  We're currently not
22837         distinguishing between DeclaringType and ReflectedType for
22838         properties and events, that's what caused the regressions.
22839
22840 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22841
22842         * object.c:
22843         (mono_async_result_new): the handle can be NULL.
22844
22845         * threadpool.c: Use an event instead of a semaphore, don't initialize
22846         it until needed. This saves quite a few semaphores from being created
22847         when using the threadpool.
22848
22849 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
22850
22851         * object.c (mono_string_is_interned_lookup): Fix interning of long
22852         strings. Fixes #54473.
22853
22854         * domain.c (ldstr_equal): Optimize if the two strings are equal.
22855
22856         * icall.c: Revert the klass->refclass changes since they introduce
22857         regressions (bug #54518).
22858
22859 2004-02-18  Martin Baulig  <martin@ximian.com>
22860
22861         * class.c (mono_class_init): If we're a generic instance and don't
22862         come from a TypeBuilder, inflate our members here.
22863         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
22864         (mono_class_create_generic): New public method.
22865         (mono_class_initialize_generic): Removed.
22866         (get_instantiation_name): Renamed to
22867         _mono_class_get_instantiation_name() and made it public.
22868
22869 2004-02-18  Martin Baulig  <martin@ximian.com>
22870
22871         * class.c (mono_class_inflate_generic_type): Clear the new
22872         instance's `nginst->klass' when inflating a generic instance.
22873         (mono_class_is_subclass_of): Added (basic) support for generic
22874         instances.
22875
22876 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
22877
22878         * appdomain.h, domain.c: use a MonoCodeManager instead of a
22879         MonoMempool to hold compiled native code.
22880
22881 2004-02-17  Martin Baulig  <martin@ximian.com>
22882
22883         * class.h (MonoDynamicGenericInst): Added `count_properties' and
22884         `properties'.
22885
22886         * reflection.c (mono_reflection_generic_inst_initialize): Added
22887         `MonoArray *properties' argument.
22888
22889         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
22890
22891 2004-02-17  Martin Baulig  <martin@ximian.com>
22892
22893         * icall.c (ves_icall_Type_GetFields): Renamed to
22894         ves_icall_Type_GetFields_internal() and added a
22895         `MonoReflectionType *rtype' argument; pass it to
22896         mono_field_get_object() to set the field's "reflected" type.
22897         (ves_icall_Type_GetConstructors): Likewise.
22898         (ves_icall_Type_GetEvents): Likewise.
22899         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
22900         argument; pass it to mono_method_get_object() to set the method's
22901         "reflected" type.       
22902
22903 2004-02-17  Martin Baulig  <martin@ximian.com>
22904
22905         * class.h (MonoDynamicGenericInst): New type.
22906         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
22907
22908         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
22909         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
22910         (ves_icall_MonoGenericInst_GetFields): New interncall.
22911
22912         * class.c (mono_class_from_generic): Don't call
22913         mono_class_initialize_generic() if this is a dynamic instance;
22914         ie. it's being created from a TypeBuilder.
22915         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
22916         `class->byval_arg.type'.
22917
22918         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
22919         to `inflate_method' and made static.
22920         (mono_reflection_inflate_field): Removed.
22921         (mono_reflection_generic_inst_initialize): New public method.
22922
22923         * reflection.h (MonoReflectionGenericInst): Removed `methods',
22924         `ctors' and `fields'; added `initialized'.
22925
22926 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
22927
22928         * debug-helpers.c (mono_method_full_name): Fix output for empty
22929         namespaces.
22930
22931 2004-02-12  Martin Baulig  <martin@ximian.com>
22932
22933         * class.h (MonoClassField): Added `MonoType *generic_type'.
22934
22935         * reflection.c (mono_image_get_fieldref_token): Added support for
22936         instantiated generic types.
22937         (field_encode_inflated_field): Removed.
22938         (mono_image_get_inflated_field_token): Removed.
22939         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
22940
22941         * reflection.h (MonoReflectionInflatedField): Removed.
22942
22943 2004-02-12  Martin Baulig  <martin@ximian.com>
22944
22945         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
22946         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
22947
22948         * reflection.c (mono_image_get_methodspec_token): Take a
22949         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
22950         (mono_image_create_token): Check whether we have a
22951         `method->signature->gen_method' and call
22952         mono_image_get_methodspec_token() if appropriate.
22953         (inflated_method_get_object): Removed.
22954         (mono_reflection_bind_generic_method_parameters): Return a
22955         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
22956         (mono_reflection_inflate_method_or_ctor): Likewise.
22957
22958         * reflection.h (MonoReflectionInflatedMethod): Removed.
22959
22960 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
22961
22962         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
22963         for custom valuetype marshalling.
22964
22965         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
22966
22967 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22968
22969         * icall.c: fixed WSAGetLastError_internal name.
22970
22971 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
22972
22973         * threads.c (mono_thread_attach): Allow this to be called multiple
22974         times for a thread.
22975         
22976         * threads.c (build_wait_tids): Do not wait for ourselves.
22977
22978         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
22979         appdomain list is empty.
22980
22981         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
22982         memory returned by mono_string_builder_to_utf16, since it points into
22983         managed memory. Thanks to Bernie Solomon for noticing this.
22984
22985         * icall.c: Add AppDomainSetup icalls.
22986
22987         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
22988
22989         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
22990         types.
22991
22992         * reflection.c (reflection_methodbuilder_to_mono_method): Save
22993         custom attributes to the method_aux struct. Also fix array indexes etc.
22994
22995         * loader.c (mono_method_get_param_names): Make dynamic case work again.
22996         
22997 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
22998
22999         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
23000         (both static and runtime) and reduce startup time.
23001
23002 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
23003
23004         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
23005         AsAny marshalling conversion instead of crashing.
23006
23007         * marshal.c: Fix warnings.
23008
23009 2004-02-09  Martin Baulig  <martin@ximian.com>
23010
23011         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
23012
23013         * reflection.h (MonoReflectionInflatedMethod): Removed the
23014         `declaring' field, it's now in the unmanaged MonoGenericMethod.
23015
23016         * reflection.c (method_encode_methodspec): Removed the `method'
23017         argument; we get it from `gmethod->declaring'.
23018         (inflated_method_get_object): Removed the `declaring' argument.
23019
23020 2004-02-09  Martin Baulig  <martin@ximian.com>
23021
23022         * class.h (MonoGenericMethod): New type.
23023         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
23024         `generic_method'.
23025
23026         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
23027         a `MonoGenericMethod *gen_method' one.
23028
23029         * class.c (mono_class_inflate_generic_type): Take an additional
23030         `MonoGenericMethod * argument.  This is only non-NULL if we're
23031         inflating types for a generic method.   
23032         (mono_class_inflate_generic_signature): Renamed to
23033         inflate_generic_signature() and made static; take a
23034         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
23035         (inflate_generic_header): Take a `MonoGenericMethod *' argument
23036         instead of a `MonoGenericInst *' one.
23037         (mono_class_inflate_generic_method): Likewise.
23038
23039         * reflection.c (encode_generic_method_sig): Take a
23040         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
23041         (method_encode_methodspec): Likewise.
23042         (inflated_method_get_object): Likewise. 
23043
23044         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
23045         field with a `MonoGenericMethod *gmethod' one.  
23046
23047 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
23048
23049         * class.h (mono_class_has_parent): add parens to expansion
23050         so you can ! this.
23051
23052 2004-02-08  Martin Baulig  <martin@ximian.com>
23053
23054         * image.h (MonoImage): Removed `generics_cache'.
23055
23056         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
23057         instead of a `MonoType *' argument; removed the `inflate_methods'
23058         argument.  Don't inflate methods here.
23059
23060         * loader.c (find_method): If it's a generic instance, call
23061         mono_class_init() on the `sclass->generic_inst->generic_type'.
23062
23063         * metadata.c (mono_type_size): Make this work on uninitialized
23064         generic instances; call it on the `ginst->generic_type's class.
23065
23066         * reflection.c (mono_reflection_bind_generic_parameters): Call
23067         mono_class_from_generic() to create the `ginst->klass'.
23068
23069 2004-02-08  Martin Baulig  <martin@ximian.com>
23070
23071         * class.h (MonoClass): Changed type of `generic_inst' from
23072         `MonoType *' to `MonoGenericInst *'.
23073
23074 2004-02-08  Martin Baulig  <martin@ximian.com>
23075
23076         * icall.c (ves_icall_Type_BindGenericParameters): Just call
23077         mono_type_get_object(), this is now creating a `MonoGenericInst'
23078         for MONO_TYPE_GENERICINST.
23079         (ves_icall_MonoGenericInst_GetParentType): Likewise.
23080         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
23081
23082         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
23083         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
23084         (inflated_method_get_object): Added `MonoClass *refclass' argument.
23085         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
23086         and reflected type.
23087
23088         * reflection.h (MonoReflectionInflatedMethod): Removed
23089         `declaring_type' and `reflected_type'.
23090
23091 2004-02-08  Martin Baulig  <martin@ximian.com>
23092
23093         * class.h (MonoGenericInst): Added `MonoType *parent' and
23094         `MonoType **ifaces'.
23095
23096         * reflection.h (MonoReflectionGenericInst): Removed `klass',
23097         `parent' and `interfaces'.
23098
23099         * reflection.c (mono_reflection_bind_generic_parameters): Take a
23100         `MonoType *' argument and return a `MonoType *'.
23101
23102         * icall.c
23103         (ves_icall_MonoGenericInst_GetParentType): New interncall.
23104         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
23105
23106 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
23107
23108         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
23109         valuetype marshalling.
23110
23111 2004-02-06  Martin Baulig  <martin@ximian.com>
23112
23113         * class.c
23114         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
23115         (my_mono_class_from_generic_parameter): Likewise.
23116
23117 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
23118
23119         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
23120         contents of the symbol files lazily.
23121
23122         * object.h (MonoThread): Add 'name' and 'name_len' fields.
23123
23124         * threads.h threads.c icall.c: New icalls for getting and setting the
23125         threads name.
23126
23127 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
23128
23129         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
23130         Raise an exception when the domain is not found.
23131
23132 2004-02-03  Martin Baulig  <martin@ximian.com>
23133
23134         * reflection.c (mono_image_get_methodspec_token): Use the
23135         uninflated signature; fixes gen-33.
23136
23137 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
23138
23139         * gc.c threads.c: Make the finalizer thread a normal managed thread so
23140         the finalizer code can use thread functionality.
23141
23142         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
23143         the finalizer thread.
23144
23145         * threads.c: Make some functions more robust.
23146
23147         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
23148
23149         * metadata.h: Add new marshalling conventions.
23150
23151         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
23152         stringbuilder marshalling. Fixes #53700.
23153
23154         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
23155
23156         * reflection.c (mono_image_get_type_info): Save declarative security
23157         info.
23158
23159         * reflection.c (mono_image_get_field_info): Handle uninitialized 
23160         unmanaged fields as well.
23161
23162         * appdomain.c: Bump corlib version.
23163
23164 2004-02-01  Martin Baulig  <martin@ximian.com>
23165
23166         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
23167         method type arguments.  
23168
23169 2004-01-30  Duncan Mak  <duncan@ximian.com>
23170
23171         * marshal.h: Add prototype for
23172         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
23173         and
23174         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
23175         fix the build.
23176
23177 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
23178
23179         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
23180         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
23181
23182 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
23183
23184         * marshal.c (mono_marshal_get_native_wrapper): Add support for
23185         custom marshalling of valuetypes.
23186
23187         * marshal.c: Fix some warnings.
23188
23189 2004-01-29  Martin Baulig  <martin@ximian.com>
23190
23191         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
23192         for generic method parameters.
23193
23194         * reflection.c (method_encode_methodspec): Write the uninflated
23195         signature into the methodspec table.
23196         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
23197         is always the uninflated method.
23198         (reflection_methodbuilder_to_mono_method): Copy the generic
23199         parameters from the MethodBuilder into `header->gen_params'.
23200
23201 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
23202
23203         * class.c (mono_class_from_generic_parameter): Fix warning.
23204
23205 2004-01-27  Martin Baulig  <martin@ximian.com>
23206
23207         * class.c (mono_class_from_generic_parameter): Don't create
23208         `klass->methods' here.  
23209
23210 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
23211
23212         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
23213         extension since it does not work with libraries named lib<FOO>.dll.so.
23214
23215 2004-01-25  Martin Baulig  <martin@ximian.com>
23216
23217         * class.c (mono_class_inflate_generic_type): Added support for
23218         MONO_TYPE_GENERICINST.
23219
23220         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
23221         inflate methods on open constructed types.      
23222
23223 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23224
23225         * object.c: fire ProcessExit event in the root AppDomain after running
23226         Main. Fixes bug #53299.
23227
23228 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
23229
23230         * socket-io.c: include the new socket-wrappers.h header.
23231         Use the wrappers instead of the unix socket functions to make the code
23232         more clear.
23233
23234 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
23235
23236         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
23237
23238         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
23239         Fixes #22532.
23240
23241 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
23242
23243         * reflection.c (mono_image_create_pefile): Handle the case when the
23244         entry point is not a MethodBuilder.
23245
23246         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
23247         field to ReflectionMethod since it is not allways a builder.
23248
23249         * reflection.c (type_get_fully_qualified_name): New helper function to
23250         return the fully qualified name of a type.
23251
23252         * reflection.c (encode_marshal_blob): Always emit the fully qualified
23253         type name for custom marshallers.
23254
23255         * reflection.c (mono_marshal_spec_from_builder): Ditto.
23256
23257         * class.c (mono_class_setup_vtable): If a parent class already 
23258         implements an interface, use the implementing methods from that class.
23259         Fixes #53148.
23260
23261 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23262
23263         * threadpool.c: just return instead of ExitThread to allow for thread
23264         clean up earlier.
23265
23266 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
23267
23268         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
23269         when closing resource modules.
23270
23271         * reflection.c (mono_image_create_pefile): Handle the case when the
23272         entry point is not a MethodBuilder.
23273
23274         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
23275         field to ReflectionMethod since it is not allways a builder.
23276
23277 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23278
23279         * marshal.c (mono_marshal_get_managed_wrapper): 
23280         mono_marshal_alloc takes native int so CONV_I
23281         the arg for 64bits.
23282
23283 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
23284
23285         * reflection.c (fixup_cattrs): New function to fixup the methoddef
23286         tokens in the cattr table. Fixes #53108.
23287
23288 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23289
23290         * loader.c: don't trim ".dll" before looking up in the config file.
23291         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
23292
23293 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
23294
23295         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
23296         Return the module which contains the resource as well.
23297         (ves_icall_System_Reflection_Module_Close): New icall.
23298
23299         * appdomain.c: Bump corlib version number.
23300
23301         * image.c (mono_image_addref): New public function.
23302
23303         * assembly.c: Call mono_image_addref.
23304
23305         * reflection.c (mono_module_get_object): Increase reference count of 
23306         the image.
23307
23308         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
23309         Fixes #22532.
23310
23311         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
23312         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
23313         proper exceptions on DllImport problems.
23314
23315 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
23316
23317         * class.c, metadata.c: eliminate CSIZE macro.
23318
23319 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
23320
23321         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
23322         * object.h: Added async_callback field in MonoAsyncResult.
23323         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
23324         * verify.c: Added async_callback in MonoAsyncResult layout.
23325
23326 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
23327
23328         * reflection.c (mono_reflection_get_custom_attrs): Add support
23329         for Modules.
23330
23331 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23332
23333         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
23334         marshalling.
23335         (mono_marshal_method_from_wrapper): Add null pointer check.
23336
23337 2004-01-16  Martin Baulig  <martin@ximian.com>
23338
23339         * debug-mono-symfile.h: Set version number to 36 and reflect
23340         latest symbol writer changes.
23341
23342 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23343
23344         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
23345         multi-dimensional arrays.
23346         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
23347         (mono_class_from_mono_type): Use bounded_array_class_get.
23348         
23349         * class.c (mono_bounded_array_class_get): New function which takes
23350         a 'bounded' bool argument to distinguish vectors from one dimensional
23351         arrays.
23352
23353         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
23354         bounded_array_class_get if the array has bounds.
23355
23356         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
23357         Search modules loaded using AssemblyBuilder:AddModule as well.
23358
23359 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23360
23361         * appdomain.c: increased corlib version.
23362         * filewatcher.c: removed g_print.
23363         * icall.c:
23364         (get_property_info): only allocate what is actually requested.
23365         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
23366
23367 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23368
23369         * Makefile.am: added filewatcher.[ch]
23370         * filewatcher.[ch]: FileSystemWatcher runtime support.
23371         * icall.c: added new FSW icalls.
23372
23373 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
23374
23375         * string-icalls.c: fix stringbuilder regression as suggested by
23376         Iain McCoy <iain@mccoy.id.au>.
23377
23378 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
23379
23380         * process.c (process_read_stringtable_block): Recognize '007f' as
23381         a language neutral stringtable block.
23382
23383 2004-01-12  Patrik Torstensson
23384
23385         * object.h (MonoStringBuilder) : Changed layout to support our
23386         new stringbuilder class.
23387         * marshal.c: Change marshalling to support the new layout of 
23388         string builder.
23389         * appdomain.c: increased version number because new layout of
23390         string builder.
23391
23392 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
23393
23394         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
23395         assembly name as an string instead of an AssemblyName, since it is
23396         easier to extract info from it.
23397
23398         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
23399         the culture subdirectories too. Fixes #52231.
23400
23401 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23402
23403         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
23404         It takes 2 new parameters with an optional name for the method to look
23405         for and case ignoring info.
23406
23407         * threadpool.c: removed unused variable.
23408
23409 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23410
23411         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
23412         It takes 2 new parameters with an optional name for the property to look
23413         for and case ignoring info.
23414         Fixes bug #52753.
23415
23416 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
23417
23418         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
23419         Fix #52451.
23420
23421 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23422
23423         * appdomain.c:
23424         * assembly.c: escape the uri before passing it to g_filename_from_uri.
23425         Fixes bug #52630.
23426
23427 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
23428
23429         * reflection.c: Add support for more than one unmanaged resource.
23430
23431         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
23432         in field->def_value, as done in all other cases.
23433
23434         * reflection.c (mono_reflection_get_custom_attrs): Add support for
23435         TypeBuilders.
23436
23437         * reflection.c (mono_reflection_create_runtime_class): Remove 
23438         errorneous assignment to klass->element_class, since it is already
23439         done in mono_reflection_setup_internal_class.
23440
23441 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23442
23443         * gc.c: added missing LeaveCriticalSection.
23444         * icall.c: indented a couple of lines.
23445         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
23446         if we call EndInvoke inside a callback. Fixes bug #52601.
23447
23448 2004-01-07  Martin Baulig  <martin@ximian.com>
23449
23450         * mono-debug-debugger.h
23451         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
23452
23453 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
23454
23455         * appdomain.c: Use messages in NotImplementedException.
23456
23457         * exception.c (mono_get_exception_not_implemented): Now this takes
23458         a message argument.
23459
23460         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
23461         exception instead of g_asserting an aborting when something is not
23462         implemented.
23463
23464         Add some inline docs.
23465
23466 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
23467
23468         * reflection.h: Update after changes to object layout.
23469
23470         * reflection.c: Implement saving of unmanaged aka win32 resources.
23471
23472         * appdomain.c: Bump version number.
23473
23474         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
23475         Handle missing domains gracefully.
23476
23477 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
23478
23479         * file-io.c : On Windows, there are much more invalid_path_chars.
23480
23481 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
23482
23483         * class.h, object.c: prepare for GetType () speedup.
23484
23485 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
23486
23487         * profiler.c: workaround for --profile null reference exception on
23488           cygwin. Patch by Patrik Torstensson.
23489
23490 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
23491
23492         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
23493         make work for unaligned access.
23494
23495 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
23496
23497         * class.c: small cleanup (class->fields [i] -> field).
23498         * image.c: check address of metadata is valid.
23499
23500 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
23501
23502         * assembly.h assembly.c (mono_assembly_loaded): New public function to
23503         search the list of loaded assemblies.
23504
23505         * reflection.c (mono_reflection_type_from_name): Use 
23506         mono_assembly_loaded instead of mono_image_loaded.
23507
23508         * reflection.c: Fix warnings.
23509
23510 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
23511
23512         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
23513         is dynamic. This is needed since an assembly can contain both dynamic and
23514         non-dynamic images.
23515
23516         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
23517         assembly->dynamic.
23518
23519         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
23520
23521         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
23522         to store modules loaded using AddModule.
23523
23524         * reflection.c (mono_image_fill_file_table): Generalize this so it works
23525         on Modules.
23526
23527         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
23528
23529         * reflection.c (mono_image_fill_export_table_from_module): New function to
23530         fill out the EXPORTEDTYPES table from a module.
23531
23532         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
23533         into a separate function. Also handle loaded non-dynamic modules.
23534
23535         * reflection.c (mono_image_basic_init): Fix memory allocation.
23536
23537         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23538
23539         * assembly.c (mono_assembly_load_references): Make this public.
23540
23541 2003-12-19  Martin Baulig  <martin@ximian.com>
23542
23543         * class.c (mono_class_initialize_generic): Made this static, take
23544         a `MonoGenericInst *' instead of a `MonoClass *'.
23545         (mono_class_from_generic): Call mono_class_initialize_generic()
23546         unless we're already initialized or being called from
23547         do_mono_metadata_parse_generic_inst().
23548
23549         * class.h (MonoGenericInst): Added `initialized' and
23550         `init_pending' flags.
23551
23552         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
23553         `mono_class_init (gklass)' or mono_class_initialize_generic()
23554         here; set `generic_inst->init_pending' while parsing the
23555         `type_argv'.
23556
23557 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
23558
23559         * locales.c: include string.h for memxxx prototypes
23560
23561 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
23562
23563         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
23564         constructor when accessing literal fields.
23565
23566 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
23567
23568         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23569
23570         * reflection.c (assembly_add_resource_manifest): New function to fill
23571         the MANIFESTRESOURCE table.
23572
23573         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
23574
23575         * reflection.h: Update to changes in class layout.
23576
23577         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
23578         Reenable call to mono_runtime_is_shutting_down ().
23579
23580         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
23581         determine if the runtime is shutting down.
23582
23583 2003-12-16  Jackson Harper <jackson@ximian.com>
23584
23585         * icall.c: comment out call to mono_runtime_is_shutting_down to
23586         fix build.
23587         
23588 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
23589
23590         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
23591         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
23592
23593 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
23594
23595         * reflection.c: move definition of swap_with_size
23596         to before its first call
23597
23598 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
23599
23600         * appdomain.c (mono_runtime_is_shutting_down): New public function.
23601
23602         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
23603         icall.
23604
23605         * object.c: Fix warnings.
23606
23607         * icall.c (ves_icall_Type_Get...): Only consider inherited static
23608         members if FlattenHierarchy is set.
23609
23610         * reflection.c (mono_image_add_decl_security): New function to emit
23611         declarative security.
23612
23613         * reflection.h reflection.c: Add support for declarative security.
23614
23615         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
23616         
23617 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
23618
23619         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
23620         
23621         * appdomain.c verify.c: Moved corlib version checking into its own
23622         function in appdomain.c since it needs to create vtables etc.
23623
23624 2003-12-13  Patrik Torstensson <p@rxc.se>
23625
23626         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
23627         instead of unwrapped server.
23628
23629 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
23630
23631         * verify.c (check_corlib): Fix field index.
23632
23633 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
23634
23635         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
23636         GetGacPath icall.
23637
23638 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
23639
23640         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
23641         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
23642         cope with sizeof(size_t) != sizeof(guint32).
23643
23644 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23645
23646         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
23647         in case of failure.
23648
23649 2003-12-10  Mark Crichton <crichton@gimp.org>
23650
23651         * icall.c: removed the GetNonZeroBytes.  We now handle this case
23652         in managed code.
23653
23654         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
23655
23656 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
23657
23658         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
23659         marked as deleted.
23660
23661 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
23662
23663         * verify.c (check_corlib): Handle the case when the version field is 
23664         initialized by a static constructor.
23665
23666 2003-12-08  Patrik Torstensson  <p@rxc.se>
23667
23668     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
23669
23670 2003-12-08  Martin Baulig  <martin@ximian.com>
23671
23672         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
23673         a MonoReflectionGenericParameter, also take the parameter index
23674         and name as arguments.
23675         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
23676         (ves_icall_MonoGenericParam_initialize): New interncall.
23677         (ves_icall_Type_make_byref_type): New interncall.
23678
23679         * reflection.h (MonoReflectionGenericParam): Derive from
23680         MonoReflectionType, not just from MonoObject.  Added `refobj' and
23681         `index' fields.
23682
23683         * reflection.c (mono_reflection_define_generic_parameter): Create
23684         and return a new MonoReflectionGenericParam; don't initialize the
23685         constraints here.
23686         (mono_reflection_initialize_generic_parameter): New public method;
23687         initializes the constraints and creates the `param->pklass'.
23688
23689 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
23690
23691         * reflection.h reflection.c: Use the new fields 'num_types', 
23692         'num_fields' and 'num_methods' to track the number of types etc.
23693
23694         * verify.c (check_corlib): Check corlib version number.
23695
23696 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
23697
23698         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
23699         function works on all methods.
23700
23701 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
23702
23703         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
23704         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
23705         the custom_type_info flag of the transparent proxy.
23706         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
23707         objects that supports IRemotingTypeInfo.
23708         * object.h: Added custom_type_info field in transparent proxy.
23709
23710 2003-12-06  Martin Baulig  <martin@ximian.com>
23711
23712         * class.c (mono_class_create_from_generic): Removed.
23713         (mono_class_from_generic): Check `ginst->klass' before doing
23714         anything else.  This is important to fully support "recursive"
23715         generic types.
23716
23717         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
23718         empty `generic_inst->klass' before doing anything else.
23719
23720 2003-12-06  Dick Porter  <dick@ximian.com>
23721
23722         * verify.c: 
23723         * object.h:
23724         * icall.c:
23725         * locales.c: Use C structs to access class fields.  Don't do a
23726         conversion between MonoString and UChar because both are
23727         platform-endian UTF-16.  Compare now takes startindex and count
23728         parameters.  Add a char overload for IndexOf.  Speed up the
23729         invariant string IndexOf.
23730
23731 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
23732
23733         * Makefile.am (monosn_LDADD): Fix parallel build.
23734
23735 2003-12-04  Martin Baulig  <martin@ximian.com>
23736
23737         * icall.c
23738         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
23739         (ves_icall_Type_make_array_type): New interncall.       
23740
23741 2003-12-04  Martin Baulig  <martin@ximian.com>
23742
23743         * locales.c: also change it in the !HAVE_ICU case.
23744
23745 2003-12-04  Dick Porter  <dick@ximian.com>
23746
23747         * icall.c:
23748         * locales.c: construct_compareinfo is now in CompareInfo, not
23749         CultureInfo.
23750
23751 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
23752
23753         * image.c (mono_image_load_file_for_image): Cache loaded images in the
23754         image->files array.
23755
23756         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
23757         table as well.
23758
23759         * assembly.c (mono_assembly_load_references): Only load references
23760         once.
23761
23762         * class.c (mono_class_from_name): Avoid linear search of the 
23763         EXPORTEDTYPE table.
23764
23765         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
23766
23767 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
23768
23769         * image.h (MonoImage): Add 'field_cache' field.
23770
23771         * loader.c (mono_field_from_token): Cache field lookups.
23772         
23773         * reflection.c (mono_module_get_object): Fix name property.
23774
23775         * icall.c (ves_icall_get_enum_info): Update after changes to 
23776         mono_metadata_get_constant_index ().
23777
23778         * icall.c: Get rid of get_type_info icall, use a separate icall for
23779         each type property to avoid needless memory allocations. Fixes #51514.
23780
23781         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
23782         to avoid needless binary searches.
23783
23784         * class.c (class_compute_field_layout): Move the initialization of
23785         field->def_value to mono_class_vtable ().
23786
23787         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
23788         non-corlib types.
23789
23790         * object.c (mono_object_allocate): Make it inline.
23791
23792         * object.c (mono_object_allocate_spec): Make it inline.
23793         
23794 2003-12-02  Dick Porter  <dick@ximian.com>
23795
23796         * locales.c (create_NumberFormat): NumberFormatInfo construction.
23797         Patch by Mohammad DAMT (mdamt@cdl2000.com).
23798
23799 2003-12-01  Dick Porter  <dick@ximian.com>
23800
23801         * threads.c: Fix signature and call in CreateMutex and
23802         CreateEvent.
23803
23804 2003-12-01  Dick Porter  <dick@ximian.com>
23805
23806         * icall.c: 
23807         * locales.c: Implement string compares and searching
23808
23809         * object.h: Add extra Thread field
23810
23811 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
23812
23813         * reflection.c (fixup_method): Add support for MonoCMethod.
23814
23815 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
23816
23817         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
23818
23819         * reflection.c (assembly_name_to_aname): Allow extra characters in
23820         assembly names. Fixes #51468.
23821
23822 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
23823
23824         * exception.c (mono_exception_from_name_domain): New helper function.
23825
23826         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
23827         exception object in the correct domain.
23828
23829         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
23830         formatting + make a copy a the input data.
23831
23832         * loader.c (mono_get_method_from_token): Methods which contain
23833         native code do not have entries in the ImplMap.
23834
23835         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
23836         Thanks to Gonzalo for spotting this.
23837         
23838         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
23839         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
23840
23841         * assembly.h (mono_assembly_load_from): Split the second part of 
23842         assembly loading into a new public function.
23843
23844         * exception.h (mono_get_exception_bad_image_format): New function.
23845
23846 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
23847
23848         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
23849         Enumerate all modules inside a dynamic assembly. Fixes #51293.
23850         
23851         * icall.c: Add new icall for creating dynamic methods.
23852
23853         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
23854
23855         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
23856
23857         * reflection.c (mono_reflection_create_dynamic_method): New icall to
23858         create a dynamic method.
23859
23860         * reflection.c (resolve_object): New helper function.
23861
23862         * reflection.c: Generalize ReflectionMethodBuilder and the functions
23863         which manipulate it so they can also work on dynamic methods.
23864
23865         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
23866         creating the MonoReflectionMethodAux structure if it is not needed.
23867         
23868         * reflection.h verify.c: Update after changes to object layout.
23869
23870         * reflection.c (method_builder_encode_signature): Fix compilation on
23871         gcc 2.95.x.
23872
23873 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
23874
23875         * appdomain.h: Added support for context static fields. Added static_data
23876           field to MonoAppContext and renamed thread_static_fields to a more
23877           generic special_static_fields in MonoAppDomain, since it can now contain
23878           context static fields.
23879         * domain.c: Updated hashtable name.
23880         * object.c: Replaced field_is_thread_static() for a more generic
23881           field_is_special_static() which also checks for context static attribute.
23882           In mono_class_vtable(), added support for static context fields.
23883         * threads.c: Changed methods that manage thread static fields to more
23884           generic methods so they can be reused both for thread and context static
23885           data.
23886         * threads.h: Declared some new methods.
23887
23888 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
23889
23890         * reflection.h: Update after changes to the managed types.
23891
23892         * reflection.c (encode_custom_modifiers): New helper function.
23893
23894         * reflection.c (method_encode_signature): Emit custom modifiers.
23895
23896         * reflection.c (field_encode_signature): Emit custom modifiers.
23897
23898 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
23899
23900         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
23901
23902         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
23903         implementation.
23904
23905         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
23906         icall.
23907
23908         * object.c (mono_field_get_value_object): New function.
23909
23910         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
23911         specific.
23912
23913 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
23914
23915         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
23916         return a preallocated out-of-memory exception instance.
23917
23918         * object.c (out_of_memory): Use the new function.
23919
23920         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
23921         flag is before the custom modifiers. Fixes #49802.
23922
23923 2003-11-16  Martin Baulig  <martin@ximian.com>
23924
23925         * class.c (mono_class_is_open_constructed_type): Implemented the
23926         MONO_TYPE_GENERICINST case.
23927
23928 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
23929
23930         * assembly.c (mono_assembly_fill_assembly_name): New function to
23931         fill out the MonoAssemblyName structure.
23932         (mono_assembly_open): Use the new function.
23933
23934         * icall.c (fill_reflection_assembly_name): New helper function.
23935
23936         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
23937         new function.
23938
23939         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
23940
23941 2003-11-15  Martin Baulig  <martin@ximian.com>
23942
23943         * class.c (mono_class_is_open_constructed_type): New public
23944         function; checks whether a type is an open constructed type,
23945         ie. whether it still contains type parameters.
23946         (mono_class_inflate_generic_type): If we're a type parameter and
23947         the inflated type is also a MONO_TYPE_(M)VAR, return the original
23948         type.
23949
23950         * class.h (MonoGenericInst): Added `guint32 is_open'.
23951
23952         * loader.c (method_from_methodspec): Check whether we're an open
23953         or closed constructed type and set `ginst->is_open'.
23954
23955         * reflection.c (mono_reflection_bind_generic_parameters): Check
23956         whether we're an open or closed constructed type and set
23957         `ginst->is_open'.
23958         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
23959         from open constructed types.
23960
23961 2003-11-15  Martin Baulig  <martin@ximian.com>
23962
23963         * reflection.c (mono_reflection_bind_generic_parameters): If we're
23964         a generic instance (instead of a generic type declaration) with
23965         unbound generic parameters, bind them to our actual types.
23966
23967 2003-11-14  Martin Baulig  <martin@ximian.com>
23968
23969         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
23970
23971         * reflection.c (mono_reflection_bind_generic_parameters): If we're
23972         an interface type, populate `res->interfaces' with instantiated
23973         versions of all the interfaces we inherit.
23974
23975 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
23976
23977         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
23978         when MONO_PATH is set but doesn't contain the install dir.
23979
23980 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23981
23982         * icall.c:
23983         (ves_icall_Type_GetInterfaces): don't return an interface twice when
23984         it's also implemented in base classes. Fixes bug #50927.
23985
23986 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
23987
23988         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
23989         if this method is called from a finalizer. Fixes #50913.
23990
23991 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
23992
23993         * threads.c: Implement VolatileRead/VolatileWrite
23994
23995         * icall.c: Add new icalls for VolatileRead/VolatileWrite
23996
23997 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
23998
23999         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
24000         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
24001         2.95.3.
24002
24003         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
24004         from Peter Ross (pro@missioncriticalit.com).
24005         
24006 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
24007
24008         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
24009
24010 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24011
24012         * assembly.c (mono_assembly_load_references): Disable check because it
24013         triggers on older corlibs which lots of people have.
24014
24015 2003-11-12  Jackson Harper  <jackson@ximian.com>
24016
24017         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
24018         load corlib.dll if mscorlib.dll is not found.
24019         * assembly.h: Remove corlib name define.
24020         * class.c:
24021         * domain.c:
24022         * image.c: Change corlib name to mscorlib.
24023         
24024 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24025
24026         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
24027
24028 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
24029
24030         * appdomain.h: Added loader_optimization here to sync with the C#
24031         code, and add disallow_binding_redirects field.
24032
24033 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
24034
24035         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
24036
24037         * reflection.c (mono_image_build_metadata): Fix crash on modules
24038         with no types.
24039
24040         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
24041
24042         * icall.c (ves_icall_get_method_info): Return callingConvention as
24043         well.
24044
24045         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
24046         namespaces from the EXPORTEDTYPE table as well.
24047
24048         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
24049         from all modules inside the assembly.
24050         
24051 2003-11-11  Martin Baulig  <martin@ximian.com>
24052
24053         * reflection.c (mono_reflection_bind_generic_parameters): Make
24054         this work for interfaces.
24055
24056 2003-11-11  Martin Baulig  <martin@ximian.com>
24057
24058         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
24059
24060 2003-11-11  Martin Baulig  <martin@ximian.com>
24061
24062         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
24063         "MonoInflatedMethod" and "MonoInflatedCtor".
24064
24065 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
24066
24067         * reflection.c (resolution_scope_from_image): Use the assembly table
24068         from the manifest module, since other modules don't have it.
24069
24070         * debug-helpers.c (mono_type_full_name): New helper function.
24071
24072         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
24073
24074         * image.c (mono_image_load_file_for_image): New public function which
24075         is a replacement for the load_file_for_image in class.c.
24076
24077         * assembly.c (mono_assembly_load_module): A wrapper for the function
24078         above which does assembly association and reference loading too.
24079
24080         * class.c (mono_class_from_name): Call mono_assembly_load_module.
24081
24082 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24083
24084         * appdomain.c: not all of the attributes for the full assembly name
24085         are required and the order doesn't matter. Fixes bug #50787.
24086
24087 2003-11-10  Dick Porter  <dick@ximian.com>
24088
24089         * locales.c: Use platform-endian UTF16
24090
24091 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
24092
24093         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
24094         
24095 2003-11-10  Martin Baulig  <martin@ximian.com>
24096
24097         * metadata.c
24098         (mono_metadata_load_generic_params): Make this actually work.
24099
24100         * reflection.c (mono_reflection_bind_generic_parameters): If our
24101         parent is a generic instance, pass all the `types' to it, no
24102         matter whether it has the same number of type parameters or not.
24103
24104 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
24105
24106         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
24107
24108         * assembly.c (mono_assembly_load_references): Move the image<->assembly
24109         assignment code to this function so it gets called recursively for all
24110         modules.
24111
24112         * image.c (load_modules): Remove the assembly assignment since it is
24113         now done by mono_assembly_load_references.
24114         
24115         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
24116         Add 'module' argument.
24117         (mono_module_get_types): New helper function.
24118         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
24119
24120 2003-11-08  Martin Baulig  <martin@ximian.com>
24121
24122         * class.c (mono_class_inflate_generic_method): Interface method
24123         don't have a header.
24124
24125         * reflection.c (mono_image_get_methodspec_token): Take an
24126         additional `MonoGenericInst *' argument instead of reading it from
24127         the header; this is necessary to support interfaces.
24128         (mono_image_create_token): Pass the `MonoGenericInst *' from the
24129         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
24130         (inflated_method_get_object): Take an additional `MonoGenericInst *'
24131         argument.
24132
24133         * reflection.h (MonoReflectionInflatedMethod): Added
24134         `MonoGenericInst *ginst'.
24135
24136 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
24137
24138         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
24139
24140 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
24141
24142         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
24143
24144 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
24145
24146         * reflection.c 
24147         (reflection_methodbuilder_from_method_builder):
24148         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
24149         initialize a ReflectionMethodBuilder structure.
24150         (mono_image_get_methodbuilder_token):
24151         (mono_image_get_ctorbuilder_token): New functions to emit memberref
24152         tokens which point to types in another module inside the same assembly.
24153
24154         * reflection.c: Use the new helper functions.
24155         
24156         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
24157
24158         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
24159         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
24160
24161         * reflection.c (resolution_scope_from_image): Emit a moduleref if
24162         neccesary.
24163
24164         * reflection.c (mono_image_build_metadata): Emit metadata only for the
24165         current module. Emit the manifest only for the main module.
24166
24167         * reflection.c (mono_image_create_token): Add assertion when a 
24168         memberref needs to be created.
24169
24170         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
24171
24172         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
24173         larger buffer for the custom attribute blob. Fixes #50637.
24174         
24175 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24176
24177         * threadpool.c: notify listener on async processing handles after
24178         invoking the async callback. Thanks to Zoltan.
24179
24180 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24181
24182         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
24183         avoid code duplication.
24184
24185         * reflection.h (MonoDynamicImage): New type which is currently unused,
24186         but will be used through the ref.emit code in place of 
24187         MonoDynamicAssembly.
24188
24189         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
24190         object layout.
24191
24192         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
24193         a MonoDynamicImage instead of just a MonoImage.
24194         
24195         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
24196         icalls to ModuleBuilder but keep their semantics, so they will work
24197         with moduleb->assemblyb. This will change later.
24198         
24199 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24200
24201         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
24202         object layout.
24203
24204         * reflection.c (mono_image_build_metadata): Avoid creation of a default
24205         main module, since it is now done by the managed code.
24206
24207 2003-11-03  Martin Baulig  <martin@ximian.com>
24208
24209         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
24210         `ginst->klass' here.
24211         (method_encode_methodspec): Don't use the `ginst->generic_method's
24212         klass if it's a generic instance, use `ginst->klass' in this case.
24213
24214 2003-11-03  Martin Baulig  <martin@ximian.com>
24215
24216         * reflection.c (mono_image_get_generic_method_param_info):
24217         Removed, use mono_image_get_generic_param_info() instead.
24218         (mono_image_get_type_info): Write the GenericParam table before
24219         the Method table.  This is neccessary because in the GenericParam
24220         table, type parameters of the class (ie. '!0' etc.) must come
24221         before the ones from its generic methods (ie. '!!0' etc).
24222
24223 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24224
24225         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
24226
24227 2003-11-02  Martin Baulig  <martin@ximian.com>
24228
24229         * reflection.c (create_generic_typespec): Take a
24230         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
24231         the generic parameters from it.
24232
24233 2003-11-02  Martin Baulig  <martin@ximian.com>
24234
24235         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
24236         instead of a `MonoClassField *' since we just need the type.
24237         (create_generic_typespec): New static function.  Creates a
24238         TypeSpec token for a generic type declaration.
24239         (mono_image_get_generic_field_token): New static function.
24240         (mono_image_create_token): If we're a FieldBuilder in a generic
24241         type declaration, call mono_image_get_generic_field_token() to get
24242         the token.
24243
24244 2003-11-02  Martin Baulig  <martin@ximian.com>
24245
24246         * reflection.h
24247         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
24248         `MonoReflectionGenericInst *declaring_type' and
24249         `MonoReflectionGenericInst *reflected_type' fields.
24250
24251         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
24252         `MonoReflectionGenericInst *declaring_type' and a
24253         `MonoReflectionGenericInst *reflected_type' argument instead of a
24254         single `MonoReflectionGenericInst *type' one.  Set
24255         `res->declaring_type' and `res->reflected_type' from them.
24256         (mono_reflection_inflate_field): Likewise.      
24257
24258 2003-11-02  Martin Baulig  <martin@ximian.com>
24259
24260         * class.c (mono_class_setup_vtable): Don't store generic methods
24261         in the vtable.  
24262
24263 2003-11-02  Martin Baulig  <martin@ximian.com>
24264
24265         * reflection.h (MonoReflectionGenericInst): Added
24266         `MonoReflectionType *declaring_type'.
24267
24268         * reflection.c (mono_reflection_bind_generic_parameters): Use
24269         `if (tb->parent)' instead of `klass->parent'.
24270
24271 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
24272
24273         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
24274         with an empty ASSEMBLY table.
24275
24276         * reflection.c (mono_image_build_metadata): Avoid using the same loop
24277         variable in the inner and outer loops.
24278
24279 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
24280
24281         * metadata.h (mono_metadata_make_token): Put parentheses around macro
24282         argument.
24283
24284         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
24285         
24286         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
24287         icalls. Instead, do everything in managed code. This is needed since
24288         it is hard to restore the original domain etc. in unmanaged code in the
24289         presence of undeniable exceptions.
24290
24291         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
24292         New icalls to push and pop appdomain refs.
24293
24294 2003-10-31  Martin Baulig  <martin@ximian.com>
24295
24296         * class.c (inflate_generic_type): Renamed to
24297         mono_class_inflate_generic_type() and made it public.
24298
24299         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
24300         New interncall.
24301
24302         * loader.c (mono_field_from_memberref): Also set the retklass for
24303         typespecs.
24304
24305         * fielder.c (mono_image_get_inflated_field_token): New static
24306         method; creates a metadata token for an inflated field.
24307         (mono_image_create_token, fixup_method): Added support for
24308         "MonoInflatedField".
24309         (fieldbuilder_to_mono_class_field): New static function.
24310         (mono_reflection_inflate_field): New public function.
24311
24312         * reflection.h
24313         (MonoReflectionGenericInst): Added `MonoArray *fields'.
24314         (MonoReflectionInflatedField): New typedef.     
24315
24316 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
24317
24318         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
24319         for Solaris and other platforms without s6_addr16
24320
24321 2003-10-30  Martin Baulig  <martin@ximian.com>
24322
24323         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
24324         argument instead of two.
24325         (mono_class_inflate_generic_signature): Likewise.
24326         (inflate_generic_header): Likewise.
24327         (mono_class_inflate_generic_method): Likewise.  In addition, if
24328         `ginst->klass' is set, it becomes the new `method->klass'.
24329
24330         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
24331         field.
24332
24333         * reflection.c (encode_generic_method_sig): Write a 0xa as the
24334         first byte. [FIXME]
24335         (method_encode_methodspec): If we have generic parameters, create
24336         a MethodSpec instead of a MethodRef.
24337         (fixup_method): Added support for "MonoInflatedMethod" and
24338         "MonoInflatedCtor".
24339         (mono_image_create_token): Added support for "MonoInflatedMethod"
24340         and "MonoInflatedCtor".
24341         (inflated_method_get_object): New static function; returns a
24342         managed "System.Reflection.MonoInflatedMethod" object.
24343         (mono_reflection_bind_generic_method_parameters): Return a
24344         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
24345         (mono_reflection_inflate_method_or_ctor): Likewise.
24346         (mono_image_get_generic_method_param_info): Initialize unused
24347         fields to zero.
24348         (mono_image_get_generic_param_info): Likewise.
24349
24350         * reflection.h (MonoReflectionInflatedMethod): New public
24351         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
24352         "S.R.MonoInflatedCtor" classes.
24353
24354         * loader.c (method_from_memberref): If we're a TypeSpec and it
24355         resolves to a generic instance, inflate the method.
24356
24357 2003-10-28  Dick Porter  <dick@ximian.com>
24358
24359         * object.c (mono_runtime_run_main): Convert command-line arguments
24360         into utf8, falling back to the user's locale encoding to do so.
24361
24362 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
24363
24364         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
24365         at this time.
24366
24367         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
24368
24369         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
24370         up icalls at method definition time. Partially fixes #33569.
24371
24372 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
24373
24374         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
24375         marshalling of arrays. Fixes #50116.
24376
24377         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
24378
24379         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
24380         points to a vtable in the dying appdomain.
24381
24382         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
24383         listeners into unmanaged code inside the lock.
24384
24385         * object.c (mono_class_vtable): Turn off typed allocation in non-root
24386         domains and add some comments.
24387
24388 2003-10-25  Martin Baulig  <martin@ximian.com>
24389
24390         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
24391
24392         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
24393
24394         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
24395         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
24396         currently parsing.  Create the generic class and store it in
24397         `generic_inst->klass' before parsing the type arguments.  This is
24398         required to support "recursive" definitions; see mcs/tests/gen-23.cs
24399         for an example.
24400         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
24401         to support recursive typespec entries.
24402
24403         * class.c (mono_class_setup_parent): If our parent is a generic
24404         instance, we may get called before it has its name set.
24405         (mono_class_from_generic): Splitted into
24406         mono_class_create_from_generic() and mono_class_initialize_generic().
24407
24408 2003-10-25  Martin Baulig  <martin@ximian.com>
24409
24410         * icall.c (ves_icall_Type_BindGenericParameters): Return a
24411         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
24412         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
24413         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
24414
24415         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
24416         (create_typespec): Likewise.
24417         (mono_reflection_bind_generic_parameters): Return a
24418         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
24419         (mono_reflection_inflate_method_or_ctor): New public function.
24420
24421         * reflection.h (MonoReflectionGenericInst): New typedef.        
24422
24423 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
24424
24425         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
24426         inside the domain lock. Fixes #49993.
24427         
24428         * object.c (mono_class_vtable): When typed allocation is used, 
24429         allocate vtables in the GC heap instead of in the mempool, since the
24430         vtables contain GC descriptors which are used by the collector even
24431         after the domain owning the mempool is unloaded.
24432
24433         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
24434
24435         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
24436         reflect what it does. Also invalidate mempools instead of freeing
24437         them if a define is set.
24438
24439         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
24440         of the appdomain.
24441         
24442         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
24443         hold the finalizable objects in this domain.
24444
24445         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
24446         appdomain.
24447
24448         * appdomain.c (mono_domain_set): New function to set the current
24449         appdomain, but only if it is not being unloaded.
24450
24451         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
24452         appdomain which is being unloaded.
24453         
24454         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
24455         unloading of the root appdomain.
24456
24457         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
24458         icall to execute a method in another appdomain. Intended as a 
24459         replacement for InternalSetDomain, which can confuse the code 
24460         generation in the JIT.
24461
24462         * appdomain.c (mono_domain_is_unloading): New function to determine
24463         whenever an appdomain is unloading.
24464
24465         * appdomain.c (mono_domain_unload): New function to correctly unload
24466         an appdomain.
24467
24468         * assembly.c (mono_assembly_load_references): Check that an assembly
24469         does not references itself.
24470
24471         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
24472         domain manually, it asks the finalizer thread to do it, then waits for
24473         the result. Also added a timeout.
24474
24475         * icall.c: Register the new icalls.
24476
24477         * threads.h threads.c: Export the mono_gc_stop_world and 
24478         mono_gc_start_world functions.
24479         
24480         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
24481         function to fill out the mempool with 0x2a.
24482
24483 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
24484
24485         * reflection.h (MonoReflectionMethodAux): New structure to store
24486         information which is rarely used, thus is not in the MonoMethod
24487         structure.
24488
24489         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
24490         store the aux info.
24491
24492         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
24493         and marshalling info into the aux structure.
24494
24495         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
24496         from the aux structure.
24497
24498         * loader.c (mono_method_get_param_names): Retrieve the param names from
24499         the aux structure.
24500         
24501 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
24502
24503         * exception.h exception.c: Add AppDomainUnloadedException && fix 
24504         warning.
24505
24506 2003-10-21  Dick Porter  <dick@ximian.com>
24507
24508         * socket-io.c
24509         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
24510         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
24511
24512 2003-10-21  Martin Baulig  <martin@ximian.com>
24513
24514         * reflection.c (mono_reflection_bind_generic_parameters):
24515         `klass->parent' is NULL for interfaces.
24516
24517 2003-10-21  Martin Baulig  <martin@ximian.com>
24518
24519         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
24520
24521 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
24522
24523         * exception.c (mono_exception_from_name_msg): New helper function for
24524         creating exceptions and initializing their message field.
24525
24526         * exception.c: Simplify functions using the new helper.
24527
24528         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
24529         New function.
24530
24531         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
24532         mono_raise_exception, since otherwise gcc doesn't generate the function
24533         epilog for raise_exception, confusing the stack unwinding in the JIT.
24534         Fixes #45043.
24535
24536         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
24537         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
24538         Fixes #49499.
24539
24540 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24541
24542         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
24543         utf8.
24544
24545 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
24546
24547         * icall.c: Removed GetUninitializedObject method because
24548           AllocateUninitializedClassInstance does the same.
24549
24550 2003-10-18  Martin Baulig  <martin@ximian.com>
24551
24552         * class.c (inflate_generic_signature): Renamed to
24553         mono_class_inflate_generic_signature() and made it public.
24554         (my_mono_class_from_generic_parameter): New static function; if we
24555         don't already have the generic parameter's MonoClass, create a
24556         very simple one which is just used internally in the runtime and
24557         not passed back to managed code.
24558
24559         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
24560
24561         * metadata.h (MonoMethodSignature): Moved the
24562         `MonoGenericParam *gen_params' to the MonoMethodHeader.
24563         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
24564
24565         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
24566         ves_icall_MonoMethod_GetGenericArguments(); this is now an
24567         interncall on the MonoMethod class, not on MethodInfo.
24568         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
24569         calling mono_reflection_bind_generic_method_parameters() directly.
24570
24571         * loader.c (mono_method_get_signature): If this is a MethodSpec;
24572         return the already computed `method->signature'.
24573         (method_from_methodspec): New static function to load a method
24574         from a MethodSpec entry.
24575         (mono_get_method_from_token): Call the new method_from_methodspec()
24576         for MethodSpec tokens.  
24577         (mono_get_method_from_token): If we're a generic method, load the
24578         type parameters.
24579
24580         * reflection.c (mono_image_get_memberref_token): Allow
24581         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
24582         table.
24583         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
24584         (mono_image_create_token): First check whether it's a generic
24585         method (so we'd need to create a MethodSpec), then do the other
24586         two alternatives.
24587         (mono_reflection_bind_generic_method_parameters): Return a
24588         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
24589         called directly from the interncall.
24590
24591 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
24592
24593         * reflection.c (load_public_key): Move loading of the public key
24594         into managed code.
24595
24596         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
24597
24598         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
24599         fields.
24600
24601         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
24602         culture, hash_alg and public_key. Fixes #49555.
24603
24604 2003-10-17  Martin Baulig  <martin@ximian.com>
24605
24606         * class.h (MonoGenericInst): Moved this declaration here and added
24607         `MonoMethod *generic_method'.
24608
24609         * icall.c
24610         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
24611         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
24612
24613         * metadata.c (mono_metadata_type_equal): Two types of
24614         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
24615         index; ie. don't compare the address of the `MonoGenericParam'
24616         structure.
24617         (mono_metadata_load_generic_params): Removed the `MonoMethod
24618         *method' argument.
24619
24620         * metadata.h (MonoGenericInst): Moved declaration to class.h.
24621         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
24622
24623         * reflection.c (method_encode_signature): Encode the number of
24624         generic parameters.
24625         (encode_generic_method_sig): New static function.
24626         (method_encode_methodspec): New static function; creates an entry
24627         in the MethodSpec table for a generic method.
24628         (mono_image_get_methodspec_token): New static function.
24629         (mono_image_create_token): Call mono_image_get_methodspec_token()
24630         for generic methods.
24631         (mono_reflection_bind_generic_method_parameters): New public
24632         function.  Instantiates a generic method.
24633
24634 2003-10-16  Martin Baulig  <martin@ximian.com>
24635
24636         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
24637         *gen_params' here from MonoMethodHeader.
24638
24639         * metadata.c (mono_metadata_parse_method_signature): If we have
24640         generic parameters, initialize `method->gen_params' and then set
24641         the correct `type->data.generic_param' in all the parameters.
24642
24643 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
24644
24645         * threads.c (mono_threads_get_default_stacksize): New function to 
24646         return the default stacksize.
24647
24648         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
24649         termination of the finalizer thread, since the previous method had
24650         race conditions. Fixes #49628.
24651
24652         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
24653         as for the other managed threads.
24654
24655 2003-10-16  Martin Baulig  <martin@ximian.com>
24656
24657         * class.c (inflate_generic_signature): Copy `generic_param_count'
24658         and `gen_params'.
24659
24660         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
24661         New interncall.
24662
24663         * metadata.c (mono_metadata_parse_method_signature): Actually set
24664         the `method->generic_param_count' here.
24665         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
24666
24667 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
24668
24669         * object.h: Add a new field to TypedRef to simplify the implementation
24670         of the REFANY opcodes in the JIT.
24671
24672         * icall.c: Make use of the new field.
24673
24674         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
24675         dynamically.
24676
24677 2003-10-15  Martin Baulig  <martin@ximian.com>
24678
24679         * class.c (mono_class_from_gen_param): Renamed to
24680         mono_class_from_generic_parameter() and moved most of the
24681         functionality from mono_reflection_define_generic_parameter()
24682         here; ie. we create a "real" class here.
24683         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
24684         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
24685         previously been called.
24686
24687         * class.h (MonoGenericParam): Moved the declaration of this struct
24688         here from metadata.h and added `MonoMethod *method'.
24689
24690         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
24691         interncall.
24692
24693         * loader.c (mono_get_method_from_token): If we have any generic
24694         parameters, call mono_metadata_load_generic_params() to read them
24695         from the MONO_TABLE_GENERICPAR.
24696
24697         * metadata.c (mono_metadata_load_generic_params): Added
24698         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
24699
24700         * metadata.h (MonoMethodSignature): Replaced
24701         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
24702         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
24703
24704         * reflection.c (mono_reflection_define_generic_parameter): Moved
24705         most of the functionality into the new
24706         mono_class_from_generic_parameter(); set the `method' field if
24707         we're a method parameter.       
24708
24709 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
24710
24711         * marshal.c (emit_struct_conv): if native size is 0
24712         emit no code.
24713
24714 2003-10-14  Martin Baulig  <martin@ximian.com>
24715
24716         * icall.c: The generics API has changed in the spec since it was
24717         added to System.Type; these modifications make it match the spec
24718         again.
24719         (ves_icall_Type_GetGenericParameters): Renamed to
24720         `ves_icall_Type_GetGenericArguments'.
24721         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
24722         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
24723         `ves_icall_MonoType_get_HasGenericArguments'.
24724         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
24725         `ves_icall_MonoType_get_IsGenericParameter'.
24726         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
24727         this is no interncall anymore.
24728         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
24729         `ves_icall_TypeBuilder_get_IsGenericParameter'.
24730
24731 2003-10-14  Martin Baulig  <martin@ximian.com>
24732
24733         * reflection.c (mono_reflection_bind_generic_parameters): Also
24734         inflate generic methods if we're reading the class from IL.
24735
24736 2003-10-13  Martin Baulig  <martin@ximian.com>
24737
24738         * reflection.c (mono_reflection_define_generic_parameter): This
24739         method isn't called directly from the icall anymore; take a
24740         `MonoReflectionAssemblyBuilder *' so we can use this for type and
24741         method generic parameters.
24742         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
24743         (method_builder_encode_signature): Encode generic parameters.
24744         (mono_image_get_method_info): Write generic params to the
24745         MONO_TABLE_GENERICPARAM table.
24746
24747         * reflection.h (MonoReflectionMethodBuilder): Added
24748         `MonoArray *generic_params'.
24749
24750         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
24751
24752         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
24753         wrapper for mono_reflection_define_generic_parameter().
24754         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
24755
24756 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
24757
24758         * marshal.h: Add missing function to fix build.
24759
24760         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
24761         the SetLastError pinvoke attribute.
24762
24763         * marshal.c (mono_marshal_set_last_error): New helper function called
24764         by the generated code.
24765         
24766         * marshal.c (mono_mb_emit_branch): New helper function.
24767
24768         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
24769
24770         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
24771         classes as parameters and return values of delegates. Fixes #29256. 
24772
24773 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
24774
24775         * locales.c: use gint32 in non HAVE_ICU case
24776
24777 2003-10-11  Martin Baulig  <martin@ximian.com>
24778
24779         * mono-debug.c (mono_debug_add_method): Added a workaround for
24780         bug #48591.
24781
24782 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
24783
24784         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
24785         delegates passed to native code must use the STDCALL calling 
24786         convention. Fixes #35987.
24787
24788 2003-10-10  Martin Baulig  <martin@ximian.com>
24789
24790         * class.c (inflate_generic_type): If we're inflating for a generic
24791         type instance (and not for a generic method), return
24792         MONO_TYPE_MVAR unchanged.
24793
24794 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24795
24796         * string-icalls.c: Join ignores null strings in the source array.
24797         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
24798         * threads.c: GetAvailableTheads is slightly more accurate.
24799
24800 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
24801
24802         * threads.h threads.c : add mono_threads_set_default_stacksize
24803         and pass default to CreateThread calls.
24804
24805 2003-10-09  Dick Porter  <dick@ximian.com>
24806
24807         * icall.c:
24808         * locales.h:
24809         * locales.c: Internal calls for constructing CultureInfo and
24810         related objects from libicu (if its available.)
24811
24812 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
24813
24814         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
24815
24816 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24817
24818         * threadpool.c: added an argument to async_invoke_thread that is the
24819         item to process, pass the MonoAsyncResult to the thread start function
24820         when creating a new thread. This way we don't need to acquire any lock
24821         when we're creating a new thread. Readded a semaphore for faster
24822         response times (instead of that Sleep i added).
24823
24824 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
24825
24826         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
24827         get daylight change dates better on Windows, fix handling
24828         of platforms without tm_gmtoff.
24829
24830 2003-10-06  Martin Baulig  <martin@ximian.com>
24831
24832         * class.c (inflate_generic_method): Renamed to
24833         mono_class_inflate_generic_method() and made public.
24834         (mono_class_init): Don't inflate the generic methods here.
24835         (mono_class_from_generic): Added `gboolean inflate_methods'
24836         argument.  Inflate the methods here.
24837
24838         * loader.c (mono_method_get_param_names): Ignore instances of
24839         generic types for the moment.
24840
24841         * reflection.c (fixup_method): Added support for inflated methods.
24842         (mono_image_create_token): Use mono_image_get_methodref_token()
24843         for inflated methods.
24844         (mono_custom_attrs_from_param): Ignore instances of generic types
24845         for the moment.
24846         (mono_reflection_bind_generic_parameters): New public function.
24847         Moved all the functionality from
24848         ves_icall_Type_BindGenericParameters() here and added support for
24849         dynamic types.
24850         (mono_reflection_define_generic_parameter): Initialize
24851         `klass->methods' here.
24852
24853         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
24854         functionality into mono_reflection_define_generic_parameter().
24855         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
24856         TypeBuilder, return that TypeBuilder.
24857
24858 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24859
24860         * appdomain.c: removed mono_delegate_semaphore.
24861
24862         * threadpool.c:
24863         (mono_thread_pool_add): moved hash table creation inside and the thread 
24864         creation outside of the critical region.
24865         (mono_thread_pool_finish): removed obsolete code.
24866         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
24867         continue or exit the thread depending on the queue.
24868
24869 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
24870
24871         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
24872         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
24873         handle more bool marshalling options
24874
24875 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
24876
24877         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
24878         arrays of structs. Also add a more descriptive error message when
24879         a structure member is marshalled as LPArray.
24880
24881 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
24882
24883         * marshal.c (mono_marshal_get_native_wrapper): Add support for
24884         marshalling arrays of complex types. Fixes #29098. Also remove an
24885         usused and incomplete function.
24886
24887 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
24888
24889         * gc.c: report heap_size - free_bytes as total memory allocated
24890         (bug#49362).
24891
24892 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
24893
24894         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
24895         fix timezone handling problems on Windows.
24896         
24897         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
24898         asserts when the year is outside the range handled by ms the functions.
24899
24900         * class.c (setup_interface_offsets): If the class is an interface,
24901         fill out its interface_offsets slot.
24902
24903 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24904
24905         * threadpool.c: mark threadpool threads as background.
24906
24907 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
24908
24909         * decimal.c - define DECINLINE to nothing if not using GCC
24910
24911 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
24912
24913         * assembly.c: More refcount fixes.
24914
24915 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24916
24917         * string-icalls.c: if we're not trimming, return the same string.
24918         When not splitting, don't create a new string.
24919
24920 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24921
24922         * image.c:
24923         (mono_image_open): increment the ref_count inside the critical section.
24924
24925 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
24926
24927         * image.c (mono_image_open): Fix reference counting bug.
24928
24929 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
24930
24931         * marshal.c (mono_marshal_type_size) struct alignment changed for 
24932         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
24933         64bits. Avoid leak in mono_marshal_get_native_wrapper when
24934         mono_lookup_pinvoke_call throws.        
24935
24936 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
24937
24938         * reflection.c (mono_reflection_parse_type): Fix #49114.
24939
24940         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
24941         temporary workaround for cygwin header problem.
24942
24943         * object.c (mono_object_isinst): Synchronize this with the code
24944         generated by the JIT for casts.
24945
24946 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
24947
24948         * reflection.c (encode_type): Fix #38332.
24949
24950 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
24951
24952         * marshal.c (mono_marshal_method_from_wrapper): New function to return
24953         the original method from the wrapper method.
24954
24955 2003-09-25  Martin Baulig  <martin@ximian.com>
24956
24957         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
24958         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
24959         (ves_icall_Type_get_IsGenericInstance): New interncall.
24960
24961 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
24962
24963         * object.c: fix cast warning in big endian code.
24964
24965 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
24966
24967         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
24968         
24969 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24970
24971         * assembly.c: don't call check_env from mono_assembly_load. It's
24972         already done once in mono_assemblies_init and may cause headaches when
24973         multiple threads are loading assemblies.
24974
24975 2003-09-19  Martin Baulig  <martin@ximian.com>
24976
24977         * reflection.c (mono_reflection_define_generic_parameter): Don't
24978         allocate `klass->methods', set `klass->flags' to
24979         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
24980
24981 2003-09-18  Martin Baulig  <martin@ximian.com>
24982
24983         * class.c (mono_class_init): Don't create `class->methods' if it's
24984         already initialized.
24985
24986         * metadata.c (mono_metadata_load_generic_params): Make this
24987         actually work.
24988
24989         * reflection.c (mono_reflection_define_generic_parameter): Set
24990         parent class and interfaces from the constraints.
24991
24992         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
24993         to keep this struct in sync with the declaration in TypeBuilder.cs.
24994
24995 2003-09-17  Martin Baulig  <martin@ximian.com>
24996
24997         * metadata.h (MonoType): Replaced the data's `int type_param'
24998         field with `MonoGenericParam *generic_param'.
24999         (MonoGenericParam): Added `MonoClass *klass'.
25000
25001         * class.c (mono_class_from_gen_param): Removed the
25002         `MonoImage *image' and `int type_num' arguments.
25003
25004         * metadata.c (mono_metadata_parse_generic_param): New static
25005         method; creates a MonoGenericParam which just contains the index.
25006         (do_mono_metadata_parse_type): Call
25007         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
25008         MONO_TYPE_MVAR.
25009
25010         * reflection.c (mono_image_typedef_or_ref): Generic type
25011         parameters may be in the same assembly, but never use a typedef
25012         for them.
25013         (mono_reflection_define_generic_parameter): We're now creating a
25014         "real" class for the type parameter; it's now safe to call
25015         mono_class_from_mono_type() on the class'es type, it'll do the
25016         right thing.
25017
25018 2003-09-16  Martin Baulig  <martin@ximian.com>
25019
25020         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
25021         `symfile->range_entry_size' and `symfile->class_entry_size' here;
25022         the `symfile' data structure must be fully initialized before it
25023         gets added to the table.
25024
25025 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
25026
25027         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
25028
25029         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
25030         class init trampolines.
25031
25032 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
25033
25034         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
25035         to the built-in profiler to turn off time and allocation profiling
25036         respectively.
25037
25038 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
25039
25040         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
25041         g_direct_equal.
25042
25043         * debug-helpers.c (mono_method_full_name): Print the wrapper type
25044         in human readable form.
25045
25046 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
25047
25048         * reflection.c icall.c: Fixed warnings.
25049
25050         * image.c (load_class_names): Use a temporary hash table to hold the
25051         namespaces in order to avoid doing many string comparisons.
25052
25053         * image.h: Fix typo.
25054
25055         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
25056         Pass NULL instead of g_direct_equal to the GHashTable constructor 
25057         since the NULL case is short-circuited inside g_hash_table_lookup, 
25058         leading to better performance.  
25059
25060         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
25061         obtain the first custom attribute for a given index. Depends on the
25062         CustomAttribute table being sorted by the parent field.
25063
25064         * reflection.c (mono_custom_attrs_from_index): Use the new function 
25065         for better performance.
25066
25067 2003-09-07  Martin Baulig  <martin@ximian.com>
25068
25069         * class.c (mono_class_init): If we're a generic instance, inflate
25070         all our methods instead of loading them from the image.
25071         (mono_class_from_generic): Set `class->methods = gklass->methods'.
25072
25073 2003-09-07  Martin Baulig  <martin@ximian.com>
25074
25075         * mono-debug-debugger.c: Added support for constructors.
25076
25077 2003-09-06  Martin Baulig  <martin@ximian.com>
25078
25079         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
25080         New interncall.
25081
25082         * reflection.c (mono_reflection_setup_generic_class): Call
25083         ensure_runtime_vtable() to create the vtable.
25084
25085 2003-09-05  Martin Baulig  <martin@ximian.com>
25086
25087         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
25088         MONO_TYPE_MVAR.
25089
25090 2003-09-04  Martin Baulig  <martin@ximian.com>
25091
25092         * reflection.c (mono_reflection_define_generic_parameter): Generic
25093         parameters start with zero.
25094
25095 2003-09-04  Martin Baulig  <martin@ximian.com>
25096
25097         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
25098
25099         * reflection.h (MonoReflectionGenericParam): New typedef.
25100         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
25101         the generic parameters from the managed TypeBuilder.
25102
25103         * reflection.c (mono_reflection_define_generic_parameter): New function.
25104         (mono_reflection_create_runtime_class): Encode generic parameters.
25105         (mono_reflection_setup_generic_class): New function; this is
25106         called after adding adding all generic params to the TypeBuilder.
25107         (encode_type): Added MONO_TYPE_VAR.
25108
25109 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
25110
25111         * class.h class.c (mono_class_needs_cctor_run): Moved this method
25112         here from the JIT.
25113
25114         * assembly.h assembly.c: Moved the AOT loading code into an assembly
25115         load hook.
25116
25117 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
25118
25119         * reflection.h reflection.c class.h class.c: Delete duplicate 
25120         definition of mono_type_get_name () from reflection.c and export the
25121         one in class.c.
25122
25123         * class.c: Class loading fixes from Bernie Solomon 
25124         (bernard@ugsolutions.com).
25125
25126         * reflection.c: Endianness fixes from Bernie Solomon 
25127         (bernard@ugsolutions.com).
25128         
25129 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
25130
25131         * assembly.h assembly.c: Define a file format version for AOT
25132         libraries.
25133         
25134         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
25135
25136         * appdomain.h (MonoJitInfo): New field to determine whenever the
25137         code is domain neutral.
25138         
25139 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
25140
25141         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
25142
25143 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
25144
25145         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
25146         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
25147         Avoid caching the result since strings must be domain specific. Fixes
25148         #48050.
25149
25150 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
25151
25152         * marshal.c (mono_marshal_init): Make this callable multiple times
25153         since it is hard to find a correct place to call it.
25154
25155         * object.c (mono_runtime_class_init): Execute static constructors in
25156         the correct appdomain.
25157
25158         * image.c (build_guid_table): Handle the case when multiple images have
25159         the same GUID.
25160
25161 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25162
25163         * icall.c: added a couple of icalls for System.Web.
25164
25165 2003-08-28  Martin Baulig  <martin@ximian.com>
25166
25167         * icall.c (ves_icall_Type_BindGenericParameters): Use
25168         `klass->generic_inst' instead of `&klass->byval_arg' in the
25169         mono_type_get_object() call.  The returned type must be
25170         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
25171
25172 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
25173
25174         * NOTES: New file.
25175
25176         * object.c (mono_class_proxy_vtable): Make it thread safe.
25177
25178         * pedump.c: Fix warning.
25179
25180         * object.c appdomain.h: Get rid of metadata_section. 
25181         It is no longer needed and it was causing deadlocks with domain->lock.
25182
25183         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
25184
25185 2003-08-26  Martin Baulig  <martin@ximian.com>
25186
25187         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
25188
25189 2003-08-26  Martin Baulig  <martin@ximian.com>
25190
25191         * pedump.c (main): Call mono_metadata_init(),
25192         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
25193         and mono_loader_init().
25194
25195 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
25196
25197         * loader.h: Add missing include to fix build.
25198
25199         * image.h: mono_image_load_references is no more.
25200
25201         * assembly.c: Reworked assembly loading to make it really thread safe.
25202         After these changes, the assembly returned by mono_assembly_open is
25203         fully initialized, i.e. all its references assemblies are loaded.
25204
25205         * assembly.c (mono_image_load_references): Renamed to 
25206         mono_assembly_load_references, and made private, since clients no
25207         longer need to call it.
25208
25209         * class.c: Removed calls to mono_assembly_load_references, since it was
25210         a source of deadlocks.
25211
25212         * loader.h loader.c class.h class.c: Protect data structures using a 
25213         new lock, the loader lock.
25214
25215         * class.c (mono_class_setup_vtable): Create temporary hash tables and
25216         GPtrArrays only when needed.
25217
25218         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
25219         into empty structures by mcs. Fixes pinvoke7.cs.
25220         
25221         * domain.c (mono_init): Call a new initialization function.
25222
25223         * appdomain.c (mono_runtime_init): Call the new initializer function
25224         of the marshal module.
25225
25226         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
25227         inserted into empty structures by mcs. Fixes pinvoke7.cs.
25228
25229         * marshal.h marshal.c: Added locks around the wrapper caches to make
25230         this module thread safe.
25231
25232         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
25233         this argument. Fixes pinvoke1.exe.
25234
25235 2003-08-25  Lluis Sanchez <lluis@ximian.com>
25236
25237         * object.h: Added call_type field to MonoMethodMessage and the corresponding
25238         enumeration of values. Removed fields to store remote call output values in
25239         MonoAsyncResult. Not needed any more.
25240         * object.c: Initialize call_type and async_result fields in mono_message_init.
25241         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
25242         dispatching the message.
25243         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
25244         async call to finish. To do it use a message with EndInvoke call type.
25245
25246 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
25247
25248         * loader.h loader.c (mono_method_hash_marhal_info): New function which
25249         determines whenever a method has marshalling info.
25250
25251 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25252
25253         * assembly.c: fix the build on windows.
25254
25255 2003-08-22 Lluis Sanchez <lluis@ximian.com>
25256
25257         * object.cs: Fixed bug #47785.
25258
25259 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
25260
25261         * string-icalls.c (StringReplace): If their are no occurances of
25262         the old string found return a reference to the supplied
25263         string. This saves some memory and matches MS behavoir.
25264         
25265 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25266
25267         * socket-io.c: fixed compilation for systems that define AF_INET6
25268         and don't define SOL_IP/SOL_IPV6.
25269
25270 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
25271
25272         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
25273         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
25274
25275         * rawbuffer.c rawbuffer.h: Make this module thread safe.
25276
25277         * domain.c: Make this module thread safe.
25278
25279         * domain.c (mono_init): Call new initialization function.
25280
25281         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
25282         reference types too. Fixes #38812.
25283
25284         * image.c (mono_image_init): Fixed warnings.
25285
25286         * class.c (mono_class_from_typeref): Handle assembly load failure
25287         correctly.
25288
25289         * appdomain.c (add_assemblies_to_domain): Handle the case when
25290         the references of an assembly are not yet loaded.
25291
25292         * metadata.c image.c assembly.c: Moved initialization of global
25293         variables to a separate function called at startup since lazy 
25294         initialization of these variables is not thread safe.
25295         
25296         * image.c assembly.c: Made this module thread safe by adding locks in 
25297         the appropriate places.
25298
25299         * domain.c (mono_init): Call the new initialization functions of the
25300         three modules.
25301
25302 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
25303
25304         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
25305           make a direct call. It is proxy's work to make the call asynchronous.
25306           mono_delegate_end_invoke(): If the targe is a proxy, just collect
25307           the return values.
25308         * object.cs: mono_method_call_message_new(): read AsyncResult and
25309           state object from parameters list, if this info is requested.
25310         * object.h: Added fields to store remote call output values in
25311           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
25312
25313 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25314
25315         * object.h: add needed fields to MonoThread.
25316         * threads.c, threads.h: allow registering a function to cleanup data
25317         allocated per thread by the JIT.
25318
25319 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25320
25321         * loader.h: portability fix by Bernie Solomon
25322         * <bernard@ugsolutions.com>.
25323
25324 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
25325
25326         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
25327         return a MonoArray. This simplifies the code and also ensures that
25328         the cache allways contains an object reference as a value.
25329
25330         * icall.c (ves_icall_get_parameter_info): Simplified using the new
25331         function.
25332
25333 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25334
25335         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
25336         fixes a problem with byte ordering when getting the address family for
25337         a socket.
25338
25339 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
25340
25341         * .cvsignore: Added monosn.
25342
25343         * reflection.h reflection.c loader.c: Added support for parameter
25344         marshalling to dynamically created types. Fixes #47295.
25345
25346 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
25347
25348         * rand.c: remove useless warnings.
25349
25350 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25351
25352         * class.c: implemented ldtoken for methods and fieldrefs.
25353
25354 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25355
25356         * threadpool.c: when mono_async_invoke was called, no one took care of
25357         monitoring the queue. So if the method invoked took some time and we
25358         got new async invoke requests after 500 ms (the thread created waited
25359         that long in WaitForSingleObject), the new async invoke was not called
25360         until the previous one finished.
25361
25362         This is fixed now. Thanks to Totte for helping with it.
25363
25364 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25365
25366         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
25367
25368 2003-08-11  Martin Baulig  <martin@ximian.com>
25369
25370         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
25371
25372 2003-08-06  Martin Baulig  <martin@ximian.com>
25373
25374         * mono-debug-debugger.c: Added support for static fields,
25375         properties and methods.
25376
25377 2003-08-06  Martin Baulig  <martin@ximian.com>
25378
25379         * mono-debug-debugger.c: Don't store the MonoString's vtable to
25380         make this work for applications with multiple application domains.
25381
25382 2003-08-04  Martin Baulig  <martin@ximian.com>
25383
25384         * mono-debug-debugger.c: Completely reworked the type support; the
25385         most important thing is that we're now just using one single
25386         `MonoType' instance per type.
25387
25388 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
25389
25390         * mono-endian.h, mono-endian.c, icall.c: Added icall
25391         ves_icall_System_Double_AssertEndianity to assert double word endianity
25392         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
25393
25394 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25395
25396         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
25397         support, icalls and fixes.
25398
25399 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
25400
25401         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
25402         classes that are a punctuation character in .NET is not the same a
25403         g_unichar_ispunct.
25404
25405 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25406
25407         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
25408
25409 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
25410
25411         * icall.c: Add new MemCopy internalcall.
25412         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
25413         Simplified code; It is not necessary to handle all the cases here,
25414         as the C# code takes care of it.  Only handle the case of the name
25415         resource embedded into the assembly.
25416
25417         Changed signature to return the data pointer and the size of the
25418         data. 
25419
25420 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
25421
25422         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
25423         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
25424
25425 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
25426
25427         * socket-io.c: ignore EINTR error in select.
25428
25429 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
25430
25431         * class.h, class.c: removed unused subclasses field in MonoClass.
25432
25433 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
25434
25435         * icall.c: improve fix of get_base_definition(). If the parent class
25436           doesn't have the mehod, look at the parent of the parent.
25437         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
25438           to check if a parameter is an in or out parameter
25439           (PARAM_ATTRIBUTE_IN is not set by default).
25440           mono_method_return_message_restore(): Use mono_class_value_size to
25441           get the size of a value type. mono_type_stack_size (parameterType)
25442           does not return the correct value if parameterType is byRef.
25443           mono_load_remote_field(), mono_load_remote_field_new(),
25444           mono_store_remote_field(), mono_store_remote_field_new():
25445           raise exception if the remote call returns an exception.
25446
25447 2003-07-28  Martin Baulig  <martin@ximian.com>
25448
25449         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
25450         method.  This is a wrapper around mono_runtime_invoke() which
25451         boxes the instance object if neccessary.
25452
25453 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25454
25455         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
25456         metadata.h, row-indexes.h, verify.c: first cut of generics support.
25457
25458 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25459
25460         * icall.c: disable mcs bug workaround.
25461
25462 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
25463
25464         * object.c (mono_runtime_class_init): Take the metadata_section
25465         mutex before obtaining the domain mutex.
25466
25467         * appdomain.h: Added definition of metadata_section mutex here. 
25468
25469         * object.c: define metadata_mutex here.
25470
25471 2003-07-24  Ravi Pratap  <ravi@ximian.com>
25472
25473         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
25474         fixed.
25475
25476 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
25477
25478         * reflection.c: Fix bug #46669
25479
25480 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25481
25482         * exception.c:
25483         * exception.h:
25484         * icall.c:
25485         * object.h: fill in the type name for TypeLoadException.
25486
25487 2003-07-23  Ravi Pratap  <ravi@ximian.com>
25488
25489         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
25490         relationship between TypeBuilders while compiling corlib) and bug
25491         45993 (Array types returned from the runtime while compiling
25492         corlib were from the loaded corlib).
25493
25494 2003-07-22  Martin Baulig  <martin@ximian.com>
25495
25496         * mono-debug-debugger.c: Reworked the type support a bit more;
25497         distinguish between types and classes.
25498
25499 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
25500
25501         * icall.c: add IsArrayImpl icall.
25502
25503 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
25504
25505         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
25506         initializing real_size only once. Also fix bug #46602.
25507
25508 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
25509
25510         * object.c: Renamed mono_metadata_section to metadata_section.
25511
25512 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
25513
25514         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
25515           empty array if the type is an array. Fixed.
25516           ves_icall_MonoMethod_get_base_definition: if the base method
25517           is abstract, get the MethodInfo from the list of methods of
25518           the class.
25519         * reflection.c: ParameterInfo.PositionImpl should be zero-based
25520           and it was 1-based. Fixed in mono_param_get_objects.
25521
25522 2003-07-20  Martin Baulig  <martin@ximian.com>
25523
25524         * mono-debug.h: Set version number to 31.
25525         (mono_debug_init): Added `MonoDomain *' argument.
25526
25527         * mono-debug-debugger.c: Reworked the type support; explicitly
25528         tell the debugger about builtin types; pass the `klass' address to
25529         the debugger.
25530
25531 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
25532
25533         * image.c: Allow new metadata tables to be loaded without a
25534         warning. Also update the warning message to give the new constant value.
25535                 
25536 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25537
25538         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
25539         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
25540         array type representation changes.
25541
25542 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25543
25544         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
25545         on Environment.Exit () call.
25546
25547 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25548
25549         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
25550         requires a matching corlib.
25551
25552 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
25553
25554         * Changelog: My editor decided to add a CR to each line. Sorry about that.
25555           Committed again without the CRs.
25556         
25557 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
25558
25559         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
25560           getting it from the "this" socket instance. Did not work
25561           if the socket is a subclass of Socket.
25562           Also fixed bug #35371.
25563
25564 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25565
25566         * metadata.c: fixed size for TypedByRef.
25567         * loader.c: when searching for a method, consider the vararg amrker.
25568         * unicode.c, decimal.c: constify some arrays.
25569
25570 2003-07-15  Dick Porter  <dick@ximian.com>
25571
25572         * socket-io.c: Fixed compilation for gcc < 3.2.
25573
25574         Fixed compilation for machines that don't have AF_INET6 (thanks to
25575         Bernie Solomon <bernard@ugsolutions.com> for that part.)
25576
25577         Fixed compile warnings.
25578         
25579         Fixed formatting and line endings.
25580
25581 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
25582
25583         * socket-io.h:
25584         * socket-io.c: Added IPv6 support.
25585
25586 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
25587
25588         * class.c (mono_class_is_assignable_from): New function to implement
25589         the is_assignable_from logic. Used by mono_object_isinst, 
25590         Type::IsAssignableFrom () and the interpreter.
25591
25592         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
25593         Object, even interfaces.
25594         
25595         * object.c (mono_object_isinst): Implement in terms of 
25596         is_assignable_from.
25597
25598         * icall.c (ves_icall_type_is_assignable_from): New icall.
25599
25600 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
25601
25602         * domain.c (foreach_domain): fix compiler warning.
25603
25604 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
25605
25606         * image.c (load_metadata_ptrs): use g_strndup because strndup is
25607         not available on all plattforms
25608
25609 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
25610
25611         * image.h image.c: Store the metadata version string in MonoImage.
25612         * icall.c: New icall to retrieve the image version.
25613         * reflection.c (create_dynamic_image): Fill in the image version field
25614         * reflection.c (build_compressed_metadata): Use the image version
25615         from the image structure.
25616
25617 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25618
25619         * appdomain.c: modified comment.
25620         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
25621         That will be its last iteration when mono_gc_cleanup is called from
25622         mono_runtime_cleanup and before the domain is unloaded.
25623
25624         Fixes bug #45962.
25625
25626 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
25627
25628         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
25629         attributes.
25630
25631 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25632
25633         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
25634         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
25635         Bernie Solomon <bernard@ugsolutions.com>.
25636
25637 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25638
25639         * object.c, object.h: provide mono_object_new_fast() for faster
25640         allocation in some special cases.
25641
25642 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25643
25644         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
25645         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
25646
25647 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25648
25649         * threadpool.c: fix leaks.
25650
25651 2003-07-01  Dick Porter  <dick@ximian.com>
25652
25653         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
25654         using MonoGHashTables.  Fixes threadpool bug posted to list.
25655
25656 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
25657
25658         * image.h, image.c: added support to load an assembly from a byte array.
25659         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
25660         assembly bundle support.
25661
25662 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
25663
25664         * threadpool.c (mono_thread_pool_add): keep a reference to the
25665         AsyncResult to prevent GC
25666
25667 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
25668
25669         * class.c: leak fix.
25670
25671 2003-06-25  Dick Porter  <dick@ximian.com>
25672
25673         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
25674         for the async object, the WaitHandle object will close the handle.
25675         Fixes bug 45321.
25676
25677 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25678
25679         * class.c: in mono_array_class_get (), lookup from the hash with the
25680         same type we insert: this works around a bug in
25681         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
25682         lluis. The real fix will have to wait for after the release.
25683
25684 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25685
25686         * icall.c: fix memory leak when getting type members.
25687
25688 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
25689
25690         * reflection.c: added more pubtoken special cases.
25691
25692 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
25693
25694         * class.c: handle field offset correctly when class size
25695         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
25696
25697 2003-06-20  Martin Baulig  <martin@ximian.com>
25698
25699         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
25700         *image' field.
25701
25702 2003-06-20  Martin Baulig  <martin@ximian.com>
25703
25704         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
25705
25706 2003-06-20  Martin Baulig  <martin@ximian.com>
25707
25708         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
25709         just distinguish between variables in registers and variables at
25710         an offset relative to a register.
25711
25712 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25713
25714         * icall.c: #ifdef out latest changes until mcs is fixed.
25715
25716 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25717
25718         * icall.c: return members in metadata order.
25719
25720 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25721
25722         * icall.c: avoid infinite loop in GetTimeZoneData.
25723
25724 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
25725
25726         * icall.c: added Marshal.Prelink/All icalls.
25727
25728 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
25729
25730         * object.c, object.h: fix warnings and do some overflow checking
25731         when creating arrays.
25732
25733 2003-06-17  Dick Porter  <dick@ximian.com>
25734
25735         * file-io.h:
25736         * file-io.c: File attributes need to be tweaked slightly when
25737         passed from the managed to the w32 world.
25738
25739 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
25740         * profiler.h profiler-private.h profiler.c: Rework last patch
25741         based on suggestion by Paolo.
25742         
25743 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
25744
25745         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
25746         instruction level coverage data collection.
25747         * profiler.h profiler.c (: Added new callback function which can be
25748         used by the profiler to limit which functions should have coverage
25749         instrumentation.
25750         * profiler.c (mono_profiler_load): Call g_module_build_path to
25751         generate the file name of the profiler library.
25752
25753 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25754
25755         * profiler.c, profiler.h, profiler-private.h: added basic block 
25756         coverage profiling API.
25757
25758 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
25759
25760         * reflection.c (mono_reflection_create_runtime_class): Add support
25761         for events in dynamically generated code.
25762
25763         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
25764         not allocated.
25765
25766 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25767
25768         * icall.c: when getting timezone info, return reasonable values if we
25769         can't get the actual data.
25770
25771 2003-06-14  Dick Porter  <dick@ximian.com>
25772
25773         * threads.c (start_wrapper): Remove the reference to the thread
25774         object in the TLS data, so the thread object can be finalized.
25775         This won't be reached if the thread threw an uncaught exception,
25776         so those thread handles will stay referenced :-( (This is due to
25777         missing support for scanning thread-specific data in the Boehm GC
25778         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
25779
25780 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
25781
25782         * reflection.c: ensure streams and tables are first allocated with
25783         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
25784
25785 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25786
25787         * icall.c: fixed GetElementType for byrefs (bug# 44792).
25788
25789 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
25790
25791         * reflection.c (mono_reflection_create_runtime_class): Add support for
25792         properties to dynamically created classes.
25793         * reflection.c: Fix a few places where non-MonoObjects were inserted
25794         into the tokens hashtable.
25795
25796 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
25797
25798         * object.c: some support to handle out of memory exceptions.
25799
25800 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
25801
25802         * marshal.c (mono_marshal_get_native_wrapper): support reference
25803         return types
25804
25805 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
25806
25807         * object.h, object.c: more portability stuff from Bernie Solomon.
25808         Unexport mono_object_allocate(). Added mono_object_unbox ().
25809         Set exitcode when an unhandled exception is thrown.
25810
25811 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
25812
25813         * marshal.c (mono_marshal_get_native_wrapper): use custom
25814         marshaler for return types.
25815
25816 2003-06-10  Dick Porter  <dick@ximian.com>
25817
25818         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
25819         ip_mreq is available
25820
25821 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
25822
25823         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
25824         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
25825         by Bernie Solomon <bernard@ugsolutions.com>.
25826
25827 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
25828
25829         * gc.c (mono_gc_init): Avoid error message on shutdown when
25830         GC_DONT_GC=1 is used.
25831
25832         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
25833         New icall to return the GUID of a module.
25834
25835 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
25836
25837         * class.c: ensure instance size always includes the parent's size
25838         even whem class size is set explicitly (fixes bug#44294).
25839
25840 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25841
25842         * profiler.h, profiler.c: made the simple profiler thread-safe,
25843         get more accurate timing info. Allow the loading of an
25844         externally-developed profiler module.
25845
25846 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
25847
25848         * marshal.c (mono_marshal_get_native_wrapper): improved
25849         class/byref arguments.
25850         (mono_marshal_get_native_wrapper): better string marshaling support.
25851
25852 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
25853
25854         * class.c: ensure .pack and .size are handled correctly and
25855         simplified layout of static fields.
25856
25857 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
25858
25859         * appdomain.c
25860         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
25861
25862         * loader.c (mono_lookup_pinvoke_call): look for modules in the
25863         current directory (fix bug 44008)
25864
25865 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
25866
25867         * marshal.c (mono_marshal_get_native_wrapper): started support for
25868         custom marshalers.
25869         (mono_delegate_to_ftnptr): consider marshalling specifications
25870
25871 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
25872
25873         * reflection.c, reflection.h: emit custom marshal info.
25874
25875 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25876
25877         * object.c: free the GError.
25878         * icall.c: added CloseEvent_internal.
25879         * threads.[ch]:
25880         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
25881         call.
25882
25883 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
25884
25885         * loader.c (mono_method_get_signature): Add support for dynamic
25886         assemblies.
25887
25888 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
25889
25890         * reflection.c: fixed bug #43905.
25891
25892 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25893
25894         * class.c, domain.c, icall.c, metadata.h, object.h: support for
25895         handling TypedReference and ArgIterator.
25896         * loader.c, loader.h: added function to get signature at call site.
25897
25898 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
25899
25900         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
25901         data readonly. Buglets and warning fixes. Some MethodSpec support.
25902
25903 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25904
25905         * class.h, class.c, object.c: remove relative numbering support.
25906
25907 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
25908
25909         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
25910         free the string, until we get a chance to fix Gtk#
25911
25912 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25913
25914         * marshal.c: revert last patch.
25915
25916 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
25917
25918         * icall.c: updates for new mono_class_vtable() not calling
25919         the type constructor anymore.
25920
25921 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
25922
25923         * object.h, object.c: separate vtable creation from type
25924         initialization. Make running the .cctor thread safe.
25925
25926 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
25927
25928         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
25929
25930 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
25931
25932         * loader.c (mono_get_method): consider calling convention
25933
25934 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
25935
25936         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
25937         to return the invisible global type for a module.
25938
25939         * reflection.c (mono_image_build_metadata): Emit global fields too.
25940
25941 2003-05-20  Peter Williams  <peterw@ximian.com>
25942
25943         * loader.c (mono_lookup_internal_call): Add a few newlines.
25944
25945 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
25946
25947         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
25948         literal strings.
25949
25950         * appdomain.c (set_domain_search_path): Recalculate search path when
25951         AppDomainSetup.PrivateBinPath changes.
25952
25953         * object.c (mono_class_compute_gc_descriptor): It turns out some
25954         parts of the class libs (like System.Thread) holds pointers to
25955         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
25956         to treat native int a pointer type here.
25957         
25958 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
25959
25960         * appdomain.h, domain.c: add hashtable for jump target resolution.
25961
25962 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
25963
25964         * reflection.h reflection.c icall.c: Added new icalls 
25965         GetManifestResourceInfoInternal, GetModulesInternal and support
25966         infrastructure.
25967
25968 2003-05-16  Dick Porter  <dick@ximian.com>
25969
25970         * icall.c:
25971         * file-io.h:
25972         * file-io.c: Implement System.IO.MonoIO::GetTempPath
25973
25974 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
25975
25976         * object.c: mono_store_remote_field: little fix to previous patch.
25977
25978 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25979
25980         * class.c: add constructors to array classes.
25981         * icall.c: special case array construction for InternalInvoke (),
25982
25983 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
25984
25985         * class.h class.c reflection.c object.c: Added support for field
25986         defaults in dynamically generated classes.
25987
25988 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25989
25990         * reflection.c: properly encode charset for ddlimport.
25991
25992 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
25993
25994         * threads.c: allow compiling without GC.
25995
25996 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25997
25998         * appdomain.h, object.c, object.h, threads.c, threads.h: added
25999         handling of thread static data.
26000
26001 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
26002
26003         * reflection.h, reflection.c: added mono_custom_attrs_free ().
26004
26005 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
26006
26007         * class.c (mono_array_class_get): always set the serializable flags
26008         (mono_array_class_get): always set the SEALED attribute for array types
26009
26010 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
26011
26012         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
26013         attributes (fix for bug 42021).
26014
26015 2003-05-12  Dick Porter  <dick@ximian.com>
26016
26017         * gc.c: Don't run finalizers when the finalizer thread is
26018         finishing up, because the default domain has already been
26019         destroyed.
26020
26021 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
26022
26023         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
26024         value is null, we should throw an exception.   This is slightly
26025         different than the other conventions used for the constructor.
26026
26027 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26028
26029         * socket-io.c: fixed windows build.
26030
26031 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26032
26033         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
26034
26035 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
26036
26037         * object.c (mono_string_new_wrapper): Compatibility fix for MS
26038         compilers.
26039
26040 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
26041
26042         * class.c (mono_class_layout_fields): Add experimental GC aware
26043         auto layout facility. Requires class library changes to work correctly.
26044
26045         (mono_class_setup_vtable): Avoid overriding explicit interface
26046         method implementations. Fixes iface3.exe test.
26047
26048         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
26049         object reference.
26050         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
26051         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
26052
26053         * metadata.h: Add new type classification macro which determines
26054         whenever the type holds an object reference.
26055
26056 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
26057
26058         * marshal.c (mono_marshal_get_native_wrapper): cleanups
26059
26060 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
26061
26062         * gc.c (finalizer_thread): Work around a GC bug.
26063
26064 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
26065
26066         * marshal.c (emit_struct_conv): allow unions
26067
26068         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
26069
26070 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
26071
26072         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
26073
26074 2003-05-06  Martin Baulig  <martin@ximian.com>
26075
26076         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
26077
26078 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26079
26080         * socket-io.c:
26081         (Select_internal): allow NULLs, don't create arrays if not needed.
26082         Coupled with Socket.cs changes.
26083
26084         * threadpool.c:
26085         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
26086         register a finalizer for it that will close the semaphore handle. This
26087         fixes the leak and make Lupus' test run with > 4080 loops.
26088
26089 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
26090
26091         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
26092         Jerome Laban (bug #42287)
26093
26094 2003-05-02  Martin Baulig  <martin@ximian.com>
26095
26096         * debug-mono-symfile.h
26097         (MonoSymbolFile): Moved declaration into mono-debug.h.
26098         (MonoDebugMethodJitInfo): Likewise.
26099         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
26100         argument.
26101         (_mono_debug_address_from_il_offset): Take a
26102         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
26103
26104         * mono-debug.h
26105         (MonoDebugDomainData): New struct.
26106         (mono_debug_get_domain_data): New function.
26107         (mono_debug_add_method): Take an additional `MonoDomain *'
26108         argument.
26109         (mono_debug_source_location_from_address): Likewise.
26110         (mono_debug_il_offset_from_address): Likewise.
26111         (mono_debug_address_from_il_offset): Likewise.
26112
26113 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
26114
26115         * reflection.c: one more check for null type in custom attrs.
26116
26117 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26118
26119         * reflection.c: avoid warning (comparison is always false due to limited
26120         range of data type).
26121
26122 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26123
26124         * icall.c: throw an exception in Type.GetField if the argument 'name'
26125         is NULL.
26126
26127 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
26128
26129         * reflection.c: fixed handling of enums in named arguments to custom
26130         attributes (bug #42123).
26131
26132 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
26133
26134         * reflection.c: use the right array element type and handle
26135         a null for a Type argument, too.
26136
26137 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
26138
26139         * reflection.c: handle arrays as arguments to custom attributes.
26140
26141 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
26142
26143         * reflection.c: handle a string value in a custom attr
26144         ctor that takes an object.
26145
26146 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
26147
26148         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
26149         (fix bug #42063)
26150
26151 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
26152
26153         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
26154
26155 2003-04-27  Martin Baulig  <martin@ximian.com>
26156
26157         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
26158         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
26159         MONO_DEBUGGER_EVENT_BREAKPOINT.
26160         (mono_breakpoint_trampoline_code): Removed.
26161         (mono_debugger_event_handler): The last argument is now a
26162         `guint32'.
26163         (mono_debugger_insert_breakpoint_full): Removed the
26164         `use_trampoline' argument.
26165         (mono_debugger_method_has_breakpoint): Likewise.
26166         (mono_debugger_trampoline_breakpoint_callback): Renamed to
26167         mono_debugger_breakpoint_callback(); take the method and
26168         breakpoint number as arguments.
26169
26170 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
26171
26172         * metadata.c: fix off by one when loading parameters attributes.
26173
26174 2003-04-24  Martin Baulig  <martin@ximian.com>
26175
26176         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
26177
26178 2003-04-24  Martin Baulig  <martin@ximian.com>
26179
26180         * mono-debug-debugger.c: Moved all code which interacts with the
26181         Mono Debugger here.
26182
26183         * debug-mono-symfile.c: This code now just deals with the symbol
26184         file itself, the debugger code is now in mono-debug-debugger.c.
26185
26186 2003-04-23  Martin Baulig  <martin@ximian.com>
26187
26188         * mono-debug.c (mono_debug_source_location_from_il_offset):
26189         New method; like mono_debug_source_location_from_address(), but
26190         takes an IL offset instead of a machine address.
26191
26192 2003-04-23  Martin Baulig  <martin@ximian.com>
26193
26194         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
26195         `line' field; this is now computed by the debugger.
26196
26197 2003-04-23  Martin Baulig  <martin@ximian.com>
26198
26199         * mono-debug.[ch]: New files.  This is the new debugging interface.
26200
26201         * mono-debug-debugger.[ch]: New files.  Moved all code which
26202         interacts with the Mono Debugger here.
26203
26204 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
26205
26206         * domain.c (mono_init): initialize mono_defaults.monitor_class
26207
26208 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
26209
26210         * reflection.c (method_encode_code): Add a spicy exception to help
26211         future compiler authors.
26212
26213 2003-04-21  Martin Baulig  <martin@ximian.com>
26214
26215         * icall.c
26216         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26217         Make this work with relative pathnames; g_filename_to_uri() needs
26218         an absolute filename.
26219
26220 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
26221
26222         * icall.c: Track name changes in Object and ValueType.
26223
26224 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
26225
26226         * metadata.c (mono_type_stack_size): size should be a multiple of
26227         sizeof (gpointer)
26228
26229 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26230
26231         * gc.c:
26232         (internal_domain_finalize): moved into mono_domain_finalize. No need
26233         to create another thread because the finalizers will be run in the
26234         finalizer thread.
26235         
26236         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
26237         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
26238         to be run (MS does this too).
26239
26240 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
26241
26242         * object.c (mono_class_compute_gc_descriptor): Update comment.
26243
26244         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
26245
26246         * image.h: Add synchronized wrapper cache.
26247
26248         * image.c (do_mono_image_open): Initialize cache.
26249
26250         * reflection.c (create_dynamic_mono_image): Initialize cache.
26251
26252 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26253
26254         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
26255         ves_icall_System_Buffer_ByteLengthInternal.
26256
26257 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
26258
26259         * reflection.c: setup klass->nested_in earlier. Allow
26260         a dash in the assembly name.
26261
26262 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
26263
26264         * metadata.c (mono_type_to_unmanaged): dont access
26265         type->data.klass for MONO_TYPE_OBJECT
26266         (mono_type_to_unmanaged): consider System.Delegate class
26267
26268 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
26269
26270         * class.c: just setup supertypes in the proper place instead of
26271         initializing the full element class for arrays.
26272
26273 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
26274
26275         * class.c: ensure the element class of arrays is initialized.
26276         Setup the supertype info for array classes, too.
26277
26278 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
26279
26280         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
26281
26282 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26283
26284         * Makefile.am: re-added -m option when running cygpath. This way,
26285         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
26286         separator.
26287         * mono-config.c: same codepath for locating mono config file for WIN32
26288         and the rest.
26289         * assembly.c: if mono_assembly_setrootdir is called, don't override
26290         the value set.
26291
26292 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26293
26294         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
26295         MONO_ASSEMBLIES variable.
26296
26297 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
26298
26299         * icall.c: added Assembly::GetNamespaces() icall.
26300
26301 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26302
26303         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
26304
26305 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
26306
26307         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
26308         * object.c: fixed bug in the construction of vtable for proxies
26309
26310 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
26311
26312         * object.c (mono_array_new): Mark mono_array_new as an icall.
26313
26314 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26315
26316         * class.c: fixed test for public method when overriding interfaces.
26317         Closes bug #40970.
26318
26319 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
26320
26321         * appdomain.h, domain.c: added mono_domain_foreach() to
26322         be able to access the currently loaded appdomains.
26323         * object.c: make string interning work across sppdomains.
26324         Mark some functions for use as icalls.
26325
26326 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
26327
26328         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
26329
26330         * reflection.h reflection.c: Allocate long living data using 
26331         GC_MALLOC_ATOMIC so the collector does not need to scan it.
26332
26333         * reflection.c: Double the allocation size in streams instead of
26334         increasing it, to prevent unneccesary copying on large assemblies.
26335         
26336         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
26337         creation if the assembly does not have the Run flag set.
26338
26339 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
26340
26341         * class.h: avoid the C++ keywords in header files (Jerome Laban
26342         spotted and fixed this).
26343
26344 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26345
26346         * object.c:
26347         (mono_unhandled_exception): fill in the arguments for the
26348         UnhandledException event. Only trigger that event for the default
26349         domain (as MS does).
26350
26351 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
26352
26353         * object.c: Improve typed allocation stuff based on suggestions from
26354         Paolo. Also turn it on if the GC library supports it.
26355
26356 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
26357
26358         * object.c object.h class.h: Added experimental typed allocation
26359         facility using the interfaces in gc_gcj.h.
26360
26361         * os/gc_wrapper.h: Added new include files.
26362         
26363 2003-04-03  Martin Baulig  <martin@ximian.com>
26364
26365         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
26366         which is not yet enabled by default.
26367
26368         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
26369         functions.
26370         (mono_gc_lock, mono_gc_unlock): New static functions.
26371
26372         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
26373         functions; stop/start the world for the garbage collector.  This
26374         is using the windows API; we need to complete the SuspendThread()/
26375         ResumeThread() implementation in the io-layer to make this work on Unix.
26376         (mono_gc_push_all_stacks): New public function; tells the garbage
26377         collector about the stack pointers from all managed threads.
26378
26379 2003-04-03  Martin Baulig  <martin@ximian.com>
26380
26381         * object.h (MonoThread): Added `gpointer stack_ptr'.
26382
26383         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
26384
26385 2003-04-03  Martin Baulig  <martin@ximian.com>
26386
26387         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
26388
26389 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
26390
26391         * reflection.c (typebuilder_setup_fields): Initialize field.first and
26392         field.last.
26393
26394 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
26395
26396         * loader.c (mono_lookup_internal_call): Report the corlib that is
26397         out of sync.
26398
26399 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
26400
26401         * icall.c (ves_icall_type_GetTypeCode): fixed check for
26402         System.DBNull (it's class not valuetype).
26403
26404 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
26405
26406         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
26407         if the array method was already assigned a token (fixes bug#40646).
26408
26409 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
26410
26411         * reflection.c (mono_reflection_get_type): Attempt type resolve even
26412         if no assembly is given.
26413
26414 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
26415
26416         * metadata.h: Added the new tables.
26417
26418         * row-indexes.h: Added definitions for new tables.
26419
26420         * metadata.c: Add schemas for new tables, and add support for
26421         computing the sizes of them.
26422
26423         * class.c: Update for handling the new type cases.
26424
26425 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
26426
26427         * metadata.h (MONO_TYPE_IS_VOID): new macro
26428
26429 2003-03-31  Martin Baulig  <martin@ximian.com>
26430
26431         * threads.h (MonoThreadCallbacks): Added `thread_created'.
26432
26433         * threads.c (mono_thread_new_init): Call `thread_created' in the
26434         mono_thread_callbacks.
26435
26436 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
26437
26438         * loader.h: added marshalbyrefobject_class to mono_defaults
26439         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
26440         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
26441           generation of output parameters.
26442           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
26443         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
26444           contextbound and the target object belongs to the context of the caller.
26445         * object.h: added context and unwrapped_server variables in MonoRealProxy.
26446         * object.c: Implemented support for interfaces and abstract classes
26447           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
26448           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
26449
26450 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
26451
26452         * class.h class.c (mono_class_is_subclass_of): New function.
26453         
26454         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
26455         routines for most common case (calls from ArrayList::ToArray).
26456
26457         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
26458         routine so programs which call Environment::Exit() can be profiled.
26459
26460         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
26461         Added MONO_ARCH_SAVE_REGS.
26462
26463         * icall.c (ves_icall_type_is_subtype_of): Use new function.
26464
26465 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
26466
26467         * blob.h: Add a couple of new MonoType types definitions.
26468
26469         * tabledefs.h: Add a couple of new call convs.
26470
26471 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
26472
26473         * reflection.h (MonoReflectionDynamicAssembly): track changes in
26474         the layout of the class.
26475
26476         * reflection.c (alloc_table): double the size on overflow to avoid
26477         unnecessary copying.
26478
26479         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
26480         avoid filling out metadata tables and blobs. Also set mb->ilgen to
26481         null so it can be garbage collected.
26482         
26483 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
26484
26485         * reflection.c (mono_reflection_get_type): Return the resolved type
26486         only if it is in the assembly we searched.
26487
26488         * reflection.c (ensure_runtime_vtable): Initialize method slots.
26489
26490         * class.c (mono_class_setup_vtable): Set the slot of the overriding
26491         method.
26492
26493 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26494
26495         * appdomain.c:
26496         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
26497         the right one is 'file:///blah', but MS allows it.
26498         * assembly.c:
26499         (mono_assembly_open): allow 'file://blah'
26500
26501         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
26502
26503 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
26504
26505         * socket-io.c: fixes bug #40310.
26506
26507 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
26508
26509         * reflection.c (mono_reflection_parse_type): handle deeply nested
26510         types correctly.
26511
26512         * reflection.c (mono_image_create_token): Use unique token values
26513         since they will be put into a hash table.
26514
26515         * class.c (mono_class_setup_vtable): If a method occurs in more than
26516         one place in the vtable, and it gets overriden, then change the
26517         other occurances too.
26518
26519         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
26520         object as return type.
26521
26522 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26523
26524         * icall.c: Deleted "ToString" implementation for double and float
26525         because they are full implemented in managed code.
26526
26527 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
26528
26529         * reflection.c, reflection.h: implemented and exported functions
26530         to retrieve info about custom attributes.
26531
26532 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26533
26534         * appdomain.c: moved Uri handling to assembly.c
26535         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
26536         work when using a file Uri in *nix and windows.
26537
26538         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
26539         GetReferencedAssemblies.
26540
26541 2003-03-18  Dick Porter  <dick@ximian.com>
26542
26543         * icall.c: Rename a couple of internal calls
26544
26545         * threads.c: Set the thread state to Stopped when a thread exits.
26546         Fixes bug 39377.
26547
26548 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
26549
26550         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
26551         New icall.
26552
26553         * object.c (mono_class_vtable): fix warning.
26554
26555 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
26556
26557         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
26558
26559         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
26560         memory.
26561         (method_encode_clauses): Create exception info structures in the right
26562         order.
26563         (mono_reflection_setup_internal_class): Initialize supertypes field.
26564
26565         * class.c object.c: Handle interfaces which implement other interfaces 
26566         correctly.
26567
26568         * class.h class.c: Move the supertypes array initialization code into 
26569         a separate function so it can be used for dynamic types too. Also call
26570         it earlier, in mono_class_init(), since it can be used before the
26571         type is initialized.
26572
26573 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26574
26575         * Makefile.am:
26576         * assembly.c:
26577         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
26578
26579         * appdomain.c:
26580         * appdomain.h:
26581         * marshal.c:
26582         * object.c: remove warnings.
26583
26584 2003-03-13  Martin Baulig  <martin@ximian.com>
26585
26586         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
26587         (MonoDebugLexicalBlockEntry): New types.
26588
26589         * debug-mono-symfile.c
26590         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
26591
26592 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26593
26594         * process.c: ret can be any non-zero value accroding to MS doc.
26595
26596 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
26597
26598         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
26599         fixing a warning for a miss-used prototype, would have cause
26600         random memory corruption.
26601
26602 2003-03-07  Martin Baulig  <martin@ximian.com>
26603
26604         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
26605         getting really annoying ....
26606
26607 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
26608
26609         * reflection.c (fixup_method): added support for array methods.
26610
26611 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
26612
26613         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
26614         (pointed out by Michael Adams).
26615
26616 2003-03-04  Dick Porter  <dick@ximian.com>
26617
26618         * icall.c: Temporarily reverted the Double and Single ToString()
26619         change, because it broke nunit.
26620
26621 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
26622
26623         * object.h, threads.h: make include files compatible with C++
26624         (patch by Jerome Laban <jlaban@wanadoo.fr>).
26625
26626 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26627
26628         * icall.c: Erased ToString helper functions for Double and Single.
26629         Now, that implementations ar all in managed code (Double and Single
26630         Formatters).
26631
26632 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
26633
26634         * appdomain.c: Added method for initializing the default context of
26635         a domain. Added internal call for getting the default context.
26636         * appdomain.h: Added context variable in MonoDomain struct.
26637         * domain.c: mono_domain_set also sets the default context of the domain
26638         * icall.c: Mapped internal method InternalGetDefaultContext.
26639         * object.c: mono_object_get_virtual_method returns always a remoting
26640         wrapper if the object is a transparent proxy.
26641         mono_runtime_invoke_array: when creating an object by calling the
26642         constructor, if the created object is a proxy, then the constructor should
26643         be called using the a remoting wrapper.
26644
26645 2003-03-03  Dick Porter  <dick@ximian.com>
26646
26647         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
26648         variable so it compiles on solaris.  Problem spotted by
26649         Christopher Taylor <ct@cs.clemson.edu>
26650
26651 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26652
26653         * appdomain.c:
26654         (get_info_from_assembly_name): don't leak value.
26655
26656         * icall.c:
26657         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
26658         result.
26659
26660 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
26661
26662         * assembly.c: export mono_image_load_references ().
26663         * class.c: handle function pointers. mono_class_from_name() now
26664         supports nested type names directly.
26665
26666 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
26667
26668         * reflection.h reflection.c: Encode already created dynamic methods 
26669         and fields correctly as a DEF instead of a REF.
26670
26671         * reflection.c: Get rid of the force_ref argument to 
26672         mono_image_typedef_or_ref since it was wrong in the first place.
26673
26674         * string-icalls.c: add error checking to string constructors according
26675         to the MSDN docs.
26676
26677         * reflection.c: Emit types in the order their TypeBuilders were 
26678         created. Previously, a new table index was assigned to each type before
26679         the tables were emitted. This was wrong because the signature blob
26680         might already refer to a type by its original table index.
26681
26682 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
26683
26684         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
26685         change.
26686         
26687 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26688
26689         * Makefile.am: make assemblies dir have \ instead of / on windows.
26690
26691 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
26692
26693         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
26694         iterate over the NESTEDCLASS table using a linear search since the
26695         table is not guaranteed to be sorted by the secondary key.
26696
26697         * class.c (mono_class_create_from_typedef): fixed up call to
26698         mono_metadata_nesting_typedef.
26699         
26700 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
26701
26702         * marshal.c (mono_string_to_byvalstr): clear the memory as
26703         suggested by Jerome Laban <jlaban@wanadoo.fr>
26704
26705 2003-02-26  Dick Porter  <dick@ximian.com>
26706
26707         * process.c: Cope with padding in .rsrc blocks
26708
26709 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
26710
26711         * metadata.h: reverted the filter_len change, it breaks reflection
26712         
26713 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
26714
26715         * metadata.h: added a new field to store the filter_len
26716         
26717
26718 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
26719
26720         * reflection.c: handle custom attributes for types and members
26721         created with Reflection.Emit (bug#38422).
26722
26723 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
26724
26725         * reflection.c: define RTSpecialName automatically for constructors for
26726         compatibility with MS.NET.
26727
26728         * reflection.c (mono_reflection_create_runtime_class): initialize
26729         nested_in field of dynamically created classes.
26730
26731 2003-02-22  Martin Baulig  <martin@ximian.com>
26732
26733         * debug-mono-symfile.h: Incremented version number.
26734
26735 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
26736
26737         * object.h icall.c process.c: fix warnings.
26738
26739 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
26740
26741         * appdomain.h appdomain.c:
26742         (mono_domain_try_type_resolve): split the 
26743         name_or_tb argument into a name and a tb argument.
26744         (mono_domain_has_type_resolve): new function to check whenever the
26745         application has registered a TypeResolve event handler.
26746         
26747         * icall.c reflection.h reflection.c: move the type resolve logic into
26748         mono_reflection_get_type () so it will be invoked when 
26749         Assembly::GetType () is called.
26750
26751         * reflection.c:
26752         (mono_reflection_get_type): renamed to get_type_internal.
26753         (mono_reflection_get_type): fixed type name generation so it works 
26754         for nested types too.
26755         (mono_reflection_get_type): call has_type_resolve () to avoid the 
26756         costly type name generation if there is no resolve event handler.
26757
26758 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
26759
26760         * class.c, image.c: load exported types from file references.
26761
26762 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
26763
26764         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
26765           used to cache the managed methods used to create proxies and make 
26766           remote invocation of methods.
26767         * class.h: Added in MonoVTable a flag to indicate that a class needs 
26768           to be remotely created.
26769         * object.c: Modified the method mono_class_vtable(). It now initializes 
26770           the remote flag of the vtable. Modified mono_object_new_specific(), 
26771           so now it checks the remote flag.
26772         * icall.c: Added a couple of internal methods, one for enabling instance 
26773           creation interception for a type, and one for creating objects bypassing
26774           the remote check.
26775
26776 2003-02-18  Martin Baulig  <martin@ximian.com>
26777
26778         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
26779         New interncall to get a method's metadata token.
26780
26781         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
26782         New interncall for the debugger.
26783
26784 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
26785
26786         * class.c (mono_class_setup_vtable): allocate supertype array
26787
26788 2003-02-18  Martin Baulig  <martin@ximian.com>
26789
26790         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
26791
26792 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26793
26794         * reflection.c:
26795         (assembly_name_to_aname): jump over unknown properties (i've found
26796         something like: 'type, assembly, version=xxx, custom=null, public...',
26797         so now will ignore custom=null and still get the rest of the values).
26798
26799 2003-02-17  Dick Porter  <dick@ximian.com>
26800
26801         * threads.c: Have Thread.Start() wait for a semaphore to signal
26802         that the thread has set up all its local data.  This fixes bug
26803         34323, where Abort() raced the new thread's TLS data.
26804
26805         Also removes the handle_store() call from start_wrapper, because
26806         threads are now always created suspended and there is no longer a
26807         race between the parent and child threads to store the info.
26808
26809 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
26810
26811         * image.c: explain the #- heap issue in a message, hopefully
26812         avoiding FAQs on mono-list.
26813
26814 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26815
26816         * icall.c:
26817         (GetEntryAssembly): if the domain has not invoked
26818         AppDomain.ExecuteAssembly yet, return the assembly of the default
26819         AppDomain.
26820
26821 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
26822
26823         * class.c (mono_ldtoken): make it work in dynamic assemblies.
26824
26825 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
26826
26827         * metadata.c, reflection.c: simple speedup to type hash
26828         and equals code.
26829
26830 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
26831
26832         * image.c, image.h, class.c, assembly.c: move module loading
26833         to MonoImage. When loading metadata, consider alignemnet from
26834         the start of metadata, not from the metadata address in memory.
26835
26836 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
26837
26838         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
26839         AssemblyBuilder objects. Factored out custom attribute creation into
26840         a separate function.
26841         (create_custom_attr): new function to create custom attributes.
26842
26843 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
26844
26845         * Makefile.am: Got tired of typing the full pathname to pedump.
26846         Until there is another option, am installing this.
26847
26848 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
26849
26850         * class.c (class_compute_field_layout): always set field->parent 
26851         (mono_ldtoken): use mono_defaults.fieldhandle_class;
26852
26853 2003-02-11  Dick Porter  <dick@ximian.com>
26854
26855         * threads-types.h:
26856         * monitor.c: Rewrote Monitor, making lock much faster and
26857         Pulse/Wait work as specified.  Also uses much fewer handles, and only
26858         creates them as needed.
26859
26860         * exception.c: Added SynchronizationLockException
26861
26862         * threads.c: Deleted old Monitor implementation.  The new one is
26863         in a new file.
26864
26865 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
26866
26867         * class.c: handled TypedReference type code. Set the correct size for
26868         class data. Setup interface_offsets for interface classes, too.
26869
26870 2003-02-09  Martin Baulig  <martin@ximian.com>
26871
26872         * debug-mono-symfile.h: Reflect latest symbol writer changes.
26873
26874 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
26875
26876         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
26877         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
26878         * object.c: fixed mono_object_get_virtual_method () for interfaces.
26879         * verify.c: check for code that runs after the end of the method.
26880
26881 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26882
26883         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
26884         "System.Math::Round2".
26885         * sysmath.h: Added Floor, Round and Round2 definitions.
26886         * sysmath.c: Modified certain functions that were not 100% compliant
26887         with MS.NET (math precision) and added the implementation of Floor,
26888         Round and Round2.
26889
26890 2003-02-07  Martin Baulig  <martin@ximian.com>
26891
26892         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
26893
26894 2003-02-07  Martin Baulig  <martin@ximian.com>
26895
26896         * debug-mono-symfile.c: Reflected latest symwriter changes.
26897         (mono_debug_create_mono_symbol_file): Removed.
26898         (mono_debug_open_mono_symbol_file): Take an argument which
26899         specifies whether to create a dynamic symbol file.
26900
26901 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
26902
26903         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
26904
26905 2003-02-05  Martin Baulig  <martin@ximian.com>
26906
26907         * reflection.c (mono_image_build_metadata): Make this public,
26908         protect it against being called multiple times, don't create
26909         resources and don't build the compressed metadata here.
26910         (mono_image_create_pefile): Do this here.
26911
26912         * icall.c
26913         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
26914
26915 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26916
26917         * socket-io.c: fixed bug #36322.
26918
26919 2003-02-06  Piers Haken <piersh@friskit.com>
26920
26921         * appdomain.[ch]:
26922         * class.h:
26923         * debug-mono-symfile.c:
26924         * icall.c:
26925         * loader.c:
26926         * mono-config.c:
26927         * monosn.c:
26928         * reflection.c:
26929         * socket-io.c: warning cleanups
26930
26931 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
26932
26933         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
26934         function. works like remoting invoke, but does a check for the Proxy first.
26935
26936 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
26937
26938         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
26939
26940 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
26941
26942         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
26943         array of pointers.
26944         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
26945         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
26946
26947         * object.c (mono_store_remote_field_new): used by the new jit
26948         instead of mono_store_remote_field
26949         (mono_load_remote_field_new): used by the new jit
26950         instead of mono_load_remote_field
26951
26952 2003-02-05  Patrik Torstensson
26953
26954         * appdomain.c: changed unload to take the domain id instead
26955         of domain
26956         
26957         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
26958
26959
26960 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26961
26962         * appdomain.c: don't look for assemblies in ApplicationBase if
26963         PrivateBinPathProbe is set.
26964
26965 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26966
26967         * object.c: make the first argument in main_args contain the absolute
26968         path to the assembly. Fixes bug #37511.
26969
26970 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26971
26972         * icall.c: get correct UTC offset for countries not using daylight
26973         time saving. Fixes bug #30030.
26974
26975 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26976
26977         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
26978         and 1 are the family).
26979
26980 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
26981
26982         * icall.c (ves_icall_InternalExecute): removed wrong assertion
26983
26984         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
26985
26986 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
26987
26988         * reflection.c: added support for SignatureHelper tokens, which is
26989         needed by the Calli opcode.
26990
26991         * reflection.h: track changes to SignatureHelper class.
26992
26993         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
26994
26995 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26996
26997         * appdomain.c: fixed loading assemblies from PrivateBinPath.
26998
26999 2003-02-03  Patrik Torstensson
27000         * appdomain.[c|h], domain.c : 
27001          - Added support for getting a domain via domain id
27002          - Support for setting and getting domain from System.AppDomain 
27003            (used in cross appdomain channel)
27004          - Added support for get/set for a MonoAppContext on a thread 
27005            (Context class in System.Runtime.Remoting.Contexts),
27006          - Removed hack in Get/SetData and ExecuteAssembly.
27007         
27008         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
27009         the managed world to get control when a proxy is created.
27010
27011         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
27012         
27013 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
27014
27015         * icall.c
27016         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27017         Populate the codebase field as well.
27018
27019 2003-02-02  Martin Baulig  <martin@ximian.com>
27020
27021         * debug-mono-symfile.c
27022         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
27023         (mono_debug_symfile_add_method): Allow interncalls.
27024
27025 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27026
27027         * icall.c: throw parse exception if strtod fails or the string is empty.
27028
27029 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
27030
27031         * marshal.c: handle object type separately from defined
27032         class types.
27033
27034 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
27035
27036         * marshal.c: handle NATIVE_LPSTR for strings when it's
27037         explicitly specified.
27038
27039 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
27040
27041         * reflection.c, reflection.h, icall.c: setup the reflection
27042         handle cache for ModuleBuilders and AssemblyBuilders.
27043
27044 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
27045
27046         * reflection.c (reflection_methodbuilder_to_mono_method): set
27047         pinvoke flag
27048
27049 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27050
27051         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
27052
27053 2003-01-29  Dick Porter  <dick@ximian.com>
27054
27055         * threads.c: No need for the fake_thread kludge now that Thread
27056         doesn't run a class constructor
27057         
27058 2003-01-29  Dick Porter  <dick@ximian.com>
27059
27060         * threads.c: Use g_direct_hash instead of the rather bogus
27061         g_int_hash
27062
27063 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
27064
27065         * marshal.c (mono_marshal_get_native_wrapper): add check for null
27066         (fix pinvoke12.exe)
27067         (mono_marshal_get_struct_to_ptr): generate valid IL code
27068         (mono_marshal_get_ptr_to_struct): generate valid IL code
27069         (*): correctly set sig->pinvoke, we need to memdup the signature
27070         to do that
27071
27072 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
27073
27074         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
27075         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
27076
27077 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
27078
27079         * profiler.c: provide more callers information.
27080
27081 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
27082
27083         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
27084
27085         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
27086
27087         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
27088
27089 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27090
27091         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
27092         exception instead of going into an infinite loop on dates which it 
27093         can't yet handle.
27094
27095         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
27096         out-of-range exception if needed.
27097
27098         * class.c (mono_class_setup_vtable): allow a virtual method to provide
27099         an implementation for an interface method and to override an inherited
27100         method at the same time. 
27101         Imagine a scenario when a virtual method is used to override a
27102         virtual abstract method in a parent class, and this same method 
27103         provides an implementation for an method inherited from an interface. 
27104         In this case, the interface resolution code will set im->slot, which 
27105         means that the virtual method override pass will skip this method 
27106         which means a pointer to the abstract method inherited from the parent
27107         will remain in the vtable of this non-abstract class.
27108
27109         * class.c: (mono_class_setup_vtable): continue search for a real 
27110         method if only an abstract method is found.     
27111
27112 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
27113
27114         * reflection.c: add size to encoding for ByValStr and ByValArray
27115         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
27116
27117 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27118
27119         * class.c (mono_class_setup_vtable): pass the override info as an
27120         argument.
27121
27122         * class.c (mono_class_setup_vtable): set the slot of overriding methods
27123         correctly.
27124         
27125         * reflection.c (ensure_runtime_vtable); add support for method 
27126         overrides.
27127         
27128 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27129
27130         * reflection.c (resolution_scope_from_image): Hack to work to work with
27131         dynamic assemblies.
27132
27133         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
27134         added a 'force_ref' argument to force this function to allways return 
27135         a TypeRef. This is needed by mono_image_get_memberref_token ().
27136         
27137 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27138
27139         * reflection.c (mono_image_get_type_info): interfaces really don't have
27140         a parent.
27141
27142         * reflection.c (mono_image_basic_init): fill out missing fields of
27143         image structure.
27144
27145         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
27146         dynamic assemblies. This is required so dynamic assemblies show up in
27147         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
27148         Type::GetType() etc. This is consistent with MS behaviour.
27149
27150         * image.c image.h reflection.c: add newly created classes to the name 
27151         cache so mono_class_get () will find them.      
27152
27153 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27154
27155         First part of changes to get IKVM.NET running under mono.
27156         
27157         * appdomain.h, appdomain.c: added new function 
27158         mono_domain_try_type_resolve() which will emit TypeResolve events. 
27159         This function will call AppDomain::DoTypeResolve to do the actual work.
27160
27161         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
27162         moved existing code dealing with dynamic tokens to a new function 
27163         called mono_reflection_lookup_dynamic_token (). This function will 
27164         raise TypeResolve events when appropriate. Since reflection.c is not 
27165         part of libmetadata, a new hook function called 
27166         mono_lookup_dynamic_token() is added to class.c which will call this.
27167
27168         * assembly.h assembly.c: make the invoke_load_hook function public,
27169         so it can be called for dynamic assemblies.
27170
27171         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
27172
27173         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
27174         type isn't found.
27175
27176         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
27177         MonoGHashTable, since it contains pointers to objects which the GC 
27178         needs to track.
27179
27180         * assembly.c (search_loaded): remove unused variable.
27181         
27182 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
27183
27184         * object.c: fixed issue exposed by gcc-generated IL programs
27185         that use RVA data for pointers.
27186
27187 2003-01-25  Martin Baulig  <martin@ximian.com>
27188
27189         * threads.c (start_wrapper): Moved the initialization of
27190         `start_func' above the mono_new_thread_init() call to which we
27191         pass it as argument.
27192
27193 2003-01-24  Martin Baulig  <martin@ximian.com>
27194
27195         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
27196         the MonoThread pointer.
27197
27198 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
27199
27200         * icall.c: Rename `PowImpl' to Pow.
27201
27202 2003-01-23  Dick Porter  <dick@ximian.com>
27203
27204         * threads.c (start_wrapper): Create a Thread object if needed, so
27205         the Main() thread can do the class initialisation in a subthread
27206         that has been set up to allow managed code execution.
27207
27208         Pass the thread ID instead of the MonoThread pointer to the thread
27209         start and attach callbacks.  This change is required, because the
27210         jit thread start callback must be called _before_ the Thread
27211         object can be created.
27212         
27213         (mono_thread_init): Removed much object creation code that is no
27214         longer needed.  No managed code is called from here now.
27215
27216         * object.c (mono_runtime_exec_managed_code): Create a subthread
27217         for Main, and call back to the runtime to use it.
27218         Set the exit code when Main exits.
27219
27220         * gc.c: Make sure domain finalisation happens in a subthread.
27221         Re-enable threaded GC, fixing bug 31333 (again).
27222
27223         * environment.c: System.Environment internall calls (so far just
27224         ExitCode is here, the others are still in icall.c)
27225
27226         * appdomain.c (mono_runtime_cleanup): All threads running managed
27227         code should have finished before mono_runtime_cleanup() is
27228         reached, so no need to clean up threads.
27229
27230 2003-01-22  Martin Baulig  <martin@ximian.com>
27231
27232         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
27233         `gpointer func' arguments.      
27234         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
27235         but added `MonoThread *thread' argument.
27236         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
27237
27238         * threads.c (mono_new_thread_init): Added `gpointer func' argument
27239         and pass it to the mono_thread_start_cb callback.
27240         (mono_install_thread_callbacks): New public function to install a
27241         set of callbacks which are set by the debugger.
27242         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
27243
27244 2003-01-22  Martin Baulig  <martin@ximian.com>
27245
27246         * Makefile.am: Install debug-mono-symfile.h.
27247
27248 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
27249
27250         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
27251
27252 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
27253
27254         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
27255         * class.c (mono_ptr_class_get): correctly set access levels of pointers
27256         (mono_array_class_get): correctly set access levels of arrays
27257
27258 2003-01-20      Patrik Torstensson
27259         * image.h (MonoAssemblyName): changed major, minor, build, revision
27260         from signed to unsigned.
27261
27262 2003-01-20  sean kasun <skasun@azstarnet.com>
27263
27264         * reflection.c (load_cattr_value): Now this handles
27265         MONO_TYPE_SZARRAY.  Fixes bug #35629
27266
27267 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
27268
27269         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
27270         integer value
27271
27272 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27273
27274         * decimal.c: fixed bug #26056.
27275
27276 2003-01-17  Martin Baulig  <martin@ximian.com>
27277
27278         * gc.c: Raise an ExecutionEngineException instead of using g_error().
27279
27280 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27281
27282         * exception.[ch]:
27283         (mono_get_exception_type_initialization): new function.
27284
27285         * object.c: throw a TypeInitializationException when an exception is
27286         thrown invoking the class constructor.
27287
27288 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27289
27290         * reflection.c: fixed attribute reading.
27291
27292 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27293
27294         * icall.c:
27295         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
27296         provided, look for the type in the calling assembly and then in
27297         mscorlib; if the assembly name is provided, only try that one.
27298
27299 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
27300
27301         * object.c: register the vtable before there is a chance it's
27302         queried again recursively.
27303
27304 2003-01-13  Duncan Mak  <duncan@ximian.com>
27305
27306         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
27307         gc-internal.h. 
27308         
27309 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
27310
27311         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
27312
27313 2003-01-11  Martin Baulig  <martin@ximian.com>
27314
27315         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
27316         this to 20 for the release.
27317
27318 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
27319
27320         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
27321
27322         * loader.c (mono_method_get_marshal_info): bug fix
27323
27324         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
27325         structures with explicit layout
27326
27327 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
27328
27329         * profiler.c: made the output more readable (and sorted). 
27330         Added caller information for the allocation profiler.
27331
27332 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
27333
27334         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
27335
27336 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27337
27338         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
27339         to get value types.
27340         
27341 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
27342
27343         * object.c, profiler.h, profiler.c, profiler-private.h:
27344         Added object allocation profiler.
27345
27346 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
27347
27348         * reflection.h, reflection.c: handle global methods.
27349         Compress blob entries.
27350
27351 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
27352
27353         * marshal.c: fix compilation.
27354
27355 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
27356
27357         * loader.c (mono_method_get_marshal_info): impl.
27358
27359         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
27360
27361 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27362
27363         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
27364         for reference types.
27365
27366 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
27367
27368         * loader.c: fixed off by one error in loaded parameter names.
27369
27370 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
27371
27372         * marshal.c (mono_marshal_get_icall_wrapper): like
27373         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
27374         instead of a MonoMethod.
27375
27376 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27377
27378         * decimal.c: fixed bug #36537.
27379
27380 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
27381
27382         * marshal.c: throw a missing method exception if a
27383         P/Invoke method is not found.
27384
27385 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
27386
27387         * icall.c: allow a null this for constructors.
27388
27389 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
27390
27391         * icall.c: raise the proper exceptions if the arguments to the
27392         internal Invoke are incorrect.
27393
27394 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
27395
27396         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
27397
27398 2003-01-03  Martin Baulig  <martin@ximian.com>
27399
27400         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
27401
27402 2002-12-31  Martin Baulig  <martin@ximian.com>
27403
27404         * debug-mono-symfile.c: Completely rewrote the type section.
27405         Instead of using individual malloc()ed fields, we use one big
27406         continuous memory area and offsets into this area.
27407         See the comments in the source code for details.
27408
27409 2002-12-30  Martin Baulig  <martin@ximian.com>
27410
27411         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
27412
27413 2002-12-30  Martin Baulig  <martin@ximian.com>
27414
27415         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
27416         line number table in this data blob instead of using an external
27417         pointer.
27418
27419 2002-12-28  Martin Baulig  <martin@ximian.com>
27420
27421         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
27422
27423 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
27424
27425         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
27426         as a boxed return type.
27427
27428 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
27429
27430         * appdomain.c
27431         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
27432         g_build_filename to properly get separators on the filename created.
27433
27434         * object.h: Small change, introduce MonoMarshalByRefObject to
27435         track the layout of that structure in the C# universe as we make
27436         changes there.
27437
27438 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
27439
27440         * object.c: removed assert to allow static fields on interfaces.
27441         * loader.c: a TypeSpec may be used for any type, not just arrays.
27442
27443 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27444
27445         * class.c, class.h: added mono_class_array_element_size ().
27446         Ignore static methods in interfaces.
27447
27448 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27449
27450         * threads.c: fixed the build under cygwin.
27451
27452 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27453
27454         * reflection.c: handle nullref constants. Allocate keys for
27455         reflection handles with the GC.
27456
27457 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27458
27459         * threads.c, threads.h: added mono_thread_get_abort_signal()
27460         to get a suitable signal for thread abort.
27461
27462 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27463
27464         * metadata.c: fix handling of ExportedType table.
27465
27466 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27467
27468         * icall.c: added WriteWindowsDebugString internal call.
27469
27470 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27471
27472         * reflection.h: added fields to match C# implementation.
27473
27474 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27475
27476         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
27477
27478 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
27479
27480         * gc.h, gc-internal.h: Rename header for GC internal calls to
27481         gc-internal.h from gc.h as to not clash with Boehm GC having its
27482         header installed as <gc.h> in outside include paths.
27483         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
27484         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
27485
27486 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27487
27488         * icall.c: assign minor, build and revision in FillName.
27489
27490 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
27491
27492         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
27493         Added support for running code generated by Reflection.Emit.
27494
27495 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27496
27497         * appdomain.c: check for NULL argument in LoadFrom.
27498
27499 2002-12-10  Dick Porter  <dick@ximian.com>
27500
27501         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
27502
27503 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27504
27505         * appdomain.c: fix buglet when building exe file name.  Handle full
27506         assembly name (needed after latest changes to AssemblyName).
27507         * image.c:
27508         (mono_image_close): free some hashtables.
27509
27510 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
27511
27512         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
27513         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
27514         on some systems (redhat 7.3) 
27515
27516 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
27517
27518         * threads.c: delete the critical section of a sync block,
27519         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
27520
27521 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
27522
27523         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
27524
27525 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27526
27527         * appdomain.[ch]: handle the assembly preload event to try loading the
27528         assemblies using the paths we have in the current domain.
27529
27530         * assembly.[ch]: created an assembly preload hook that is called to try
27531         loading the assembly by other means that the ones provided here.
27532
27533         * domain.c: initialize the domain search path.
27534
27535         From now on, assemblies (TODO: except corlib and System) are loaded
27536         according to these rules when using mono_assembly_load ():
27537
27538                 1. It tries to load the assembly from the ApplicationBase
27539                 of the current domain appending .dll and .exe (TODO: have to
27540                 try loading from name/name.dll and name/name.exe).
27541
27542                 2. It tries the search path specified in PrivateBinPath for the
27543                 current domain (if any).
27544
27545                 3. Previous behavior.
27546
27547 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
27548
27549         * icall.c: implemented GetInterfaceMap() related icall.
27550         * domain.c, loader.h: load MethodInfo in mono_defaults.
27551
27552 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27553
27554         * gc.c: disable the finalizer thread for now, untill all the issues
27555         with it are resolved.
27556
27557 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27558
27559         * string-icalls.c: handle embedded nulls in string ctor when the
27560         length is specified.
27561
27562 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27563
27564         * class.c: look for explicit interface implementation in parent
27565         classes, too.
27566
27567 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
27568
27569         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
27570
27571 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27572
27573         * gc.c: protect handles with a critical section.
27574
27575 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27576
27577         * icall.c:
27578         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
27579         parameters. If no assembly specified, try getting the type from all
27580         the assemblies in the current domain, else, load the assembly and get
27581         the type from it.
27582
27583 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27584
27585         * marshal.c: applied patch from Aleksey Demakov that fixes
27586         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
27587
27588 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27589
27590         * icall.c: fixed get_location.
27591
27592 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
27593
27594         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
27595         declarations to make it work with older gcc. 
27596
27597         * loader.c (mono_get_method): set signature->pinvoke for native calls
27598
27599 2002-11-20  Dick Porter  <dick@ximian.com>
27600
27601         * threads.c (mono_thread_init): Set the main thread's handle
27602
27603 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27604
27605         * gc.c: allow compilation without GC support. Changed to match the
27606         mono coding style.
27607
27608 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27609
27610         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
27611
27612 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
27613
27614         * reflection.c: set a public key token on the core assemblies.
27615
27616 2002-11-18  Dick Porter  <dick@ximian.com>
27617
27618         * threads.c: Split out some thread initialisation so that other
27619         files can set the start callback function.
27620
27621         * gc.c: Run finalisers in a separate thread, to avoid stack
27622         overflow.  Fixes bug 31333.
27623
27624         * appdomain.c: Set up GC finalisation thread.
27625
27626         * reflection.c: 
27627         * object.c: 
27628         * domain.c: Use gc.h macros for GC_malloc
27629         
27630 2002-11-15  Dick Porter  <dick@ximian.com>
27631
27632         * threadpool.c: 
27633         * threads.c:
27634         * appdomain.c: Removed mono_runtime_init_with_attach(),
27635         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
27636         merging the extra parameter with the existing function.  Removed
27637         unneeded code in mono_thread_attach().
27638
27639 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
27640
27641         * image.c (mono_image_loaded_by_guid): a method to get loaded
27642         images by guid. 
27643         (load_metadata_ptrs): we store the guid as string.
27644
27645 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
27646
27647         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
27648
27649         * metadata.c (mono_guid_to_string): imported method form Zoltan
27650         Varga (slightly modified)
27651
27652         * assembly.c (mono_assembly_open): load precompiled code
27653
27654         * loader.h (MonoMethod): we store the method token for use in the
27655         aot compiler. 
27656
27657 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27658
27659         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
27660         the hook function called when an assembly is loaded.
27661         
27662         * domain.c: Modified file.
27663         (mono_domain_assembly_load): removed hash table insertion of assemblies.
27664
27665         Fixes bug #33196.
27666
27667 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
27668
27669         * reflection.c: Map PEFileKind to the value expected by the WinNT
27670         image loader. 
27671
27672 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27673
27674         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
27675         Read until the buffer is filled completely.
27676
27677 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27678
27679         * icall.c: implemented MonoType.InternalGetEvent ().
27680
27681 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27682
27683         * appdomain.c: implemented InitAppDomainSetup. Delayed
27684         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
27685         the entry_assembly.
27686
27687         * assembly.c: base_dir is now an absolute path ending with
27688         G_DIR_SEPARATOR.
27689
27690         * icall.c: modified get_location according to the above changes.
27691
27692         * object.c: init AppDomain.SetupInformation for the default domain after
27693         we have the entry assembly.
27694
27695         * domain.c: when unloading a domain, setup = NULL.
27696
27697 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
27698
27699         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
27700
27701 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
27702
27703         * object.h, object.c: introduced mono_object_get_virtual_method ()
27704         to lookup the method invoked on an object when a callvirt is done on
27705         a method.
27706         * icall.c: make MethodInfo::Invoke() always do a virtual call.
27707
27708 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27709
27710         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
27711         current domain when loaded an assembly and failed to load it.
27712
27713         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
27714
27715 2002-10-31  Dick Porter  <dick@ximian.com>
27716
27717         * icall.c: 
27718         * file-io.h: 
27719         * file-io.c: Return the error status in a parameter, as the
27720         GetLastError() value has long since been blown away if we try and
27721         look it up in a subsequent internal call invocation.  Delete the
27722         GetLastError() internal call, because it's useless.
27723
27724 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
27725
27726         * class.[ch]: added cast_class to fix bug 29517
27727
27728 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
27729
27730         * marshal.c: create valid IL code in the filter clause:
27731         the new JIT is less forgiving:-)
27732
27733 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27734
27735         * icall.c: removed get_property internal call.
27736
27737 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
27738
27739         * appdomain.h domain.c: Added an ID to appdomains.
27740         
27741         * threads.c threads.h icall.c: Implement icall
27742         Thread:GetDomainID(), and remove unused icall 
27743         CurrentThreadDomain_internal.
27744
27745 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27746
27747         * icall.c: Don't recurse through the base types in GetConstructor.
27748         Fixes bug #32063. 
27749
27750 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
27751
27752         * mempool.h, mempool.c: added mono_mempool_empty() and
27753         mono_mempool_stats().
27754
27755 2002-10-23  Dick Porter  <dick@ximian.com>
27756
27757         * file-io.c: 
27758         * file-io.h: 
27759         * icall.c: Added MonoIO.GetFileType internal call
27760
27761 2002-10-17  Dick Porter  <dick@ximian.com>
27762
27763         * appdomain.c (mono_runtime_cleanup): Don't signal the async
27764         delegate semaphore before waiting for all threads to finish,
27765         because new threads can also call async delegates.  Fixes bug
27766         32004.
27767
27768         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
27769         of 3 seconds, in case another async job is queued.  (This part is
27770         needed because the bug fix reintroduced the 3s exit lag.)  This
27771         makes the mono_runtime_shutdown flag superfluous.
27772
27773 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
27774
27775         * reflection.c: include ehader size in method section headers.
27776         Really check for suplicated modules entries.
27777
27778 2002-10-17  Martin Baulig  <martin@gnome.org>
27779
27780         * debug-mono-symfile.c: Added back support for locals.
27781
27782 2002-10-14  Martin Baulig  <martin@gnome.org>
27783
27784         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
27785         MONO_TYPE_VOID.
27786
27787 2002-10-14  Martin Baulig  <martin@gnome.org>
27788
27789         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
27790         mono_class_get() instead of looking in the class cache. 
27791
27792 2002-10-13  Martin Baulig  <martin@gnome.org>
27793
27794         * debug-mono-symfile.c: Set version number to 28, include the
27795         signature in method names.
27796
27797 2002-10-13  Martin Baulig  <martin@gnome.org>
27798
27799         * debug-mono-symfile.h: Set version number to 27.
27800
27801 2002-10-11  Martin Baulig  <martin@gnome.org>
27802
27803         * gc.c: Don't register/unregister NULL pointers as disappearing links.
27804
27805 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
27806
27807         * metadata.c, metadata.h: added helper function to allocate signatures.
27808
27809 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27810
27811         * icall.c: added internal call to get the location of machine.config.
27812
27813 2002-10-08  Martin Baulig  <martin@gnome.org>
27814
27815         * debug-mono-symfile.c: Ignore classes with a pending init for the
27816         moment.
27817
27818 2002-10-03  Dick Porter  <dick@ximian.com>
27819
27820         * threads.c: Freebsd pthread_t is a pointer
27821
27822 2002-10-03  Dick Porter  <dick@ximian.com>
27823
27824         * socket-io.c: Implemented GetHostName_internal
27825
27826 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27827
27828         * mono-config.c:
27829         (mono_config_parse_file): don't leak the text.
27830
27831 2002-10-02  Martin Baulig  <martin@gnome.org>
27832
27833         * debug-mono-symfile.c: Added support for methods.
27834
27835 2002-10-01  Martin Baulig  <martin@gnome.org>
27836
27837         * debug-mono-symfile.c: Don't emit methods and line numbers for
27838         the dynamic symbol file, just write the type table.  We can easily
27839         have an external helper program which creates a symbol file for an
27840         IL file.        
27841
27842 2002-10-01  Dick Porter  <dick@ximian.com>
27843
27844         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
27845         Only add the handle to the cleanup array when we're about to
27846         launch the thread.  Bug 31425 deadlocked when the test was run on
27847         mono under w32.
27848
27849 2002-10-01  Martin Baulig  <martin@gnome.org>
27850
27851         * debug-mono-symfile.c: Added support for properties.
27852
27853 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27854
27855         * reflection.c: unaligned store fix from Mark Crichton
27856         <crichton@gimp.org>.
27857
27858 2002-09-27  Martin Baulig  <martin@gnome.org>
27859
27860         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
27861         New interncall.
27862
27863 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
27864
27865         * assembly.h, assembly.c: use a sane API to hook into the assembly
27866         loading process instead of a useless special-purpouse hack
27867         (ngen needs a hook, too, for example).
27868
27869 2002-09-27  Dick Porter  <dick@ximian.com>
27870
27871         * threads.c (mono_thread_init): Call GetCurrentProcess() so
27872         io-layer can set up some process handle info.  Not needed on w32,
27873         but doesn't hurt either.
27874
27875         * process.c: Pass the program name in the second parameter to
27876         CreateProcess, so the path is searched.  Include the working
27877         directory. Implemented process name, process enumeration, and some
27878         process detail internal calls.
27879         
27880         * icall.c: Added internal calls for process lookup, and some
27881         process details
27882
27883 2002-09-26  Martin Baulig  <martin@gnome.org>
27884
27885         * assembly.c (mono_install_open_assembly_hook): New global
27886         function to install a function to be invoked each time a new
27887         assembly is loaded.
27888         (mono_assembly_open): Run this callback function if set.
27889
27890         * debug-mono-symfile.c: Put back line numbers for the dynamic
27891         symbol file and also record the .il file as source file.  This
27892         allows us to install the temporary symbol file as `file.dbg' just
27893         like a compiler-generated one.
27894
27895 2002-09-26  Nick Zigarovich <nick@chemlab.org>
27896
27897         * Corrected typo in gc.c (BOHEM vs BOEHM).
27898
27899 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27900
27901         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
27902         GetProperties. Also avoid calling g_slist_length in GetProperties and
27903         GetMethods.
27904
27905 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
27906
27907         * reflection.c: avoid unaligned stores (bug spotted by
27908         Mark Crichton  <crichton@gimp.org>).
27909
27910 2002-09-25  Martin Baulig  <martin@gnome.org>
27911
27912         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
27913         instead of guint64 for addresses and added prologue/epilogue info.
27914
27915 2002-09-25  Martin Baulig  <martin@gnome.org>
27916
27917         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
27918         store line number info.  For the dynamic symbol file, we only need
27919         to provide the JIT generated dynamic line number info for the dynamic
27920         symbol file.
27921
27922 2002-09-25  Martin Baulig  <martin@gnome.org>
27923
27924         * debug-mono-symfile.h: Incremented version number.
27925
27926 2002-09-24  Martin Baulig  <martin@gnome.org>
27927
27928         * class.c (mono_debugger_class_init_func): New global function
27929         pointer variable.
27930         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
27931         call it.
27932
27933         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
27934         function.  This is called via the mono_debugger_class_init_func
27935         hook to add all types to the dynamic type table.
27936         (ves_icall_MonoDebugger_GetType): New interncall to get a class
27937         from its metadata token.
27938
27939         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
27940         New interncall for the debugger.
27941
27942 2002-09-24  Nick Drochak <ndrochak@gol.com>
27943
27944         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
27945         before using it in case it is null.
27946         
27947 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27948
27949         * metadata.c: allow custom modifiers in local var signatures
27950         (bug spotted by Zoltan Varga).
27951
27952 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27953
27954         * class.c: deal with the <Module> class that may have a NULL vtable.
27955         Eliminate warnings.
27956
27957 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
27958
27959         * image.c, image.h: more strong name helpers.
27960         * monosn.c: more work: convert pem keys to cryptoapi format.
27961
27962 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
27963
27964         * string-icalls.c: speedup IndexOf.
27965
27966 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
27967
27968         * icall.c: updates from Zoltan.2.Varga@nokia.com.
27969
27970 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
27971
27972         * icall.c: cleanup: use mono_object_domain ().
27973
27974 2002-09-23  Martin Baulig  <martin@gnome.org>
27975
27976         * debug-mono-symfile.c: Improved type support.
27977
27978 2002-09-22  Martin Baulig  <martin@gnome.org>
27979
27980         * debug-mono-symfile.c: Added support for reference types and strings.
27981
27982 2002-09-22  Martin Baulig  <martin@gnome.org>
27983
27984         * debug-mono-symfile.c: Started to work on the type table.
27985
27986 2002-09-21  Martin Baulig  <martin@gnome.org>
27987
27988         * debug-mono-symfile.c: Largely reworked the symbol table format.
27989         The symbol table is now incrementally updated each time a new
27990         method is added.  We're now also using our own magic and version
27991         so that you don't need to recompile all your classes if the
27992         dynamic table changes.
27993         (mono_debug_update_mono_symbol_file): Removed.
27994         (mono_debug_symfile_add_method): New function to add a method.
27995
27996 2002-09-21  Martin Baulig  <martin@gnome.org>
27997
27998         * icall.c
27999         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
28000         New interncall.
28001
28002         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
28003         New interncall to get a method from its metadata token.
28004
28005 2002-09-21  Martin Baulig  <martin@gnome.org>
28006
28007         * debug-mono-symfile.c: Create type table.
28008
28009 2002-09-20  Martin Baulig  <martin@gnome.org>
28010
28011         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
28012
28013 2002-09-20  Martin Baulig  <martin@gnome.org>
28014
28015         * debug-mono-symfile.c: Provide information about params and locals.
28016
28017 2002-09-20  Martin Baulig  <martin@gnome.org>
28018
28019         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
28020         New interncall.
28021
28022         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
28023         interncall to get a method from its metadata token.
28024
28025 2002-09-20  Martin Baulig  <martin@gnome.org>
28026
28027         * debug-mono-symfile.c: Added a few checks for method->header
28028         being non-NULL.  This should never happen, but for the moment
28029         let's use a g_warning() rather than a g_assert().
28030
28031 2002-09-19  Mark Crichton  <crichton@gimp.org>
28032
28033         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
28034         even if support for it isn't present.  Added an #ifdef to fix this.
28035
28036         * socket-io.c: Added checks back for Solaris support.
28037
28038 2002-09-19  Martin Baulig  <martin@gnome.org>
28039
28040         * debug-mono-symfile.c (read_string, write_string): Reflect latest
28041         changes in the symbol file format.
28042
28043 2002-09-18  Martin Baulig  <martin@gnome.org>
28044
28045         * debug-mono-symfile.c: Set version number to 21.
28046
28047 2002-09-18  Dick Porter  <dick@ximian.com>
28048
28049         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
28050         on netbsd.  Fixes bug 30051.
28051
28052 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28053
28054         * reflection.c:
28055         (set_version_from_string): little fix.
28056
28057 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28058
28059         * monosn.c, Makefile.am: added strong name utility.
28060         * reflection.h, reflection.c: implemented delayed signing,
28061         locale, version and hash id assembly attributes.
28062
28063 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
28064
28065         * loader.c, metadata.c: load param attributes in signatures.
28066
28067 2002-09-16  Martin Baulig  <martin@gnome.org>
28068
28069         * debug-mono-symfile.c: Added string table with all method names.
28070
28071 2002-09-14  Martin Baulig  <martin@gnome.org>
28072
28073         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
28074         fast method lookup.
28075
28076 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28077
28078         * reflection.c: record the public key token of referenced assemblies.
28079
28080 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28081
28082         * image.c, image.h: added functions to get the strong name and the
28083         public key of an assembly.
28084         * pedump.c: use them.
28085
28086 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
28087
28088         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
28089
28090 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
28091
28092         * marshal.c (mono_marshal_get_managed_wrapper): Added
28093         MONO_TYPE_BOOLEAN 
28094
28095 2002-09-11  Martin Baulig  <martin@gnome.org>
28096
28097         * gc.c: Call GC_unregister_disappearing_link() on all links when
28098         finalizing them, this is necessary to aviod a crash in boehm's
28099         finalize handler.
28100
28101 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28102
28103         * gc.c: handle GetTarget for finalized objects spotted and fixed by
28104         nick@chemlab.org.
28105
28106 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
28107
28108         * icall.c: implemented MonoType::Module.
28109         * reflection.c, reflection.h: mono_module_get_object () from
28110         Tomi Pakarinen <tomi.pakarinen@welho.com>.
28111
28112 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
28113
28114         * icall.c: ignore overridden methods in GetMethods ().
28115         Fix for FieldInfo::SetValue().
28116         * object.c: handle float/double in runtime invoke.
28117
28118 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
28119
28120         * object.c: allow a constructor to be called again on an object.
28121
28122 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28123
28124         * class.h, class.c: move field layout code to it's own function and
28125         export it. Get an interface id earlier. Move fields in MonoClass
28126         so they are more cache friendly and align the bitfields.
28127         * loader.c: temporary handle get_param_names() for a runtime method.
28128         * reflection.c, reflection.h: more code to handle runtime creation of
28129         types.
28130
28131 2002-09-09  Martin Baulig  <martin@gnome.org>
28132
28133         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
28134         signature with the pinvoke field being set for the actual call.
28135
28136 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28137
28138         * icall.c: removed some unused icalls. Start of map of glib charsets
28139         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
28140
28141 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28142
28143         * debug-helpers.c: break infinite loop (found and fixed by
28144         Holger Arnold <harnold@gmx.de>).
28145
28146 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28147
28148         * icall.c: target may be null in create_delegate.
28149
28150 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28151
28152         * marshal.c: handle a boolean return type.
28153
28154 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28155
28156         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
28157
28158 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28159
28160         * gc.c: fix weakreferences.
28161
28162 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
28163
28164         * icall.c: added icall to get default codepage.
28165
28166 2002-09-03  Dick Porter  <dick@ximian.com>
28167
28168         * threads.h: 
28169         * threads.c: Use MonoThread instead of MonoObject where
28170         apropriate.
28171
28172         Store running thread objects in a hash table, so that we have all
28173         the info to hand when waiting for them to finish
28174         (means we don't need OpenThread() any more, so mingw builds should
28175         be fully functional again.)
28176
28177         * verify.c:
28178         * object.h: Added thread ID to MonoThread
28179
28180 2002-09-03  Martin Baulig  <martin@gnome.org>
28181
28182         * icall.c (System.Reflection.Assembly::get_location): New interncall.
28183
28184 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28185
28186         * icall.c: fixed leak in get_temp_path. Thanks lupus.
28187
28188 2002-09-03  Martin Baulig  <martin@gnome.org>
28189
28190         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
28191         argument to store the end address of the disassembled instruction.
28192
28193         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
28194         here from debug-symfile.h.
28195         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
28196         JIT into this struct.
28197         (MonoSymbolFile): Added `char *image_file' field.
28198         (MonoDebugGetMethodFunc): Removed.
28199         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
28200         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
28201         (mono_debug_find_method): New method.
28202
28203         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
28204         create a full symbol file.
28205         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
28206         and static symbol files.
28207         (mono_debug_find_method): The symbol file keeps an internal method hash,
28208         call this to get a MonoDebugMethodInfo from a MonoMethod.
28209
28210         * debug-symfile.[ch]: Removed.
28211
28212 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
28213
28214         * image.c (do_mono_image_open): Remove linker version check.
28215
28216 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
28217
28218         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
28219         wrappers for instance methods.
28220         
28221 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28222
28223         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
28224
28225 2002-08-28  Dick Porter  <dick@ximian.com>
28226
28227         * Makefile.am: Export HOST_CC for w32 builds
28228
28229 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
28230
28231         * file-io.c process.c: MonoString are null terminated, no
28232         need for mono_string_to_utf16() anymore.
28233
28234 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28235
28236         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
28237
28238 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
28239
28240         * icall.c, reflection.h: speedup System.MonoType.
28241
28242 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
28243
28244         * reflection.c: allow null as the value of a string argument in
28245         custom attributes constructors.
28246
28247 2002-08-27  Martin Baulig  <martin@gnome.org>
28248
28249         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
28250         `trampoline_address' field.
28251
28252 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
28253
28254         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
28255         check (fixes bug #29486) 
28256
28257 2002-08-27  Martin Baulig  <martin@gnome.org>
28258
28259         * debug-mono-symfile.c: Changed the file format in a way that allows us
28260         open it read-only and to use a specially malloced area for all the
28261         dynamic data.  We can now also generate a symbol file on-the-fly if we're
28262         debugging IL code and there is no MCS generated symbol file for it.
28263
28264 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
28265
28266         * object.c: added a define for a good string and array
28267         creation speedup (not enabled by default because we need to deal with
28268         the synch stuff).
28269
28270 2002-08-26  Martin Baulig  <martin@gnome.org>
28271
28272         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
28273         function to create a dynamic symbol file.  This is used by the
28274         debugger to create a symbol file for IL code on-the-fly.
28275
28276 2002-08-26  Martin Baulig  <martin@gnome.org>
28277
28278         * loader.c (mono_lookup_pinvoke_call): Include the error message
28279         from g_module_error() in the error message.
28280
28281 2002-08-24  Martin Baulig  <martin@gnome.org>
28282
28283         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
28284         function to update the symbol file.  The symbol file is mmap()ed
28285         writable, but private.  This allows us to install the symbol file
28286         together with the assembly.
28287
28288 2002-08-24  Martin Baulig  <martin@gnome.org>
28289
28290         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
28291         but they can read the new symbol file format which mcs is now creating.
28292
28293         * debug-symfile.c (mono_debug_find_source_location): Moved to
28294         debug-mono-symfile.c; this is now operating on the new symbol file.
28295
28296 2002-08-23  Martin Baulig  <martin@gnome.org>
28297
28298         * debug-helpers.c (mono_method_desc_from_method): New function to get
28299         a MonoMethodDesc from a MonoMethod.
28300
28301 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28302
28303         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
28304         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
28305
28306 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
28307
28308         * string-icalls.[ch]: make helper methods static.
28309
28310 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28311
28312         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
28313         types to it and to SetValueInternal.
28314
28315         * object.c: Moved handle_enum label to its proper place. This was the
28316         f... bug! ;-)
28317
28318         This time i compiled mcs and gtk-sharp and they both work.
28319
28320 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28321
28322         * icall.c: reverted partially my previous patch until 
28323         object.c:set_value handles enums correcly.
28324
28325 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28326
28327         * icall.c:
28328         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
28329         (ves_icall_System_Environment_get_MachineName): removed warning when
28330         compiling under cygwin.
28331
28332 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
28333
28334         * object.c: fixed field_get_value() for reference types.
28335
28336 2002-08-22  Dick Porter  <dick@ximian.com>
28337
28338         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
28339         Don't free a buffer while it's still needed.  Patch from Jonathan
28340         Liger <Jonathan.liger@wanadoo.fr>
28341
28342 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
28343
28344         * icall.c (ves_icall_System_Environment_get_Platform): Add new
28345         internal call.
28346
28347 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
28348
28349         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
28350         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
28351
28352         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
28353         we call unmanaged code which throws exceptions.
28354
28355 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28356
28357         * appdomain.h: added per-domain entry_assembly.
28358         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
28359         arguments.
28360         * icall.c: Assembly::GetEntryAssembly icall.
28361         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
28362         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
28363
28364 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28365
28366         * appdomain.h, gc.c: added mono_domain_finalize ().
28367
28368 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28369
28370         * object.c:
28371         (mono_print_unhandled_exception): changed g_warning by g_printerr
28372         because g_log has a 1024 characters limit (yeah, i got a big stack
28373         trace). Don't print exception name, that should be in ToString 
28374         returned string.
28375
28376 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28377
28378         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
28379         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
28380
28381 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28382
28383         * object.c:
28384         (mono_print_unhandled_exception): after previous commit, i realized
28385         that MS calls ToString on the exception. I changed this function to
28386         do that. This way we get stack_trace for free.
28387
28388 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28389
28390         * object.c:
28391         (mono_print_unhandled_exception): invoke Message property instead of
28392         getting 'message' field from Exception. Don't allocate memory for
28393         'trace' and 'message' if not needed.
28394
28395 2002-08-18  Dick Porter  <dick@ximian.com>
28396
28397         * unicode.c: Fix asserts to match Encoder.cs checks
28398
28399 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28400
28401         * marshal.c: fix unaligned store issue and a few wrong
28402         opcode argument types.
28403
28404 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28405
28406         * icall.c: added GetUninitializedObjectInternal internal call.
28407
28408 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
28409
28410         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
28411         to the right domain.
28412
28413 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
28414
28415         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
28416
28417         * class.c (class_compute_field_layout): set blittable to false for Strings
28418
28419         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
28420
28421 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28422
28423         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
28424         first chunk of code to create types at runtime. Code to
28425         handle ReflectedType/DeclaringType. Make reflection handles
28426         domain specific.
28427
28428 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
28429
28430         * class.c: set correct name in arrays.
28431
28432 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
28433
28434         * appdomain.c (mono_domain_transfer_object): make it work with
28435         valuetypes. bug fixes.
28436
28437 2002-08-12  Dick Porter  <dick@ximian.com>
28438
28439         * object.h: Rename some parameters to avoid c++ keywords (Patch
28440         from Joseph Wenninger <kde@jowenn.at>)
28441
28442 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
28443
28444         * icall.c: added icall to implement Assembly.GetFile*.
28445
28446 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28447
28448         * reflection.h, reflection.c: code to embed managed resources.
28449
28450 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28451
28452         * class.c: move all the type size stuff into
28453         class_compute_field_layout().
28454
28455 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28456
28457         * class.c: ensure enums have always the correct instance size.
28458         * unicode.c: remove wrong assert.
28459
28460 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
28461
28462         * assembly.c: fix mem corruption issue.
28463         * image.h, image.c: added mono_image_get_resource () to access
28464         managed resources.
28465         * icall.c: implemented Assembly.EntryPoint property and some
28466         Managed Resources related internalcalls.
28467
28468
28469 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28470
28471         * image.c, image.h: impemented mono_image_get_entry_point ().
28472         * appdomain.c: use mono_image_get_entry_point.
28473
28474 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28475
28476         * reflection.c: support the object type argument when loading
28477         custom attributes.
28478
28479 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
28480
28481         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
28482         String as return type.
28483
28484 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
28485
28486         * reflection.c: fix encoding of named args for custom attrs to match
28487         the ms implementation. Read them back when instantiating custom
28488         attributes.
28489
28490 2002-08-02  Radek Doulik  <rodo@ximian.com>
28491
28492         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
28493         by Dietmar as quick fix
28494         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
28495         16 as stack size, used on more places as quick fix before Dietmar
28496         will fix it properly
28497
28498 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28499
28500         * object.h, object.c: added accessors for fields and properties.
28501
28502 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28503
28504         * class.c, class.h: made mono_class_get_field_from_name ()
28505         loop on parent types.
28506         Added mono_class_get_property_from_name ().
28507
28508 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
28509
28510         * class.c, class.h: move the code to setup the type vtable in its own
28511         function so that it can be reused also for types created at runtime.
28512         Eliminate the "class" identifier from the header file.
28513         * reflection.c: setup the vtable for enums so that we can create
28514         objects for use in SetConstant ().
28515
28516 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
28517
28518         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
28519         instead of the delegate itself as this pointer (bug #28383)
28520
28521 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
28522
28523         * marshal.c (mono_marshal_get_managed_wrapper): added return type
28524         conversions.
28525
28526 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28527
28528         * loader.c: don't set the pinvoke bit on icalls.
28529
28530 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
28531
28532         * debug-helpers.c (mono_method_full_name): only print a number to
28533         indicate wrapper type (so that the output is more readable in traces).
28534
28535 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
28536
28537         * class.c (mono_class_init): include method override patch from Paolo
28538
28539 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
28540
28541         * icall.c: fixed GetTypeCode().
28542
28543 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
28544
28545         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
28546         use real delegate invoke function to make it work with multicast
28547         delegates (fix bug# 28291).
28548
28549 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
28550
28551         * object.c: load constant strings.
28552
28553 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28554
28555         * reflection.c: no magic numbers.
28556         * tabledefs.h: security action enum.
28557
28558 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
28559
28560         * assembly.c: fix possible memory corruption.
28561
28562 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
28563
28564         * reflection.h, reflection.c: added support for linking resources.
28565         * verify.c: check we have an updated corlib.
28566
28567 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
28568
28569         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
28570         string arrays.
28571         (mono_marshal_string_array): null terminate unmanaged string arrays.
28572         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
28573
28574 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
28575
28576         * icall.c: Type.GetType () can now return also types from the
28577         calling assembly.
28578
28579 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
28580
28581         * loader.h, loader.c: stack walking support.
28582         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
28583         GetCallingAssembly.
28584
28585 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
28586
28587         * marshal.c: added optimisations for blittable types 
28588
28589         * class.c (mono_array_class_get): do not set blittable attribute on arrays
28590         (mono_class_setup_mono_type): set blittable attribute for single
28591         and double.
28592
28593         * marshal.c (mono_string_utf8_to_builder): impl.
28594         (mono_string_builder_to_utf8): impl.
28595         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
28596
28597 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
28598
28599         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
28600         (mono_marshal_get_managed_wrapper): impl. byref types
28601
28602 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28603
28604         * icall.c:
28605         (search_method): don't display debug message. 
28606
28607 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
28608
28609         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
28610
28611 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
28612
28613         * appdomain.c: set the missing filename when throwing exception.
28614
28615 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
28616
28617         * metadata.c (mono_type_size): code cleanup
28618         (mono_type_stack_size): removed some test code
28619
28620 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
28621
28622         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
28623         mono_get_exception_file_not_found now.
28624
28625         * exception.c (mono_exception_from_name_two_strings): New version
28626         that will call a constructor with two string arguments. 
28627         (mono_get_exception_file_not_found): New helper routine, used to
28628         report file-not-found errors.
28629
28630 2002-07-20  Dick Porter  <dick@ximian.com>
28631
28632         * process.h:
28633         * process.c: Pass file handles to CreateProcess
28634         
28635         * icall.c:
28636         * file-io.h:
28637         * file-io.c: Implemented CreatePipe
28638
28639 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
28640
28641         * metadata.c (mono_get_param_info): set alignment for value types
28642
28643 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28644
28645         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
28646         Constify mono_domain_assembly_open().
28647         * loader.c: handle null namespace in icalls.
28648
28649 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
28650
28651         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
28652         (emit_str_to_ptr_conv): marshal object as structs
28653
28654         * metadata.c (mono_type_to_unmanaged): marshal object as structs
28655
28656         * marshal.c (mono_marshal_get_runtime_invoke): support value types
28657
28658 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
28659
28660         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
28661         (mono_marshal_get_native_wrapper): we an now return value types
28662
28663 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28664
28665         * verify.c: more checks implemented.
28666
28667 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
28668
28669         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
28670         (fix bug #27695)
28671         (mono_marshal_get_native_wrapper): allow byref arguments
28672         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
28673         impl. PtrToStringXXX methods
28674         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
28675         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
28676         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
28677         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
28678         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
28679
28680 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28681
28682         * reflection.c: fix buglet in parsing an assembly name.
28683
28684 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
28685
28686         * marshal.c (emit_ptr_to_str_conv): first impl.
28687
28688 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
28689
28690         * object.c, class.h: cache the vtable in the class as suggested by
28691         vargaz@freemail.hu (Zoltan Varga).
28692
28693 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28694
28695         * class.h, loader.c: added mono_field_from_token().
28696         * verify.c: first cut of type checking code.
28697
28698 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
28699
28700         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
28701
28702 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
28703
28704         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
28705         (fix bug #27782)
28706         (mono_marshal_get_remoting_invoke): impl.
28707         (mono_delegate_begin_invoke): impl.
28708         (mono_mb_emit_save_args): impl.
28709         (mono_delegate_end_invoke): impl.
28710         (mono_marshal_get_delegate_begin_invoke):
28711         (mono_marshal_get_delegate_end_invoke):
28712         (mono_marshal_get_delegate_invoke): generate a special name for
28713         those methods (including the signature) and associate them whith
28714         the delegate class. 
28715
28716 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
28717
28718         * reflection.[ch]: 
28719         (mono_reflection_type_from_name): now it has a MonoImage parameter
28720         which is used as the default image to search the type in. If the image
28721         is NULL or getting the type from it fails, it defaults to corlib.
28722
28723         * icall.c: changed 1 call to mono_reflection_type_from_name to match
28724         new parameter.
28725
28726 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28727
28728         * reflection.c: update the parameter table index.
28729
28730 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
28731
28732         * domain.c: don't include the mark byte in the string hash.
28733
28734 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
28735
28736         * icall.cs: icall for Type.GetTypeCode ().
28737         * verify: a couple of fixes and disabled local initialization checks.
28738
28739 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
28740
28741         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
28742
28743         * debug-helpers.c (mono_method_full_name): print the type of the
28744         runtime wrapper
28745
28746         * metadata.c (mono_signature_hash): a hash function for signatures
28747         (mono_signature_hash): better hash algorithm
28748
28749         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
28750
28751         * debug-helpers.c (mono_method_full_name): this can now generate
28752         method names with signatures
28753
28754         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
28755         method dont have this pointers.
28756
28757 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
28758
28759         * reflection.c: fixup typebuilder tokens.
28760         * image.c: fix buglet.
28761         * marshal.h: remove whitespace.
28762         * metadata.h, metadata.c: reinstate code that was removed.
28763         * verify.c: handle catch directives and fix another couple of bugs.
28764
28765 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
28766
28767         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
28768         (mono_marshal_get_native_wrapper): make it comp. with the old code
28769         (mono_marshal_get_native_wrapper): support boolean
28770         (mono_marshal_get_managed_wrapper): support more types
28771
28772 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
28773
28774         * class.c (class_compute_field_layout): compute class->blittable attribute.
28775
28776 2002-07-09  Dick Porter  <dick@ximian.com>
28777
28778         * threads.c: Make the thread cleaning up cope with threads that
28779         call ExitThread()
28780
28781 2002-07-08  Radek Doulik  <rodo@ximian.com>
28782
28783         * reflection.c (method_encode_code): use non-translated values to
28784         compute finally_start, this fixes exception handling on ppc, yay!
28785
28786         * decimal.h (struct signscale): fix endianess
28787
28788 2002-07-07  Radek Doulik  <rodo@ximian.com>
28789
28790         * reflection.c: swap box_val and not val
28791
28792 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
28793
28794         * reflection.c, reflection.h: handle full assembly info in type name.
28795         Handle Type arguments when loading custom attributes.
28796         * icall.c: updated to use new mono_reflection_type_from_name () method.
28797
28798 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28799
28800         * loader.c:
28801         (method_from_memberref): also print assembly name when method not found.
28802
28803 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28804
28805         * icall.c:
28806         (ves_icall_TypeGetProperties): fixed bug #27473. 
28807
28808 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28809
28810         * reflection.c: display image name and token when cannot find the
28811         .ctor for an attribute.
28812
28813 2002-07-05  Martin Baulig  <martin@gnome.org>
28814
28815         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
28816
28817 2002-07-04  Dick Porter  <dick@ximian.com>
28818
28819         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
28820         compile on mingw.  This will cause mingw builds to not wait for
28821         subthreads to terminate after the main thread does.  I've lodged a
28822         bug with the mingw developers for them to wrap OpenThread().
28823
28824 2002-07-03  Dick Porter  <dick@ximian.com>
28825
28826         * threads.c: Store thread IDs instead of handles, because
28827         GetCurrentThread() returns a pseudohandle and therefore stores
28828         useless values.  mono_thread_cleanup() continues checking the
28829         array of threads until it is empty, to cope with subthreads
28830         spawning new threads after the main thread has finished.
28831
28832         * profiler.h:
28833         * profiler.c:
28834         * profiler-private.h: Pass the thread ID to thread profiler
28835         functions, instead of a handle
28836
28837 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
28838
28839         * verify.c: fixes to make it more usable.
28840         * pedump.c: added --verify code to verify IL code in an assembly.
28841
28842 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28843
28844         * reflection.c: turn errors into warnings to allow compiling corlib.
28845
28846 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
28847
28848         * reflection.c: add special cases to compile corlib.
28849
28850 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28851
28852         * reflection.c: handle properties with only a set method.
28853
28854 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
28855
28856         * opcodes.h: add enum with opcodes in opval order.
28857
28858 2002-07-01  Dick Porter  <dick@ximian.com>
28859         
28860         * object.h:
28861         * object.c (mono_runtime_run_main): Removed unneeded argument
28862
28863 2002-06-28  Martin Baulig  <martin@gnome.org>
28864
28865         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
28866
28867 2002-06-27  Dick Porter  <dick@ximian.com>
28868
28869         * threads.c: Store the handle in both the parent thread and in the
28870         subthread, to minimise the time between starting a new thread and
28871         storing its ID.
28872
28873 2002-06-26  Dick Porter  <dick@ximian.com>
28874
28875         * appdomain.c (mono_runtime_cleanup): Close the socket library
28876         after all the threads have finished, not before
28877
28878 2002-06-26  Martin Baulig  <martin@gnome.org>
28879
28880         * debug-symfile.c (mono_debug_find_source_location): Added
28881         `guint32 *line_number' argument.  If it's not NULL, store the line number
28882         there and return the file name without the line number.
28883
28884 2002-06-25  Dick Porter  <dick@ximian.com>
28885
28886         * icall.c:
28887         * process.h:
28888         * process.c: Process forking and other support functions
28889
28890 2002-06-25  Dick Porter  <dick@ximian.com>
28891
28892         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
28893         things dont happen when the image is closed.
28894         (mono_image_lookup_resource): Walk the resource section looking
28895         for a particular entry
28896
28897         * cil-coff.h: PE resource section decoding
28898
28899 2002-06-25  Dick Porter  <dick@ximian.com>
28900         
28901         * assembly.h:
28902         * assembly.c: 
28903         (mono_assembly_foreach): Accessor functions to walk the list of
28904         loaded assemblies
28905         (mono_assembly_set_main):
28906         (mono_assembly_get_main): Process methods need to know which
28907         assembly is the "main" one
28908
28909         * object.c (mono_runtime_run_main): Record the main assembly
28910
28911         * debug-helpers.c: Fix typo
28912
28913 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
28914
28915         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
28916         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
28917
28918 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
28919
28920         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
28921
28922 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
28923
28924         * image.c (do_mono_image_open): Initialize reference count,
28925         otherwise we leak the MonoImage.
28926
28927 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
28928
28929         * reflection.c: small tweak to handle self-hosting.
28930
28931 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28932
28933         * reflection.c: fix type name parse code.
28934
28935 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
28936
28937         * reflection.c: break out of the loop.
28938         * image.c: special case corlib.
28939
28940 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28941
28942         * reflection.c: add all the custom attrs at the end to ensure the
28943         ctors have been properly initialized when the attributes are defined
28944         in the current assembly.
28945
28946 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28947
28948         * reflection.c: handle correctly multiple-nested types.
28949
28950 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
28951
28952         * row-indexes.h: fix typos.
28953         * reflection.c: adjust for typos and fix method_def_or_ref
28954         encoding in MethodImpl table.
28955
28956 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
28957
28958         * reflection.c: fix entry point patching (thanks Serge!).
28959
28960 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
28961
28962         * verify.c: add check for System.Exception
28963
28964 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
28965
28966         * image.c, class.c: minifix for code just c&p'ed.
28967         * reflection.c: warning fix.
28968         * object.h, loader.h, domain.c: load also StringBuilder.
28969
28970 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28971
28972         * marshal.h, marshal.c: some support code to handle complex marshaling.
28973
28974 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28975
28976         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
28977         Better signatures with vtable error dump.
28978
28979 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
28980
28981         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
28982
28983 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
28984
28985         * icall.c (ves_icall_Type_GetField): impl.
28986
28987 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28988
28989         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
28990         to retrieve a marshal description blob for a field or param.
28991
28992 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28993
28994         * reflection.h, reflection.c: change order of nested type emission
28995         to avoid table corruption. The NestedTypes table is sorted.
28996         * icall.c: change order of GetConstructor results to workaround mcs bug.
28997
28998 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
28999
29000         * reflection.h, reflection.c: handle field and param marshal
29001         information.
29002
29003 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29004
29005         * icall.c, marshal.c marshal.h: more Marshal class implementation.
29006
29007 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29008
29009         * reflection.c: fix call convention.
29010
29011 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29012
29013         * reflection.h, reflection.c: mono_image_get_memberref_token()
29014         takes a type instead of a class, now. Added
29015         mono_image_get_array_token() to create tokens for the special
29016         multi-dim array methods.
29017
29018 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
29019
29020         * assembly.c: handle modules (no assembly table). Split
29021         loading references in its own function.
29022         * class.c: handle moduleref resolution scope.
29023         * image.c, image.h: cache module name in image.
29024
29025 2002-06-07  Martin Baulig  <martin@gnome.org>
29026
29027         * reflection.c (mono_image_get_type_info): Only add a class layout entry
29028         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
29029
29030 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29031
29032         * icall.c: more signature fixes that used uint instead of int.
29033
29034 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29035
29036         * reflection.c: fixed signature of field refs.
29037
29038 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29039
29040         * class.c, reflection.c: handle typerefs of nested types
29041         (both on read and when writing files).
29042
29043 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
29044
29045         * icall.c: fix method signatures that tried to workaround the previous
29046         typo, d'oh!
29047
29048 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29049
29050         * debug-helpers.c: fix typo.
29051
29052 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
29053
29054         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
29055         rewrote the PE/COFF writing code (our programs are understood by the
29056         ms runtime, now).
29057
29058 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
29059
29060         * gc.c, gc.h, icall.c: weakreference support.
29061
29062 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29063
29064         * Makefile.am, mono-config.c: use $(sysconfdir).
29065
29066 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
29067
29068         * icall.c: changed default precision of Double.ToString() to 15.
29069         Fixed memory leak. Unified with Single.ToString.
29070
29071 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
29072
29073         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
29074
29075 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
29076
29077         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
29078         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
29079         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
29080         and myself.
29081
29082 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29083
29084         * debug-symfile.c, sysmath.c: yet more compilation fixes.
29085
29086 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29087
29088         * reflection.c, socket-io.c: more compilation fixes.
29089
29090 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29091
29092         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
29093         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
29094         unicode.c: warning and compiler compatibility fixes.
29095
29096 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29097
29098         * class.h, metadata.c: fixed warnings/compilation errors.
29099
29100 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29101
29102         * Makefile.am, mono-config.c, mono-config.h: configuration file
29103         support routines.
29104         * loader.c, loader.h: make Dll mapping configurable at runtime in the
29105         config file. Export methods to insert and lookup mappings.
29106
29107 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
29108
29109         * reflection.c: handle types and boxed objects in custom attr
29110         constructors.
29111
29112 2002-05-30  Martin Baulig  <martin@gnome.org>
29113
29114         * debug-symfile.c
29115         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
29116
29117 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
29118
29119         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
29120         to lookup the implmap row for a P/Invoke method.
29121         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
29122         P/Invoke method from the runtime on an as needed basis.
29123
29124 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
29125
29126         * metadata.c (mono_metadata_parse_signature): impl.
29127
29128 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29129
29130         * class.c: handle .pack directive.
29131
29132 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
29133
29134         * object.c: initialize static fields with RVA data.
29135
29136 2002-05-25  Martin Baulig  <martin@gnome.org>
29137
29138         * debug-symfile.c
29139         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
29140
29141 2002-05-24  Martin Baulig  <martin@gnome.org>
29142
29143         * debug-symfile.c
29144         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
29145         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
29146         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
29147
29148 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
29149
29150         * object.c: special case string ctros in invoke.
29151         * gc.c: silly whitespace changes.
29152
29153 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
29154
29155         * threadpool.[ch]: impl. a threadpool that can
29156         be used by mint and mono.
29157
29158 2002-05-22  Martin Baulig  <martin@gnome.org>
29159
29160         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
29161         The first argument is now a `MonoReflectionModuleBuilder *', the return
29162         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
29163         `methods' field to get the method builder.  The `token' argument is the
29164         unfixed token.
29165
29166         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
29167         invalid characters instead of g_assert_not_reached()ing.  This seems
29168         to be the behaviour of mscorlib.
29169
29170 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
29171
29172         * object.c (mono_runtime_invoke_array): applied patch from Rachel
29173         Hestilow to fix bug #25104
29174
29175 2002-05-21  Martin Baulig  <martin@gnome.org>
29176
29177         * debug-symfile.c (mono_debug_find_source_location): New function.
29178         Looks up an IL offset in the line number table and returns the source
29179         location as a string.
29180
29181 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29182
29183         * icall.c:
29184         (mono_double_ToStringImpl): changed %f by %g until we have something
29185         better.
29186
29187 2002-05-21  Nick Drochak  <ndrochak@gol.com>
29188
29189         * icall.c : Use different name for Math.Pow's icall.  Needed to check
29190         parameters first in C#.
29191
29192 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29193
29194         * icall.c, reflection.h: added icall to get info about an event.
29195
29196 2002-05-20  Radek Doulik  <rodo@ximian.com>
29197
29198         * object.c (mono_value_box): don't use memcpy for boxing on BIG
29199         endian
29200         (mono_value_box): don't use memcpy for small sizes on
29201         architectures with unaligned access
29202
29203 2002-05-20  Martin Baulig  <martin@gnome.org>
29204
29205         * reflection.c (mono_reflection_setup_internal_class): Don't crash
29206         if `tb->parent == NULL'.
29207         (mono_reflection_create_internal_class): New function.  This is
29208         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
29209         for enum types.
29210
29211         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
29212         New interncall.
29213
29214 2002-05-19  Martin Baulig  <martin@gnome.org>
29215
29216         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
29217         argument to get the length, don't default to the array length.
29218
29219 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
29220
29221         * assembly.c (mono_assembly_setrootdir): New function used to
29222         override the MONO_ASSEMBLIES directory.
29223
29224 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29225
29226         * icall.c: ValueType_GetHashCode() initialize local var.
29227
29228 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29229
29230         * reflection.c: sort custom attributes table.
29231
29232 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
29233
29234         * reflection.c: support named args in custom attributes (write support).
29235
29236 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
29237
29238         * reflection.c: fix finally position calculation.
29239
29240 2002-05-15  Radek Doulik  <rodo@ximian.com>
29241
29242         * reflection.c: fixed endianess at many places
29243
29244         * icall.c (ves_icall_InitializeArray): comment out debug msg
29245
29246 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
29247
29248         * object.c (mono_unhandled_exception): new function to handle
29249         unhandled exceptions.
29250         (mono_unhandled_exception): call the UnhandledException event.
29251         (mono_runtime_delegate_invoke): impl.
29252
29253 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
29254
29255         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
29256         returns the RVA, not the direct pointer to the data. Handle the case
29257         when the class size is fixed.
29258
29259 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
29260
29261         * reflection.c: fix some endianess issues.
29262
29263 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
29264
29265         * object.c (mono_runtime_invoke): is now able to catch exceptions.
29266
29267         * threads.c (mono_thread_init): added a callback which is invoked
29268         at thread start.
29269
29270 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
29271         
29272         * icall.c: make GetHashCode return non-negative values.
29273
29274 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
29275
29276         * object.c, icall.c, gc.c: revert to address-based hashcode.
29277
29278 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
29279
29280         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
29281
29282 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29283
29284         * icall.c, class.c: special case <Module>.
29285
29286 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
29287
29288         * icall.c: fix bug in GetNow().
29289
29290 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
29291
29292         * object.c (mono_runtime_class_init): make sure that we call all
29293         static class constructors.
29294
29295 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
29296
29297         * reflection.c: sort methodsemantics table.
29298
29299 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
29300
29301         * reflection.h, reflection.c: honour init locals setting.
29302
29303 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
29304
29305         * icall.c: copied Double ToStringImpl for Single ToStringImpl
29306
29307 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
29308
29309         * reflection.c: support ContructorBuilders in attribute blob creation.
29310
29311 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29312
29313         * reflection.c: some changes to build a binary that can be run
29314         directly in windows.
29315
29316 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
29317
29318         * loader.c: print a big message when an icall can't be found.
29319
29320 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29321
29322         * string-icalls.c: fix bug 24248.
29323
29324 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
29325
29326         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
29327         icall.c, reflection.h: separate assembly loading by pathname and by
29328         assembly name. Use the MONO_PATH env var to search for assemblies.
29329
29330 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29331
29332         * assembly.c, image.h: add some support for assemblies
29333         with multiple modules.
29334         * class.c, class.h: export mono_class_from_typeref().
29335         * loader.c: remove duplicated code and use mono_class_from_typeref(),
29336         instead.
29337
29338 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29339
29340         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
29341         documentation says (the ECMA one is correct).
29342
29343 2002-05-02  Dick Porter  <dick@ximian.com>
29344
29345         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
29346         Don't name the synchronisation mutex.
29347
29348 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
29349
29350         * rand.c
29351         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
29352         Make the prototypes match.
29353         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
29354         Same.
29355
29356         * icall.c
29357         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
29358         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
29359         all systems have tm.tm_zone, so use strftime() with %Z to print
29360         the timezone abreviation into a temp string.
29361
29362         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
29363         rather than mono_array_addr() on a MonoString on Big Endian
29364         machines.
29365
29366 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
29367
29368         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
29369         fix bug 24041
29370
29371 2002-04-30  Dick Porter  <dick@ximian.com>
29372
29373         * socket-io.c: Cope with SOCKET being an integer rather than a
29374         pointer now.
29375
29376         * threads.c: Added Thread_free_internal, to deal with thread
29377         handle cleanup.  Moved calls to handle_store() and handle_remove()
29378         to start_wrapper(), so each can only be called once.  Allocate
29379         synchronisation blocks with GC_malloc(), and use GC finalisation
29380         to close the handles.
29381
29382         * icall.c: added System.Threading.Thread::Thread_free_internal
29383
29384 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
29385
29386         * icall.c: support Environment.Exit, CommandLineArgs().
29387
29388 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29389
29390         * object.c, object.h: added mono_runtime_run_main () and
29391         mono_runtime_get_main_args () for use in System.Environment.
29392
29393 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29394
29395         * gc.c: fix thinko, enable actual finalization since the jit is now
29396         fixed.
29397
29398 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29399
29400         * gc.c, object.c: take into account that an object may be offset wrt the address
29401         returned by GC_malloc().
29402
29403 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
29404
29405         * image.c: handle files without entries in the assembly table (modules).
29406
29407 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
29408
29409         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
29410         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
29411         allowed to be null when it's System.Object class setup.
29412
29413 2002-04-27  Martin Baulig  <martin@gnome.org>
29414
29415         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
29416         if `tb->parent == NULL' rather than crashing.
29417
29418 2002-04-28  Nick Drochak  <ndrochak@gol.com>
29419
29420         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
29421         calling acos() where asin() should have been called.
29422
29423 2002-04-26  Martin Baulig  <martin@gnome.org>
29424
29425         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
29426         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
29427         there's a subdirectory called `System', but we don't want to read that
29428         subdirectory as an assembly.
29429
29430 2002-04-25  Martin Baulig  <martin@gnome.org>
29431
29432         * debug-symfile.c: Reflect latest MonoString changes.
29433
29434 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
29435
29436         * rand.c, rand.h: instance method icalls need to have an explicit
29437         this pointer as first argument in the C implementation.
29438
29439 2002-04-25  Nick Drochak <ndrochak@gol.com>
29440
29441         * icall.c: Fix typo in map for GetNonZeroBytes
29442
29443 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29444
29445         * string-icalls.c : String does now passes unit tests without any 
29446         errors, the following changes has been made:
29447         
29448         Implemented replace methods.
29449         Renaming of methods to (try) follow the standard.
29450         Fixed compare ordinal
29451         Made all memory allocated directly to function instead of via icall function.
29452         Small performance fix in is_in_array function
29453                         
29454  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
29455
29456         c (mono_string_Internal_ctor_charp_int_int):
29457         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
29458         sindex < 0, throw ArgumentOutOfRangeException instead of
29459         ArgumentNullException.
29460
29461         Added new check for length == 0, however
29462         I need to make it return String.Empty from the C code.
29463         
29464         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
29465         that calculate the length for us here.
29466         
29467         (mono_string_Internal_ctor_sbytep_int_int): Replaced
29468         mono_string_new_utf16 with mono_string_new, since value is utf8.
29469
29470 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29471
29472         * object.c: register the object for finalization if needed.
29473         Allocate one more char in the string for the terminating 0 char.
29474
29475 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
29476
29477         * class.c, class.h, image.c: check if a type implemenst a destructor.
29478         Use the proper key for array class lookups.
29479         * icall.c: register the icalls in the System.GC class.
29480         * gc.c, gc.h: GC-related functions and icalls.
29481
29482 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29483
29484         * icall.c:
29485         * socket-io.c:
29486         * unicode.c: free some strings gotten from mono_string_to_utf8 and
29487         changed a couple of free () by g_free ().
29488
29489         * decimal.c: one-liner in the comments for decimal2string ().
29490
29491 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29492
29493         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
29494
29495 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29496
29497         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
29498         * object.c (mono_runtime_invoke_array) : handle null in params
29499
29500 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29501
29502         * string-icalls.c: fixed bug in split (one off bug)
29503
29504 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29505
29506         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
29507         * icalls.c: added String::Equals as internal method
29508
29509 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29510
29511         * threads.c: fixed bug in the double interlocked functions
29512
29513 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
29514
29515         * threads.c: implemented all of the new interlocked icalls.
29516         * string-icalls.c: fix a bug in insert.
29517         * icalls.c: added the icalls for interlocked, removed old string functions.
29518         
29519 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
29520
29521         * loader.c: fix off-by-one error when reading argument names.
29522
29523 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29524
29525         * profiler.c: win32 counter implementation (untested).
29526         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
29527         (the latter needs testing and more complete impl. from win32 folks).
29528
29529 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
29530
29531         * object.c: mono_array_new_full workaround mono_array_class_get
29532         problem.
29533
29534 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29535
29536         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
29537         * object.h (mono_string_chars): Changed casting type.
29538
29539 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29540
29541         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
29542                            method signatures to use gunichar2 instead of gint16.
29543
29544 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
29545
29546         * object.h, object.c: domain-specific versions of mono_object_new and
29547         mono_array_new.
29548
29549 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
29550
29551         * object.c: changed String layout
29552
29553         * string-icalls.c (mono_string_Internal_ctor_chara): added
29554         internal string constructors.
29555
29556 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
29557
29558         * threads.c: pass 'this' to the thread start routine.
29559
29560 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29561
29562         * string-icalls.c: fix IndexOf and LastIndexOf. Now
29563         InternalCompareStr don't call twice mono_string_cmp_char for the last
29564         character. Improved performance in mono_string_cmp_char.
29565
29566 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
29567
29568         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
29569         code into its own library: libmonoruntime.
29570
29571 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
29572
29573         * object.h, object.c: changed array format so that szarrays do not
29574         require a bounds structure.
29575         * icall.c, appdomain.c: support for new szarray format.
29576
29577 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
29578
29579         * metadata.c: compare also the retuns type when comparing signatures:
29580         we didn't do this as an optimization since really overloaded methods
29581         must differ also in the arguments, but this doesn't work with
29582         low-level IL code (or when using explicit conversion operators: see
29583         bug#23498 for an example).
29584
29585 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29586
29587         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
29588
29589 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
29590
29591         * icall.c: make MonoType::GetElementType its own icall.
29592
29593 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29594
29595         * icall.c: remove MonoMethod_get_Name().
29596         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
29597         object.
29598
29599 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29600
29601         * string-icalls.c: optimized a few methods.
29602
29603 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29604
29605         * icall.c: added all new string internal calls
29606         * string-icalls.c: added, new string internal call implementation.
29607         * object.c: added mono_string_new_size for allocating a string a size
29608
29609 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
29610
29611         * object.c (mono_object_isinst): use the same code as in the
29612         optimized x86 version.
29613
29614 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29615
29616         * profiler.c: TSC-based timer code (faster and more accurate).
29617         Not hooked up in configure, yet (set USE_X86TSC to 1).
29618
29619 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
29620
29621         * profiler.c, profiler.h: track time spent compiling methods.
29622         * threads.c: track thread creation/destruction.
29623
29624 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
29625
29626         * profiler.c, profiler.h, profiler-private.h: profiling interface
29627         and sample implementation. Moved here so that it can be used also by
29628         the jit.
29629
29630 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
29631
29632         * reflection.c, reflection.h: keep types and other handles separate in
29633         the hash tables for referred tokens. Add guid for modules.
29634
29635 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29636
29637         * assembly.c: fix bugs found with valgrind.
29638         * metadata.h, metadata.c: added mono_metadata_guid_heap().
29639
29640 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
29641
29642         * threads: added icall support for getting current domain for
29643                    the thread.
29644  
29645 2002-04-13  Martin Baulig  <martin@gnome.org>
29646
29647         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
29648         (MonoDebugVarInfo): Added `index' field for register based addresses.
29649         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
29650         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
29651         `MonoDebugVarInfo *params' and `guint32 this_offset' with
29652         `MonoDebugVarInfo *this_var'.
29653
29654         * debug-symfile.c (relocate_variable): New static function to write
29655         a location description for a local variable or method parameter.
29656
29657 2002-04-12  Martin Baulig  <martin@gnome.org>
29658
29659         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
29660         stack offset and begin/end scope address of a local variable.
29661         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
29662         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
29663         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
29664
29665         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
29666         Added new relocation types for start/end scope of a local variable.
29667
29668 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29669
29670         * object.h: add mono_object_domain() macro.
29671         * reflection.c: handle typespecs.
29672         * icall.c: MonoMethod::get_Name() implementation.
29673
29674 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29675
29676         * icall.c: String::GetHashCode() icall implementation.
29677
29678 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29679
29680         * icall.c: String::IndexOfAny icall.
29681         * object.c, object.h: make array->max_length more useful.
29682         Intrduced mono_object_class() and mono_string_length() macros.
29683
29684 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29685
29686         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
29687         instead of g_unichar_isdigit.
29688
29689 2002-04-11  Nick Drochak  <ndrochak@gol.com>
29690
29691         * icall.c: Implement a simple Double.ToString().
29692
29693 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
29694
29695         * appdomain.h: only io-layer.h is supposed to be included.
29696         * icall.c: explicitly import environ. Fix warning.
29697
29698 2002-04-10  Nick Drochak  <ndrochak@gol.com>
29699
29700         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
29701                 return true even if it's not Daylight Savings time.
29702                 Only return false for the case where the function isn't
29703                 implemented for a plaform (read Windows).
29704
29705 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29706
29707         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
29708         data with a mutex.
29709
29710 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
29711
29712         * mempool.c (mono_mempool_alloc): only use g_malloc when
29713         absolutely necessary.
29714
29715 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
29716
29717         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
29718
29719         * class.c (mono_class_vtable): use domain mempool to allocate vtable
29720         (mono_class_proxy_vtable): use domain mempool
29721
29722 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
29723
29724         * appdomain.h, appdomain.c: split initialization that requires the
29725         execution engine support into mono_runtime_init().
29726
29727 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
29728
29729         * class.c (mono_class_init): don't include vtable inside MonoClass
29730         to save some memory, gather some statistics.
29731         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
29732
29733 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
29734
29735         * icall.c: internalcall implementation for ValueType.Equals().
29736
29737 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
29738
29739         * object.c (mono_message_init): moved 
29740         (mono_runtime_exec_main): new arch. independent impl.
29741         (mono_runtime_invoke_array): new method - like
29742         mono_runtime_invoke, but you can pass an array of objects.
29743         (mono_remoting_invoke): new arch. independent impl.
29744         (mono_message_invoke): new arch. independent impl.
29745         (mono_runtime_class_init): new arch. independent impl.
29746         (mono_runtime_object_init): new arch. independent impl.
29747
29748 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29749
29750         * metadata.c, object.c, reflection.c: documented the exported
29751         functions.
29752
29753 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
29754
29755         * icall.c: simpler code to pass the assembly builder data to corlib.
29756         Implement GetNestedTypes() internalcall.
29757
29758 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
29759
29760         * class.c: warn if a type can't be loaded.
29761
29762 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
29763
29764         * image.h: typedef MonoImageOpenStatus
29765         * types.h: removed unused file
29766         
29767 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
29768
29769         * icall.c: Enum_ToObject accepts enum value arguments.
29770
29771 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
29772
29773         * class.c: move initialization of properties, events and nested
29774         classes, so that they happen for interfaces, too.
29775
29776 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
29777
29778         * icall.c: cleanup some ugly casts in Array_SetValue*.
29779
29780 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29781
29782         * icall.c: the values array fro enums is of the correct type, now.
29783         Implement (correctly) getFullName instead of assQualifiedName for
29784         MonoType.
29785         * reflection.h, reflection.c: added mono_type_get_name ().
29786
29787 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29788
29789         * assembly.c, image.h: for each MonoImage, record from wich assembly
29790         it was loaded.
29791         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
29792         Make Type.Assembly work.
29793
29794 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
29795
29796         * debug-symfile.h: use char* instead of gpointer to avoid
29797         unnecessary casts.
29798
29799         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
29800
29801         * icall.c (ves_icall_InternalExecute): impl. FielSetter
29802         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
29803
29804 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
29805
29806         * icall.c (mono_message_init): impl. (code cleanup)
29807         (ves_icall_InternalExecute): impl. FieldGetter
29808
29809         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
29810         defined we call all (non-static)methods through the vtable. 
29811
29812 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
29813
29814         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
29815         finalizer even though the memory is still referenced (and the chunk of
29816         memory is not freed).
29817
29818 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
29819
29820         * assembly.c: fix brokeness.
29821
29822 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
29823
29824         * class.c: kill some warnings. Check explicit interface method
29825         implementation also without considering the namespace.
29826         Load also literal strings in static class data.
29827
29828 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
29829
29830         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
29831         (default_assembly_name_resolver): Make the resolver take the
29832         "base" directory where the assembly was originally defined, so we
29833         can load DLLs that are in the same directory as the assembly that
29834         is being referenced.
29835
29836 2002-03-28  Dick Porter  <dick@ximian.com>
29837
29838         * file-io.h: 
29839         * file-io.c:
29840         * socket-io.c: 
29841         * unicode.h: 
29842         * unicode.c: Warning cleanups
29843
29844 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
29845
29846         * object.h, reflection.h: use the correct type instead of MonoObject.
29847
29848 2002-03-28  Martin Baulig  <martin@gnome.org>
29849
29850         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
29851         (mono_debug_update_symbol_file): Initialize classes if necessary.
29852
29853 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
29854
29855         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
29856         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
29857
29858 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
29859
29860         * assembly.h: fix function prototype.
29861         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
29862         * mono-endian.h: use const cast.
29863
29864 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
29865
29866         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
29867
29868 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
29869
29870         * loader.c: don't assert when a typeref can't be loaded, give
29871         a chance to the runtime to trow an exception instead.
29872         * loader.h: fix warning.
29873
29874 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
29875
29876         * class.c (mono_class_proxy_vtable): added proxy support
29877
29878 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
29879
29880         * icall.c: removed last of PAL calls, added System.Environment
29881         * file-io.h, file-io.c: MonoIO implementation
29882         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
29883
29884 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
29885
29886         * appdomain.c: do not use the byte marker in ldstr table lookup.
29887         * debug-helpers.c: allow two ':' to separate class and method name.
29888         * object.c: allocate arrays bounds with the GC, too.
29889         * verify: add a few more checks.
29890
29891 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
29892
29893         * reflection.c: output also literal strings. Allocate parameter data
29894         with GC_malloc() (thanks, Martin, for catching this!).
29895
29896 2002-03-26  Martin Baulig  <martin@gnome.org>
29897
29898         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
29899         include the `this' offset in the `param_offsets'.
29900
29901 2002-03-25  Martin Baulig  <martin@gnome.org>
29902
29903         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
29904         mono_debug_get_class() function to get the classes. Added new
29905         relocation types for arrays and strings.
29906         (mono_debug_get_class): New static function to search in all
29907         referenced assemblies for a metadata token.
29908
29909         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
29910
29911 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
29912
29913         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
29914         hold gc-allocated objects. Make the string heap a stream like the
29915         others. Removed duplicated code when writing stream info.
29916         Added asserts to catch possible buffer overflows. Set the sorted map
29917         for tables that need sorting. Added some documentation.
29918
29919 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
29920
29921         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
29922         for interned strings and vtables.
29923
29924 2002-03-24  Martin Baulig  <martin@gnome.org>
29925
29926         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
29927         it in the array since it was created with g_slist_prepend().
29928
29929 2002-03-24  Martin Baulig  <martin@gnome.org>
29930
29931         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
29932         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
29933         (mono_debug_method_from_token): Renamed to
29934         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
29935         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
29936
29937         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
29938         relocation types.
29939
29940         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
29941
29942 2002-03-24  Martin Baulig  <martin@gnome.org>
29943
29944         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
29945         (mono_debug_method_from_token): New func.
29946
29947         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
29948         New interncall, calls mono_debug_local_type_from_signature().
29949         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
29950         calls mono_debug_method_from_token().
29951
29952 2002-03-23  Martin Baulig  <martin@gnome.org>
29953
29954         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
29955         specifies the number of bytes to be converted, not the array size.
29956         Return the number of chars, not the number of bytes.
29957         (ves_icall_iconv_get_chars): The `byteCount' argument
29958         specifies the number of bytes to be converted, not the array size.
29959
29960 2002-03-23  Martin Baulig  <martin@gnome.org>
29961
29962         * reflection.h (MonoReflectionSigHelper): New type.
29963
29964         * reflection.c (mono_reflection_sighelper_get_signature_local),
29965         (mono_reflection_sighelper_get_signature_local): New functions.
29966
29967         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
29968         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
29969         interncalls.
29970
29971 2002-03-23  Martin Baulig  <martin@gnome.org>
29972
29973         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
29974         is_writeable is set.
29975         (mono_raw_buffer_update): New function to write the modified map
29976         back to disk.
29977
29978         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
29979
29980         * debug-symfile.c (mono_debug_update_symbol_file): Call
29981         mono_raw_buffer_update() when done writing.
29982
29983 2002-03-23  Martin Baulig  <martin@gnome.org>
29984
29985         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
29986
29987         * debug-symfile.c: Added support for arguments and local variables.
29988
29989 2002-03-23  Dick Porter  <dick@ximian.com>
29990
29991         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
29992         protected by ifdefs, hence breaking the w32 build.
29993
29994 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
29995
29996         * object.c: implement is_interned() the right way.
29997
29998 2002-03-21  Martin Baulig  <martin@gnome.org>
29999
30000         * debug-symfile.[ch]: New files to handle debugging information
30001         files. There's also support to dynamically update these symbol
30002         files to include machine dependent information.
30003
30004 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
30005
30006         * threads.c (mono_thread_create): new function to create thread
30007         from C
30008
30009 2002-03-20  Martin Baulig  <martin@gnome.org>
30010
30011         * icall.c (ves_icall_InternalInvoke): Create a new object if the
30012         method is a constructor.
30013         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
30014         points to ves_icall_InternalInvoke().
30015
30016 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
30017
30018         * file-io.c: Flush shouldn't throw exceptions.
30019
30020 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
30021
30022         * file-io.c: FileStream flush support; FileSetLength now
30023         restores file pointer.
30024
30025 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
30026
30027         * class.c: set image for pointer classes.
30028
30029 2002/03/19  Nick Drochak <ndrochak@gol.com>
30030
30031         * sysmath.c: Forgot one.
30032
30033 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
30034
30035         * sysmath.c: Avoid redefining existing names.
30036
30037 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
30038
30039         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
30040         handled by runtime as icall rather than dllimport from libm.so
30041         * file-io.c, file-io.h: fixed handle argument type.
30042
30043 2002-03-18  Dick Porter  <dick@ximian.com>
30044
30045         * reflection.c (mono_image_get_type_info): rename interface to
30046         iface, because of "#define interface struct" on windows.
30047
30048 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
30049
30050         * class.c, class.h: rename and export mono_ptr_class_get().
30051         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
30052         * reflection.c, reflection.h, icall.c: better/saner type name
30053         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
30054         method signatures.
30055
30056 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
30057
30058         * class.c (mono_class_init): removed hardcoded GHC_SLOT
30059
30060         * icall.c (ves_icall_InternalInvoke): impl.
30061
30062 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30063
30064         * reflection.c: output the interface map table, too.
30065
30066 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
30067
30068         * class.c (class_compute_field_layout): separate computation of 
30069         static field layout
30070
30071 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
30072
30073         * icall.c: added System.Buffer support.
30074         * file-io.c: moved file icalls from PAL to FileStream.
30075
30076 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
30077
30078         * icall.c (ves_icall_System_Object_GetHashCode): impl.
30079
30080 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
30081
30082         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
30083
30084 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30085
30086         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
30087
30088 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
30089
30090         * debug-helpers.{c,h}: moved here from monograph some useful functions
30091         to locate a method by name/signature in a class or image. Included
30092         also a small and flexible IL disassembler.
30093
30094 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30095
30096         * reflection.c: fixup tokens in methods with small header size, too.
30097
30098 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
30099
30100         * object.c (mono_string_to_utf8): remove assert(!error), instead
30101         print a warning. 
30102
30103 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
30104
30105         * icall.c: update to the new mono_Array_class_get interface.
30106
30107 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
30108
30109         * appdomain.c, object.c: Boehm-GC enable.
30110         * icall.c: make get_data_chunk() support split data requests.
30111         Ensure a class is initialized in more cases. Return only the first
30112         property found in GetProperties() or the compiler gets confused. 
30113         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
30114         * reflection.h, reflection.c: add fixup mechanism for field and method
30115         tokens. Initialize assembly->typeref in a single place. Output
30116         properties after events. Support custom attributes for events, too.
30117         Typo fix for paramter custom attrs.
30118
30119 2002-03-07  Martin Baulig  <martin@gnome.org>
30120
30121         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
30122
30123 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
30124
30125         * class.c (mono_array_class_get): fix. for multi. dim. arrays
30126
30127 2002-03-06  Martin Baulig  <martin@gnome.org>
30128
30129         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
30130         non-zero lower bounds. See testcases #F10-#F13.
30131
30132 2002-03-05  Martin Baulig  <martin@gnome.org>
30133
30134         * exception.c (mono_get_exception_argument_out_of_range): New exception.
30135
30136         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
30137         ves_icall_System_Array_GetValue(), only calculate the absolute array position
30138         here.
30139         (ves_icall_System_Array_SetValue): Likewise.
30140         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
30141         as argument and does the actual work. This function is used when copying a
30142         multi-dimensional array.
30143         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
30144         now do all the widening conversions of value types.
30145         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
30146
30147 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30148
30149         * class.c: remove some magic numbers and use the smbolic names,
30150         instead. Added init_events() to load event info at class init time.
30151         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
30152         and mono_metadata_methods_from_event().
30153         * reflection.h, reflection.c: added support for writing out the evnets
30154         related information.
30155
30156 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
30157
30158         * reflection.h, icall.c: use a different method (GetInterfaces)
30159         to gather interface info and add isbyref, isprimitive and
30160         ispointer to the ves_icall_get_type_info() return value.
30161
30162 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
30163
30164         * class.h: stared adding support for events.
30165         * icall.c: split find_members implementation. Added debug icall to get
30166         the address of an object.
30167         * reflection.c: handle TypeBuilders in mono_type_get_object().
30168
30169 2002-03-01  Martin Baulig  <martin@gnome.org>
30170
30171         * icall.c (ves_icall_System_Array_GetLength): This must throw an
30172         ArgumentOutOfRangeException(), not an ArgumentException().
30173         (ves_icall_System_Array_GetLowerBound): Likewise.
30174         (ves_icall_System_Array_GetValue): Improved argument checking.
30175         (ves_icall_System_Array_SetValue): Improved argument checking.
30176
30177 2002-03-01  Martin Baulig  <martin@gnome.org>
30178
30179         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
30180         called with invalid arguments rather than just dying with g_assert().
30181         (ves_icall_System_Array_SetValue): Likewise.
30182         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
30183         raise a NotImplementedException instead.
30184         (ves_icall_System_Array_GetLength): Added argument checking.
30185         (ves_icall_System_Array_GetLowerBound): Added argument checking.
30186
30187 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
30188
30189         * object.h (mono_assert): new macros mono_assert and
30190         mono_assert_not_reached
30191
30192 2002-02-28  Martin Baulig  <martin@gnome.org>
30193
30194         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
30195         and "System::String::IsInterned" to "System::String::_IsInterned".
30196
30197 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
30198
30199         * icall.c: remove hacks for typebuilder. Added icall to create a
30200         modified type from a tybebuilder.
30201         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
30202         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
30203         to create a backing MonoClass for a TypeBuilder.
30204
30205 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30206
30207         * class.c, class.h: more refactoring of class init.
30208         Export mono_class_setup_mono_type() and mono_class_setup_parent().
30209
30210 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
30211
30212         * marshal.c, marshal.h: start of marshaling interface.
30213
30214 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
30215
30216         * icall.c: fix order in assembly qualified name icall.
30217
30218 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
30219
30220         * class.c: do not free str, since we store it in the hash table.
30221         * reflection.h: add label field to MonoILExceptionInfo.
30222         * reflection.c: handle references to more than one assembly. Handle
30223         case when there isn't a module created in the assembly.
30224
30225 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
30226
30227         * class.c: Fix typo. Start refactoring of class init code.
30228
30229 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
30230
30231         * appdomain.c: exit with 1 on error.
30232         * class.c: we already have the name in MonoClassField.
30233         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
30234         MonoStreamHeader instead of an offset of image->raw_metadata.
30235
30236 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
30237
30238         * appdomain.c (mono_init): Be even more descriptive about the error.
30239
30240 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
30241
30242         * appdomain.c: give the user an informative message when corlib can't
30243         be loaded.
30244
30245 2002-02-26  Martin Baulig  <martin@gnome.org>
30246
30247         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30248         New icall to get the time zone data.
30249
30250 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30251
30252         * reflection.c: set virtual and raw size of section correctly.
30253         * threads.c: transfer domain information to newly created threads.
30254
30255 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
30256
30257         * class.c: when instancing a class in a domain, load the default
30258         vaules for static fields from the constant table. Fix System.Enum to
30259         not be an enum.
30260         * icall.c: implement Object::GetType() internalcall. Implemented
30261         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
30262         Fixed checking of binding flags in find_members().
30263         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
30264         * reflection.c: handle enumerations when writing to the constant
30265         table. Use a different object cache for types.
30266
30267
30268 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
30269
30270         * object.c (mono_object_isinst): fix for arrays
30271
30272         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
30273
30274 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
30275
30276         * object.c: don't use mprotect ()  and fix intern pool hash table
30277         lookup for big endian systems.
30278
30279 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30280
30281         * icall.c: change type_is_subtype_of () signature.
30282
30283 2002-02-21  Mark Crichton  <crichton@gimp.org>
30284
30285         * rand.c, rand.h: Added random number generator for
30286         System.Security.Cryptography classes.
30287
30288         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
30289
30290         * icall.c: Added System.Security.Cryptography calls.
30291
30292 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
30293
30294         * class.c, icall.c, metadata.c: better support for pointer types.
30295         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
30296         * reflection.c: Add support for getting custom attrs for properties
30297         and simplify some code.
30298
30299 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30300
30301         * icall.c: change getToken () and add custom attribute GetBlob()helper
30302         method.
30303         * reflection.h: add custom attrs array to the reflection builder structures.
30304         * reflection.c: encode and emit custom attributes for all the relevant
30305         reflection objects. Cache fieldref and methodref tokens. Change
30306         mono_image_create_token() interface to take a MonoDynamicAssembly.
30307         More complete custom attributes decoder. Load custom attributes for
30308         Assembly, Field, Method and Constructor objects, too. Make the
30309         returned array an Attribute[] one, not object[]. Added
30310         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
30311         custom attribute constructor.
30312
30313 2002-02-20  Dick Porter  <dick@ximian.com>
30314
30315         * icall.c:
30316         * rawbuffer.c:
30317         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
30318         problem code out for now).
30319
30320 2002-02-19  Radek Doulik  <rodo@ximian.com>
30321
30322         * object.c (mono_ldstr): use hash table to avoid multiple swapping
30323
30324 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
30325
30326         * icall.c: register the GetCustomAttributes method.
30327         * object.c, object.h: add mono_string_new_len ().
30328         * reflection.h, reflection.c: added mono_runtime_invoke(),
30329         mono_install_runtime_invoke(). Added
30330         mono_reflection_get_custom_attrs () to load custom attributes and
30331         create the attribute objects.
30332
30333 2002-02-19  Dick Porter  <dick@ximian.com>
30334         * threads-dummy-types.c:
30335         * threads-dummy-types.h:
30336         * threads-dummy.c:
30337         * threads-dummy.h:
30338         * threads-pthread-types.c:
30339         * threads-pthread-types.h:
30340         * threads-pthread.c:
30341         * threads-pthread.h:  Deleted obsolete files
30342
30343 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
30344
30345         * class.c (mono_class_vtable): runtime init the class when we
30346         allocate static class data.
30347
30348         * icall.c (ves_icall_System_Array_SetValue): check for null values.
30349
30350         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
30351         and String - but we will need generic marshalling support in the
30352         future. 
30353         (mono_init): set the domain name in a ms compatible way
30354
30355         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
30356         String[].
30357
30358 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
30359
30360         * object.c (mono_array_clone): use alloca() instead of g_malloc  
30361         for sizes
30362
30363         * appdomain.c (mono_domain_unload): impl.
30364
30365 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30366
30367         * appdomain.c, object.c: fix intern pool implementation.
30368         * class.c: fix alignment code.
30369
30370 2002-02-16  Radek Doulik  <rodo@ximian.com>
30371
30372         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
30373         and s2 > s1, just copy lower bytes to be compatible with little
30374         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
30375         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
30376
30377         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
30378         force big_endian to be 1 for big endian machines 
30379         (ves_icall_iconv_new_decoder): ditto
30380
30381 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
30382
30383         * socket-io.c (convert_sockopt_level_and_name): If the system
30384         doesn't define SOL_IP or SOL_TCP, get them by hand using
30385         getprotobyname() and caching the values (because this could be a
30386         slow operation).
30387         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
30388         Use the appropriate struct when the system does support it. Ie,
30389         not all systems have struct ip_mreqn so use struct ip_mreq when
30390         appropriate.
30391
30392 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
30393
30394         * reflection.c: handle finally clauses.
30395
30396 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
30397
30398         * socket-io.c: use g_snprintf() instead of snprintf.
30399
30400 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
30401
30402         * reflection.c (mono_param_get_objects): Cast second argument to
30403         mono_method_get_param_names to a const char** to silence the
30404         compiler warning.
30405
30406         * appdomain.c (mono_domain_assembly_open): Put parens around the
30407         truth statement in the for-loop.
30408
30409         * unicode.c (iconv_convert): Got rid of a compiler warning about
30410         int i being unused when the system has a new iconv.
30411         (iconv_get_length): Same.
30412
30413         * image.c (load_class_names): Cast the second argument to
30414         g_hash_table_insert() to char* to hush compiler warnings about the
30415         arg being a const.
30416         (mono_image_open): Same here.
30417
30418         * socket-io.c: Don't conditionally include sys/filio.h or
30419         sys/sockio.h here anymore since we now get them from
30420         io-layer/io-layer.h
30421         (inet_pton): If the system doesn't support inet_aton, implement
30422         using inet_addr and also #define INADDR_NONE if it isn't defined
30423         by the system.
30424
30425 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
30426
30427         * metadata.c, metadata.h: added function to get packing and size info
30428         of a typedef.
30429         * reflection.h, reflection.c: handle field RVA data. Save info about
30430         the table layout if needed. Assign typedef indexes to all the types
30431         before dumping the info about them to avoid forward reference problems.
30432
30433 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
30434
30435         * socket-io.c (convert_sockopt_level_and_name): ifdef
30436         SO_ACCEPTCONN because it is not defined on my system (old debian)
30437
30438 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30439
30440         * opcode.c: use stddef.h to get NULL.
30441
30442 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
30443
30444         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
30445         for FIONBIO, FIONREAD and SIOCATMARK.
30446         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
30447         define INADDR_NONE and besides, inet_addr() is deprecated and
30448         should not be used. Use inet_pton() instead - it also has the
30449         added bonus that it can easily handle IPv6 addresses as well.
30450         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
30451
30452 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
30453
30454         * decimal.c: remove _MSC_VER conditional.
30455
30456 2002-02-13  Dick Porter  <dick@ximian.com>
30457
30458         * socket-io.c: 
30459         * icall.c: Internal calls for Blocking, Select, Shutdown,
30460         GetSocketOption and SetSocketOption
30461
30462 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30463
30464         * assembly.cs: better resolver: use it instead of some kludgy
30465         code.
30466
30467 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
30468
30469         * reflection.c: the best way to speed-up the compiler is to avoid
30470         infinite loops.
30471
30472 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
30473
30474         * class.c (mono_class_vtable): changed the object layout
30475         (obj->vtable->class). 
30476         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
30477
30478 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30479
30480         * assembly.c: look for assemblies in the assembly dir, too.
30481
30482 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30483
30484         * class.c: fix thinko in mono_class_from_type().
30485
30486 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30487
30488         * exception.h, exception.c: added TypeLoadException.
30489         * object.h, object.c: added mono_array_clone ().
30490         * icall.c: handle throwOnError in AssemblyGetType().
30491         Added Array.Clone().
30492         * opcode.h, opcode.c: use a single value for the opcode val.
30493         Compile fix for non-gcc compilers.
30494
30495 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
30496
30497         * opcodes.c, opcodes.h: export interesting info about opcodes.
30498
30499 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
30500
30501         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
30502         icalls. 
30503
30504         * class.c (class_compute_field_layout): set element_class for enums
30505         (mono_class_create_from_typedef): set element_class for normal classes
30506
30507         * icall.c (ves_icall_System_Enum_get_value): impl.
30508
30509         * class.c (mono_class_create_from_typedef): do not set valuetype
30510         flag for System.ValueType and System.Enum
30511
30512 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
30513
30514         * unicode.c (iconv_convert): fix big endian problem.
30515
30516 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30517
30518         * class.c: add asserts if we are ever going to scribble over memory.
30519         * socket-io.c: not all systems have AF_IRDA defined.
30520
30521 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
30522
30523         * class.c (class_compute_field_layout): do not consider static
30524         fields to compute alignment
30525
30526 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
30527
30528         * appdomain.c (mono_appdomain_get): impl.
30529         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
30530
30531 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
30532
30533         * icall.c: ignore "file://" prefix when loading an assembly.
30534
30535 2002-01-23  Dick Porter  <dick@ximian.com>
30536
30537         * socket-io.c:
30538         * icall.c:
30539         * Makefile.am: Added socket support
30540
30541 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
30542
30543         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
30544         code back.  This should return the assemblies that are loaded by
30545         the runtime on behalf of an application domain. 
30546
30547         The current implementation is still broken, it just returns every
30548         assembly loaded, but until we get real applications domain this
30549         will do.
30550
30551 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
30552
30553         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
30554         AppDomain object.
30555
30556 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
30557
30558         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
30559         the mono_class_from_name lookup.
30560         (ves_icall_get_parameter_info): ditto.
30561         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
30562         method.
30563         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
30564
30565 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
30566
30567         * class.c: load also nested classes on class init.
30568         System.ValueType instance methods gets passed boxed
30569         values, unless methods in derived classed that get a pointer to the
30570         data.
30571         * icall.c: use better name parsing code in GetType().
30572         * image.c, image.h: add mono_image_loaded ().
30573         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
30574         * reflection.c, reflection.h: added mono_reflection_parse_type().
30575
30576 2002-01-22  Veronica De Santis <veron78@interfree.it>
30577
30578         * icall.c : Added mapping of internal calls for Manual and Auto reset events
30579         * threads.c : Added the implementation of internal calls for events
30580         * threads.h : Added prototypes of internal calls for events
30581         
30582 2002-01-21  Radek Doulik  <rodo@ximian.com>
30583
30584         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
30585
30586 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
30587
30588         * class.c (mono_class_init): set min_align to 1 (instead of 0)
30589         (mono_class_value_size): use min_align
30590
30591 2002-01-20  Dick Porter  <dick@ximian.com>
30592
30593         * threads.h:
30594         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
30595         so it compiles on w32.
30596
30597 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
30598
30599         * metadata.c (mono_type_stack_size): impl.
30600
30601         * class.c (mono_class_get_field): impl. memberref token
30602
30603 2002-01-16 Veronica De Santis <veron78@@interfree.it>
30604
30605         * icall.h : Added the internal calls mapping for CreateMutex_internal
30606                     and ReleaseMutex_internal.
30607         * threads.h : Added the prototype of mutexes internal calls.
30608         * threads.c : Added the implementations of mutexes internal calls.
30609
30610 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
30611
30612         * metaparse.h: removed unused file.
30613         * reflection.c, reflection.h: added stream_data_align () function 
30614         to align data in streams and keep stream aligned. Add support for
30615         exception support in method headers.
30616
30617 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
30618
30619         * unicode.c: make iconv_convert () return the number of bytess written
30620         in the output buffer.
30621
30622 2002-01-15  Dick Porter  <dick@ximian.com>
30623         * threads.c: Make the runtime's idea of infinite timeouts coincide
30624         with the class library's
30625
30626         Fix a particularly egregious bug in mono_thread_cleanup(). That
30627         code was so utterly bogus it must have been written on a Monday.
30628
30629 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
30630
30631         * reflection.h: add subtypes field to TypeBuilder.
30632         * reflection.c: encode constants for literal fields.
30633         Handle subtypes. Fix user string token (and add a zero byte)
30634         at the end.
30635         
30636 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
30637
30638         * class.c (mono_class_init): bug fix: assign slot numbers for
30639         abstract methods.
30640
30641 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30642
30643         * reflection.c: don't try to output a code RVA for abstract methods.
30644         Small fixes for method header format. Output parameter info to the
30645         ParamDef table. Save method overriding info to MethodImpl table.
30646         Fix property support. Allow typedef.extends to be a type in the
30647         building assembly.
30648         * verify.c: fix off-by-one error.
30649
30650 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
30651
30652         * class.c: fix mono_class_from_mono_type () for szarray types.
30653         Remove unused cache check in mono_class_from_type_spec().
30654         * icall.c: *type_from_name () functions handle simple arrays and byref.
30655         * reflection.c: handle byref and szarray types. Handle methods without
30656         body (gets P/Invoke compilation working). Handle types and fields in
30657         get_token ().
30658         * reflection.h: add rank to MonoTypeInfo.
30659
30660 2002-01-10  Dick Porter  <dick@ximian.com>
30661
30662         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
30663         internal calls
30664
30665 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
30666
30667         * icall.c: initialize class in type_from_handle ().
30668         Loop also in parent classes for get_method ().
30669         * reflection.c: properly encode class and valuetype types.
30670         Start on encoding TypeBuilder types. Handle fieldrefs.
30671         Use correct length when registering a user string.
30672         Handle ConstructorBuilder and MonoMethod in get_token ().
30673         Make mono_type_get_object () aware of cached types.
30674         * object.c: back out change to mono_string_new ().
30675
30676 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
30677         * object.c: mono_string_new should return a NULL when the string 
30678         passed in is NULL -- not try to deference it.
30679         
30680 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
30681
30682         * icall.c: hack to make IsSubType work for TypeBuilders.
30683         * reflection.c: emit constructors before methods.
30684         Retrieve param names in mono_param_get_objects().
30685
30686 2002/01/05  Nick Drochak  <ndrochak@gol.com>
30687
30688         * Makefile.am: fix list of headers and sources so automake 1.5
30689         doesn't complain. Removed \# at end of list.
30690
30691 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
30692
30693         * reflection.c: get token for a method ref. Set return type of
30694         constructor to void.
30695         * loader.c: debug message.
30696         * class.c: typo fix.
30697
30698 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
30699
30700         * icall.c: fix array init with rank > 1. FindMembers
30701         loops in parent class as well.
30702         * image.c: do not insert nested types in name cache.
30703         * reflection.c: warning fix.
30704         * reflection.h: add override method (for interface impl).
30705
30706 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
30707
30708         * metadata.c: fix customattr decoding.
30709
30710 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
30711
30712         * rawbuffer.cs: Added native Win32 implementation, avoids using
30713         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
30714
30715 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
30716
30717         * class.c: make the low-level routines handle the cache.
30718
30719 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
30720
30721         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
30722
30723 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
30724
30725         * class.c: fix mono_array_element_size() for objects.
30726         * class.h, class.c: add properties to MonoClass and load them
30727         at init time.
30728         * icall.c: check with isinst() when assigning a value to an array
30729         instead of requiring the classes to match exactly.
30730         Implemented icall for System.Type::GetType().
30731         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
30732         enums. Handle bindingflags when looking for methods and fields.
30733         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
30734         and mono_metadata_methods_from_property().
30735         * reflection.h, reflection.c: added structures for propreties,
30736         parameters and enums. Implemented mono_property_get_object() and
30737         mono_param_get_objects().
30738
30739 2001-12-18  Dick Porter  <dick@ximian.com>
30740
30741         * file-io.c: Use mono_string_to_utf16() instead of
30742         mono_string_chars()
30743
30744         * object.c: Added mono_string_to_utf16(), which copies the non
30745         NULL-terminated MonoString into a new double-null-terminated
30746         buffer.
30747
30748 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
30749
30750         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
30751
30752 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
30753
30754         * file-io.c: raise exceptions if handle is invalid.
30755
30756 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
30757
30758         * assembly.c: yet another check for mscorlib.
30759         * class.c, class.h: load nesting info for classes.
30760         * icall.c: many new functions to support the Reflection classes.
30761         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
30762         * reflection.h, reflection.c: mono_image_create_token(),
30763         mono_assembly_get_object(), mono_type_get_object(),
30764         mono_method_get_object(), mono_field_get_object(): methods to return
30765         objects that parallel the C representation of assemblies, types,
30766         methods, fields.
30767
30768 2001-12-11  Dick Porter  <dick@ximian.com>
30769
30770         * icall.c:
30771         * file-io.c: Internal calls for file IO.
30772
30773 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
30774
30775         * tabledefs.h: missing FileAttributes.
30776         * verify.h, verify.c: use is_valid_string () to simplify and check for
30777         valid strings more correctly. Fix warnings and speeling.
30778         Check more tables: Filed, File, ModuleRef, StandAloneSig.
30779         Check code: branches, maxstack, method calls.
30780
30781 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
30782
30783         * object.c (mono_object_allocate): removed static, so that the jit
30784         can allocate value types.
30785
30786         * icall.c (ves_icall_System_DateTime_GetNow): impl.
30787
30788 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
30789
30790         * class.c: init enum types right away and register the
30791         token->MonoClass map in mono_class_create_from_typedef ().
30792         * verify.h, verify.c: first cut of the verifier.
30793         * pedump.c: add --verify switch to verify metadata tables.
30794         * tabledefs.h: add some missing enums.
30795
30796 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
30797
30798         * class.c (mono_install_runtime_class_init): impl.
30799         (mono_class_init): renamed mono_class_metadata_init to
30800         mono_class_init, also removed the metadata_inited flag
30801
30802         * object.c (mono_object_isinst): use faster algorithm
30803
30804 2001-11-30  Radek Doulik  <rodo@ximian.com>
30805
30806         * mono-endian.h: reverted last change
30807         added function prototypes
30808
30809         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
30810         add mono-endian.c back
30811
30812         * mono-endian.c: returned back, as Paolo pointed out, it's needed
30813         for unaligned access, I've mistaked it with endianess. I am
30814         sorry.
30815         (mono_read16): fix reverted endianess
30816         (mono_read64): ditto
30817         (mono_read32): ditto
30818
30819 2001-11-30  Dick Porter  <dick@ximian.com>
30820
30821         * exception.c: Implement mono_exception_from_name()
30822
30823 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
30824
30825         * metadata.h, metadata.c: remove params_size and locals_size and their
30826         calculation from the metadata code: they are only usefult to the
30827         interp.
30828
30829 2001-11-29  Radek Doulik  <rodo@ximian.com>
30830
30831         * object.c (mono_ldstr): swap bytes here, it's probably not the
30832         best place, but works for me now, I'll redo it once I know mono
30833         better, also note that I add PROT_WRITE and don't reset back, also
30834         note that it's only affects big endians, so x86 should be OK
30835
30836         * mono-endian.h (read16): use just glib macros for both endians
30837
30838         * mono-endian.c: removed as glib macros are used in in
30839         mono-endian.h so we don't need to care about endianess for read
30840         macros as glib does that for us already
30841
30842 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
30843
30844         * class.h, class.h: take minimum alignment into consideration so
30845         that the fields of a class remain aligned also when in an array.
30846
30847 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
30848
30849         * loader.h, loader.c: add mono_method_get_param_names().
30850         * class.c: 0-init class fields.
30851
30852 2001-11-26  Dick Porter  <dick@ximian.com>
30853
30854         * icall.c:
30855         * threads-types.h:
30856         * threads.c: New file that handles System.Threading on all platforms
30857
30858         * object.c: 
30859         * object.h: Remove the synchronisation struct from MonoObject,
30860         replace it with a pointer that gets initialised on demand
30861
30862         * Makefile.am: Replace all the system-specific threading code with
30863         a single file that uses the new wrapper library
30864
30865 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
30866
30867         * class.c, class.h: add mono_install_trampoline() so that the runtime
30868         can register a function to create a trampoline: removes the ugly
30869         requirement that a runtime needed to export arch_create_jit_trampoline.
30870         * object.h, object.c: added mono_install_handler() so that the runtime
30871         can install an handler for exceptions generated in C code (with
30872         mono_raise_exception()). Added C struct for System.Delegate.
30873         * pedump.c: removed arch_create_jit_trampoline.
30874         * reflection.c: some cleanups to allow registering user strings and
30875         later getting a token for methodrefs and fieldrefs before the assembly
30876         is built.
30877         * row-indexes.h: updates and fixes from the new ECMA specs.
30878
30879 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
30880
30881         * class.h, class.c: add enum_basetype field to MonoClass.
30882         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
30883         to get index in the constant table reated to a field, param or
30884         property.
30885         * reflection.h, reflection.c: handle constructors. Set public-key and
30886         version number of the built assembly to 0.
30887         * row-indexes.h: update from new ECMA spec.
30888
30889 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
30890
30891         * class.h, class.c: add a max_interface_id to MonoClass.
30892         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
30893         since it's used to do that. Added mono_type_type_from_obj().
30894         Make GetType() return NULL instead of segfaulting if the type was not
30895         found. Handle simple arrays in assQualifiedName.
30896         * object.h: add a struct to represent an Exception.
30897         * reflection.c: output call convention in method signature.
30898         Add code to support P/Invoke methods and fixed offsets for fields.
30899
30900 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
30901
30902         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
30903         the value.
30904         * icall.c: use mono_array_addr instead of array->vector: fixes the
30905         reflection image writing.
30906         * reflection.c: init call convention byte to 0 in method signature.
30907         Encode the property signature. Don't output property-related methods
30908         twice. Really process the properties for a type (don't cast a field to
30909         a property, my mom always told me that).
30910         Fix 64 bit issues in pointer alignment in a different and more
30911         readable way.
30912
30913 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
30914
30915         * loader.h: Removed type class from MonoDefaults, added monotype
30916
30917         * loader.c: Loaded MonoType, removed loading of Type
30918
30919         * icall.c (my_mono_new_object): Now returns a System.MonoType,
30920         and fills in System.Type._impl with a RuntimeTypeHandle rather
30921         than the actual MonoClass *
30922
30923         (ves_icall_type_from_handle): change from type_class to
30924         monotype_class
30925
30926         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
30927         implemented
30928
30929         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
30930         implemented
30931
30932         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
30933
30934         (ves_icall_System_Reflection_Assembly_GetType): implemented
30935
30936         (ves_icall_System_MonoType_assQualifiedName): implemented
30937
30938         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
30939
30940 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
30941
30942         * assembly.c (mono_assembly_open): Implement a cache for the
30943         assemblies. 
30944
30945         (mono_assembly_close): only destroy the assembly when the last
30946         reference is gone.
30947         
30948 2001-11-09  Dick Porter  <dick@ximian.com>
30949
30950         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
30951
30952 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
30953
30954         * class.c (mono_class_metadata_init): bug fix: compute the right slot
30955
30956 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
30957
30958         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
30959         from Martin Weindel.
30960         * object.h: add mono_string_chars ().
30961
30962 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
30963
30964         * reflection.c (build_compressed_metadata): Eliminates warnings
30965         and uses 64-bit clean code.
30966
30967         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
30968         (mono_type_equal): Change signature to eliminate warnings.
30969
30970 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
30971
30972         * icall.c, loader.c: remove the internalcall array constructors.
30973         Changes to match the new MonoArray structure.
30974         * object.h, object.c: an array object doesn't allocate an extra
30975         vector. Add mono_array_new_full () to create jagged arrays easily.
30976
30977 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
30978
30979         * metadata.h, metadata.c: add mono_metadata_field_info () to
30980         retreive all the info about a field from vairous tables.
30981         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
30982         * class.h, class.c: augment MonoClassField with more info.
30983         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
30984         policy and load a field's RVA if needed.
30985
30986 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
30987
30988         * class.c (mono_class_metadata_init): create a trampoline for all
30989         virtual functions instead of actually compiling them.
30990
30991 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
30992
30993         * class.h, class.c: include name in MonoClassField.
30994         * class.c: fix fundamental type of System.Object and System.String.
30995         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
30996         tokens in ldtoken.
30997         * icall.c: remove internalcalls for the Reflection stuff that is now
30998         done in C# code.
30999         * loader.c: mono_field_from_memberref () implementation.
31000         * mono-endian.c: thinko (s/struct/union/g).
31001         * object.c, object.h: make the mono_string_* prototypes actually use
31002         MonoString instead of MonoObject.
31003         * reflection.c, reflection.h: updates for changes in the reflection
31004         code in corlib: we use C structures that map to the actual C# classes.
31005         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
31006         fat method header if needed and use the info from the ILGenerator for
31007         methods. Handle fields in types. Misc fixes.
31008
31009 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
31010
31011         * class.c (mono_class_metadata_init): bug fix: always allocate
31012         space for static class data
31013
31014 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
31015
31016         * class.c (mono_compute_relative_numbering): use relative
31017         numbering to support fast runtime type checks.
31018
31019 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
31020
31021         * class.c (mono_class_create_from_typeref): added debugging output
31022         to print class name when MonoDummy is returned instead of real class
31023
31024 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
31025
31026         * class.c (mono_class_metadata_init): interface offset table now
31027         contains pointers into the vtable - this is more efficient for the jit
31028
31029 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
31030
31031         * class.c (mono_class_metadata_init): use a temporary vtable (the
31032         old algorithm only worked for the interpreter, but not for the jit)
31033
31034 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
31035
31036         * loader.c (method_from_memberref): use mono_class_get to get the
31037         class of an array instead of using System.Array directly.
31038         (mono_get_method): also add MEMBERREF methods to the method cache
31039         which usefull for arrays.
31040
31041 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
31042
31043         * pedump.c (arch_compile_method): added to compute vtable entry
31044
31045         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
31046         number of interfaces.
31047         
31048         * class.h: merged MonoArrayClass into MonoClass
31049
31050         * class.c (mono_class_create_from_typedef): compute the vtable size and
31051         allocate space to include the vtable inside MonoClass
31052         (mono_class_metadata_init): initialize the vtable
31053
31054 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
31055
31056         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
31057         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
31058         * image.c: endian fixes by Laurent Rioux.
31059         * object.h, object.c: rename MonoStringObject to MonoString and
31060         MonoArrayObject to MonoArray. Change some function names to conform to
31061         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
31062         guint16* as first argument, so don't use char*.
31063         Provide macros to do the interesting things on arrays in a portable way.
31064         * threads-pthread.c: updates for the API changes and #include <sched.h>
31065         (required for sched_yield()).
31066         * icall.c: updates for the API changes above.
31067         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
31068         platforms that need them.
31069
31070 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
31071
31072         * class.c: set the correct type for all the fundamental
31073         type when loading the class.
31074
31075 2001-10-05  Dick Porter  <dick@ximian.com>
31076
31077         * threads-pthread.c (pthread_mutex_timedlock): Simple
31078         compatibility version for C libraries that lack this call.
31079
31080 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31081
31082         * class.c: MonoTypes stored in MonoClass are stored as
31083         fundamental MonoTypes when the class represents a
31084         fundamental type (System.Int32, ...).
31085         The TypeHandle return by ldtoken is a MonoType*.
31086         * icall.c: ves_icall_get_data_chunk () write out all the
31087         PE/COFF stuff. Implement ves_icall_define_method (),
31088         ves_icall_set_method_body (), ves_icall_type_from_handle ().
31089         * image.c: properly skip unknown streams.
31090         * loader.h, loader.c: add type_class to mono_defaults.
31091         * metadata.c, metadata.h: export compute_size () as
31092         mono_metadata_compute_size () with a better interface.
31093         Typo and C&P fixes.
31094         * pedump.c: don't try to print the entry point RVA if there is no entry point.
31095         * reflection.c, reflection.h: many cleanups, fixes, output method
31096         signatures and headers, typedef and typeref info, compress the metadata
31097         tables, output all the heap streams, cli header etc.
31098         * row-indexes.h: typo fixes.
31099
31100 2001-10-04  Dick Porter  <dick@ximian.com>
31101
31102         * object.h: Add a synchronisation mutex struct to MonoObject
31103
31104         * object.c (mono_new_object): Initialise the object
31105         synchronisation mutexes
31106
31107         * icall.c: System.Threading.Monitor internal calls
31108         
31109         * threads-pthread.h:
31110         * threads-pthread.c: System.Threading.Monitor internal calls
31111
31112         * threads-types.h: New file, includes the system-specific thread
31113         structures
31114         
31115         * threads-pthread-types.h:
31116         * threads-pthread-types.c: New files, handle pthread-specific
31117         synchronisation types
31118
31119         * threads-dummy-types.h: 
31120         * threads-dummy-types.c: New files of dummy support for
31121         thread-specific types
31122
31123         * metadata.c:
31124         * image.c:
31125         * pedump.c: include mono-endian.h not endian.h
31126         
31127         * Makefile.am: More threads files.
31128         Name mono-endian.h not endian.h
31129
31130 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
31131
31132         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
31133         stuff and implement a few more bits.
31134         * icall.c: a field needs to be dereferenced twice. Do not use the same
31135         name for two variables in the same scope.
31136         * image.c, image.h: cleanups.
31137
31138 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
31139
31140         * class.c (mono_class_metadata_init): bug fix: compute the right size
31141
31142 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
31143
31144         * icall.c: implemented some of the Reflection internalcalls.
31145         * image.c, image.h: start writing out the PE/COFF image.
31146         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
31147         that does the reverse than decode_blob_size ().
31148         * object.c: use mono_metadata_encode_value (). Move here
31149         temporary implementation of mono_string_to_utf8 ().
31150         * rawbuffer.c: make malloc_map static.
31151
31152 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31153
31154         * metadata.c: fix type comparison for arrays.
31155         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
31156         Added a couple of new classes to monodefaults.
31157         * icall.c: added a couple of Reflection-related internalcalls.
31158         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
31159         Added a byval_arg MonoType to MonoClass.
31160
31161 2001-09-28  Dick Porter  <dick@ximian.com>
31162
31163         * icall.c:
31164         * threads-pthread.h: 
31165         * threads-pthread.c: Implemented internal calls for
31166         LocalDataStoreSlot operations.  Applied mutexes around all shared
31167         data.  Reworked the thread creation and Start() operations to
31168         avoid a race condition.
31169         
31170         * threads-dummy.h:
31171         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
31172
31173 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
31174
31175         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
31176
31177 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
31178
31179         * class.c, loader.c: warn and return NULL instead of erroring out.
31180         * icall.c: added System.AppDomain::getCurDomain().
31181         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
31182
31183 2001-09-25  Dick Porter  <dick@ximian.com>
31184
31185         * threads-pthread.h:
31186         * threads-pthread.c: Implemented timed thread joining and added
31187         System.Threading.Thread::Join_internal internal call
31188
31189         * icall.c: Added System.Threading.Thread::Join_internal internal call
31190
31191         * threads-dummy.h:
31192         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
31193
31194 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
31195
31196         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
31197         mono_string_intern () to implement the semantics of the ldstr opcode
31198         and the interning of System.Strings.
31199         * icall.c: provide hooks to make String::IsIntern and String::Intern
31200         internalcalls.
31201
31202 2001-09-23  Dick Porter  <dick@ximian.com>
31203
31204         * threads-dummy.c: 
31205         * threads-dummy.h: New files of dummy threading routines
31206
31207         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
31208         support code based on system specifics
31209
31210         Rename PTHREAD_LIBS to THREAD_LIBS
31211         
31212 2001-09-23  Dick Porter  <dick@ximian.com>
31213
31214         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
31215         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
31216         internal calls.
31217         (mono_thread_init): Set up a Thread object instance to return when
31218         the main thread calls Thread.CurrentThread
31219         (mono_thread_cleanup): Wait for all subthreads to exit
31220
31221         * icall.c: New internal calls for System.Threading.Thread::Sleep
31222         (including Schedule) and CurrentThread
31223
31224         * threads.h: New file, to insulate thread-specific stuff from the
31225         rest of the code
31226
31227 2001-09-21  Dick Porter  <dick@ximian.com>
31228
31229         * threads-pthread.h: 
31230         * threads-pthread.c: New file, for handling pthreads-style
31231         threading support.  Start() now starts a new thread and executes
31232         the ThreadStart delegate instance.
31233
31234         * icall.c: Added the internalcall for
31235         System.Threading.Thread::Start_internal
31236
31237         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
31238
31239 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
31240
31241         * loader.c: work around the different signatures for delegates
31242         constructors csc generates in compiled code vs the ones compiled in mscorlib.
31243
31244 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
31245
31246         * class.h, class.c: add mono_class_get_field_from_name ().
31247         * *: Fix C comments and other ANSI C issues.
31248
31249 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
31250
31251         * endian.h, assembly.c: fix some endianness issues.
31252
31253 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
31254
31255         * loader.h, load.c: add delegate_class to mono_defaults.
31256         Handle runtime provided methods in mono_get_method ().
31257
31258 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
31259
31260         * loader.c (mono_get_method): use pinvoke for internal call
31261
31262         * icall.c: use pinvoke for internal call
31263
31264         * loader.c (method_from_memberref): set the method name
31265
31266 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
31267
31268         * metadata.c: help the compiler generate better code for
31269         mono_class_from_mono_type ().
31270
31271 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
31272
31273         * class.c (mono_class_metadata_init): delayed computing of the
31274         class size to mono_class_metadata_init ()
31275
31276 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
31277
31278         * class.c, class.h: add an interfaces member to MonoClass.
31279         * image.c, image.h: add assembly_name field to MonoImage
31280         from the assembly table.
31281         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
31282
31283 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
31284
31285         * class.c: Handle Array in mono_class_from_mono_type ().
31286         * metadata.c, pedump.c: some endian fixes.
31287
31288 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
31289
31290         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
31291         * metadata.c: fix small problem introduced with the latest commit.
31292
31293 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
31294
31295         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
31296         We don't need a MonoMetadata pointer anymore to compare signatures in
31297         mono_metadata_signature_equal (), update callers.
31298         Reduced memory usage an number of allocations for MonoMethodHeader and
31299         MonoMethodSignature.
31300
31301 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
31302
31303         * metadata.c: added compare for szarray.
31304
31305 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
31306
31307         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
31308         and add a couple more types to it and mono_defaults. Give an hint on
31309         classes that need implementing in our corlib and are referenced
31310         in mscorlib.
31311
31312 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
31313
31314         * class.h, class.c: keep track if a class is also an Enum.
31315         * loader.c: Implement a couple more types for use in libffi
31316         marshalling. Gives better diagnostics when failing to dlopen
31317         a library. Set method->klass for P/Invoke methods, too.
31318
31319 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
31320
31321         * class.c, class.h: add a MonoType this_arg to MonoClass that
31322         represents a pointer to an object of the class' type that
31323         can be used by the interpreter and later the type cache.
31324         Add best guess alignment info for valuetype objects.
31325
31326 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
31327
31328         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
31329         into MonoType: one less level of indirection and allocation and
31330         simplifies quite a bit of code. Added cache for MonoTypes that are
31331         used frequently, so that we don't need to allocate them all the time.
31332
31333 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
31334
31335         * class.c (mono_class_create_from_typedef): System.Enum is also a
31336         value type, although it does not derive from System.ValueType
31337         (maybe a bug in the ms compiler?)
31338
31339         * metadata.c (mono_type_size): return the right size for value types
31340
31341         * loader.c (mono_get_method): only initialize method header if not abstract
31342
31343         * class.c (mono_class_from_mono_type): use mono_default values. 
31344
31345 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
31346
31347         * *: use MonoClass pointers instead of <type_tokens>
31348         
31349         * class.h: new flag: metadata_inited.
31350
31351         * class.c (mono_class_metadata_init): impl.
31352         (mono_class_instance_size): impl.
31353         (mono_class_data_size): impl.
31354
31355 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31356
31357         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
31358         MonoClass now has the name and name_space fields. 
31359         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
31360         mono_get_method () takes and optional MonoClass as argument.
31361         Removed mono_typedef_from_name() and added mono_class_token_from_name()
31362         instead that takes advantage of a map from class names to typedef
31363         tokens in MonoImage.
31364
31365 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
31366
31367         * metadata.c: zero is not a valid alignment boundary.
31368         Merge MONO_TYPE_VOID in default decoding code.
31369
31370 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
31371
31372         * image.h: merged MonoMetadata into MonoImage
31373
31374         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
31375         identify the type of elements.
31376
31377 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
31378
31379         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
31380         * cil-coff.h: split MonoMSDOSHeader and add size info.
31381         * image.c: add some consistency checks.
31382         * metadata.c: fix row size computation: one programmer
31383         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
31384         add explanation for the locator routine.
31385         Fix decoding of size in method header.
31386         
31387 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
31388
31389         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
31390         (g_concat_dir_and_file): Bring g_concat_dir_and_file
31391         function from gnome-libs.  This uses the right path separator
31392         based on the OS, and also works around a bug in some systems where
31393         a double slash is not allowed. 
31394         (default_assembly_name_resolver): Use g_concat_dir_and_file
31395         (mono_assembly_open): ditto.
31396
31397 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
31398
31399         * metadata.c (mono_metadata_signature_equal): impl.
31400
31401         * *: void is now a realy MonoType (instead of using NULL)
31402         
31403         * metadata.c (do_mono_metadata_parse_type): use
31404         mono_metadata_parse_type to parse void value.
31405
31406 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
31407
31408         * metadata.c, metadata.h: in the signature and method header store
31409         only the space required for holding the loca vars and incoming arguments.
31410
31411 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
31412
31413         * metadata.c (do_mono_metadata_parse_type): treat void like any
31414         other type (instead of assigning NULL);
31415
31416 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
31417
31418         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
31419
31420 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
31421
31422         * image.c (do_mono_image_open): added a cache for arrays.
31423
31424 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
31425
31426         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
31427         decode a single column from a row in a metadata table and changes
31428         to take advantage of it in the typedef locator (gives a nice speed up).
31429         Store offset info for function params.
31430
31431 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
31432
31433         * image.h (MONO_IMAGE_IS_CORLIB): removed 
31434
31435 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
31436
31437         * assembly.c: how could mono_assembly_close () had ever worked?
31438         * metadata.c, metadata.h: provide offset info for local vars.
31439         Implement mono_type_size () to take care of alignment as well
31440         as size (it was mono_field_type_size in cli/class.c before).
31441
31442 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
31443
31444         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
31445
31446         * assembly.h (CORLIB_NAME): set to corlib.dll
31447
31448         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
31449
31450 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
31451
31452         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
31453         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
31454         tokentype.h: massive namespace cleanup.
31455
31456 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
31457
31458         * metadata.h, metadata.c: decode exception clauses when parsing method header.
31459
31460 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
31461
31462         * metadata.c (mono_metadata_free_type): added check for type !=
31463         NULL (void) before calling mono_metadata_free_type()
31464
31465 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
31466
31467         * metadata.h, row_indexes.h: added header with enumerations to use
31468         to index in the columns from tables in metadata and to decode coded
31469         tokens: we should start using this instead of embedding magic numbers
31470         all over the code.
31471
31472 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
31473
31474         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
31475         Move metadata_t info from cli_image_info_t to MonoImage, where
31476         it's easily accessible. Changed all the uses accordingly.
31477         Added the method and class caches to MonoImage.
31478         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
31479         and mono_metadata_decode_value () signature to be more consistent
31480         with the other parse functions (and simplify code). Taken advantage
31481         of zero-length array allocation with GCC. Removed reduntant (and
31482         wrong) MonoFieldType struct and use MonoParam instead. Changed
31483         mono_metadata_parse_field_type () to use common code for parsing.
31484         Added mono_metadata_typedef_from_field () and
31485         mono_metadata_typedef_from_method () to lookup a typedef index from a
31486         field or method token.
31487         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
31488
31489 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
31490
31491         * metadata.c (mono_metadata_parse_field_type): Implement. 
31492         (do_mono_metadata_parse_type): Split engine from
31493         mono_metadata_parse_type, so that we can create smaller structures
31494         for things that just have one pointer to the MonoType (look at
31495         the MonoFieldType)
31496
31497 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
31498
31499         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
31500         as Jan Gray found out, it is incorrect. 
31501
31502 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
31503
31504         * assembly.c: Implement asssembly loading.  This loads an image
31505         and loads all the referenced assemblies.  Come to think of it, we
31506         could always do lazy loading of the assemblies. 
31507
31508         * image.c (mono_image_open): Keep loaded images in a hashtable.
31509
31510         * image.h (MonoImage): Add reference count.
31511
31512 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
31513
31514         * assembly.c (mono_assembly_open): Keep track of the file name in
31515         case the assembly has no ASSEMBLY table.
31516
31517         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
31518         from get.c here.
31519
31520 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
31521
31522         * metadata.c, metadata.h: decode local vars in method header
31523         parse function. Change callers accordingly.
31524
31525 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
31526
31527         * metadata.h, cil-coff.h: protect against multiple inclusion.
31528         Added some new structures to hold information decoded from metadata:
31529         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
31530         and relevant decoding/free functions.
31531         * metadata.c: implement decoding functions. Add warning for out of bounds
31532         index in mono_metadata_locate(). Implement mono_get_method () to retreive
31533         all the info about a method signature and invocation. Remove check on
31534         uninitialized local var in parse_mh() and fix memory leak.
31535
31536 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
31537
31538         * metadata.h: More macros.
31539
31540         * tokentype.h: New file.
31541
31542 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
31543
31544         * assembly.c: added a consistency check and initialize
31545         some structures with g_new0().
31546         * metadata.c: fixed a couple more bugs in table size computation
31547         and add other checks for out-of bound access to metadata.
31548
31549 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
31550
31551         * metatada.c: fix bugs computing table sizes. Spew a
31552         warning when index in string heap is out of bounds.
31553
31554 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
31555
31556         * metadata.h: Add a couple of macros to manipulate tokens. 
31557
31558 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
31559
31560         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
31561         cli_section_tables).
31562
31563 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
31564
31565         * metadata.c (mono_metadata_user_string): New function, provides
31566         access to the UserString heap. 
31567
31568 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
31569
31570         * metadata.c: Add inline documentation.
31571
31572 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
31573
31574         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
31575         files. 
31576
31577 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
31578
31579         * typeattr.h: New file, TypeAttribute flags. 
31580
31581 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
31582
31583         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
31584         mono_assembly_ensure_section): Section loading code.
31585         (load_section_tables): Load the sections.
31586
31587         * mono/metadata/metadata.c (mono_metadata_locate_token,
31588         mono_metadata_locate): Functions to locate the information
31589         definition given a token or a table and an index.
31590         (mono_metadata_compute_table_bases): New.
31591         (compute_size): New function to compute the sizes of the various
31592         tables.
31593
31594         * mono/metadata/metadata.h: Finish listing the different index
31595         types. 
31596
31597         * mono/metadata/pedump.c: Improve to dump new information.
31598
31599 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
31600
31601         * mono/metadata/metadata.c: Entered all the tables matching
31602         Beta2. 
31603
31604         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
31605
31606
31607
31608