2009-05-16 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
2
3         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
4         wrappers, this is now done in the JIT.
5         
6         * class.c (mono_set_generic_sharing_supported): New internal function.
7         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
8
9 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
10
11         * metadata-verify.c: Verify the exported type table.
12
13 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
14
15         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
16
17 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
18
19         * metadata-verify.c: Verify the file table.
20
21 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
22
23         * metadata-verify.c (verify_assembly_table): Fix an error message.
24
25         * metadata-verify.c: Verify the assemblyref table.
26
27 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
28
29         * metadata-verify.c (verify_assembly_table): Fix the valid
30         bits mask for flags.
31
32 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
33
34         * debug-helpers.c (mono_method_full_name): Print generic parameters of
35         generic methods as well.
36
37 2009-05-15  Geoff Norton  <gnorton@novell.com>
38
39         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
40         use-case and is significantly more performant than the wapi layer.
41
42 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
43
44         * metadata-verify.c: Verify the assembly table.
45
46 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
47
48         * metadata-verify.c: Fix rows limit check.
49
50 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
51
52         * metadata-verify.c: Verify the fieldrva table.
53
54 2009-05-13  Mark Probst  <mark.probst@gmail.com>
55
56         * sgen.c: Speed up weak links and finalizers by grouping them by
57         generation.
58
59 2009-05-13  Mark Probst  <mark.probst@gmail.com>
60
61         * marshal.c (delegate_hash_table_add): When overwriting an entry,
62         free the old GCHandle (only applies to SGen).
63
64 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
65
66         * loader.c (mono_get_method_from_token): Avoid the expensive call to
67         mono_metadata_load_generic_params () for non-generic methods.
68
69 2009-05-12  Mark Probst  <mark.probst@gmail.com>
70
71         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
72         New function for returning a monitor's weak link if it has one.
73
74         * sgen-gc.c: Remove an object's monitor's weak link (if it has
75         one) when clearing a domain.  These can still be around because
76         the object might not have been collected.
77
78 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
79
80         * gc.c: Fix a warning.
81
82 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
83
84         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
85         prevous wait that resulted in a deadlock on Windows when initializing
86         the runtime form DllMain. Also results in improved startup time.
87         (finalizer_thread): Get rid of thread_started_event.
88         * threads.c, threads-types.h (mono_thread_create_internal): Return the
89         resulting MonoThread.
90
91         Contributed under MIT/X11 license.
92
93 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
94
95         * metadata-verify.c: Verify the implmap table.
96         Don't require that #US and #Strings be present.
97
98 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
99
100         * security-core-clr.c: Delegate checks are done at creation time,
101         not a invocation time. Fix exception for Telerik Silverlight demo
102
103 2009-05-11  Mark Probst  <mark.probst@gmail.com>
104
105         * sgen-gc.c (need_remove_object_for_domain): Remove the special
106         case for the Thread class.
107
108         * threads.c: Do clean-up of abort exception/state in
109         thread_cleanup() instead of Thread.free_internal().  Also clean up
110         current_appcontext.  The reason we have to do that is because
111         those references might point into another domain and if that
112         domain is unloaded before the thread is finalized, they point to
113         invalid data.
114
115 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
116
117         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
118         stub signatures.
119         
120         Contributed unter MIT/X11 license.
121
122 2009-05-09  Miguel de Icaza  <miguel@novell.com>
123
124         * verify.c, metadata-verifier.c: Add support for disabling the
125         verifier in some builds.
126
127         [ Sorry, my previous commit accidentally commited some work in
128         progress ]
129
130 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
131
132         * class.c (mono_class_setup_fields): Set class->field.first for
133         generic instances.
134
135 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
136
137         * metadata-verify.c: Verify the typespec table.
138
139 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
140
141         * metadata-verify.c: Verify the module table.
142
143 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
144
145         * metadata-verify.c: Verify the methodimpl table.
146
147 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
148
149         * metadata-verify.c: Verify the property table.
150
151 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
152
153         * debug-helpers.c (mono_method_desc_match): Add support for generic
154         glob patterns.
155
156 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
157
158         * metadata-verify.c: Verify the propertymap table.
159
160 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
161
162         * metadata-verify.c: Verify the event table.
163
164         * metadata-verify.c (search_sorted_table): Fix offset
165         calculation.
166
167 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
168
169         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
170
171 2009-05-01  Mark Probst  <mark.probst@gmail.com>
172
173         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
174         because mono_delegate_free_ftnptr() needs it.
175
176 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
177
178         * metadata-verify.c: Verify the eventmap table.
179
180 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
181
182         * metadata-verify.c: Verify the standalonesig table.
183
184 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
185
186         * metadata-verify.c: Verify the field layout table.
187
188 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
189
190         * class.c (mono_type_get_name_recurse): Don't crash
191         for ownerless generic params.
192
193         * debug-helpers.c (mono_type_get_desc): Correct the format
194         for ownerless generic params.
195
196 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
197
198         * metadata-verify.c: Verify the class layout table.
199
200 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
201
202         * metadata-verify.c: Verify the decl security table.
203
204 2009-04-30  Mark Probst  <mark.probst@gmail.com>
205
206         * domain.c (mono_domain_set_internal_with_options): Don't do
207         anything if the old domain is the same as the old one.  Fixes
208         #499326.
209
210 2009-04-30  Mark Probst  <mark.probst@gmail.com>
211
212         * appdomain.c: Deregister the reflection_info roots when unloading
213         a domain.
214
215         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
216         memory allocated by a domain and frees its disappearing links.
217
218         * boehm-gc.c, null-gc.c: Empty implementation of
219         mono_gc_clear_domain().
220
221 2009-04-30  Mark Probst  <mark.probst@gmail.com>
222
223         * appdomain.c (clear_cached_vtable): Free the static fields memory
224         block.
225
226 2009-04-30  Mark Probst  <mark.probst@gmail.com>
227
228         * gc.c: Set the correct domain when invoking finalizers.
229
230         * appdomain.c: Set the correct domain when creating threads.
231
232 2009-04-30  Mark Probst  <mark.probst@gmail.com>
233
234         * sgen-gc.c: Fix skip size for vectors.
235
236 2009-05-03  Martin Baulig  <martin@ximian.com>
237
238         * mono-debug-debugger.c
239         (mono_debugger_check_breakpoints): Check class init handlers even
240         if we don't have any method load handers.
241
242 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
243
244         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
245         returning refonly assemblies if refonly is FALSE. Fixes #499013.
246
247 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
248
249         * metadata-verify.c: Verify the field marshal table.
250
251 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
252
253         * metadata-verify.c: Verify the custom attribute table.
254
255 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
256
257         * metadata-verify.c: Verify the constant table.
258
259 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
260
261         * metadata-verify.c: Verify the memberef table.
262
263 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
264
265         * metadata-verify.c (get_coded_index_token): Remove
266         dead argument.
267
268 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
269
270         * metadata-verify.c: Verify the interfaceimpl table.
271
272 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
273
274         * verify.c: Improve error message.
275
276         * debug-helpers.c (mono_type_get_desc): Harden the code that
277         deals with VAR and MVAR.
278
279 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
280
281         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
282         part of #498692.
283
284 2009-04-23 Tom Hindle <tom_hindle@sil.org>
285
286         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
287         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
288
289 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
290
291         * security-core-clr.c: Avoid redundant checks for platform code, 
292         e.g. check for method and for class (very common) and check
293         for class and outer class (less common)...
294
295 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
296
297         * reflection.c: Avoid returning random cattrs for synthetic methods.
298         Fixes #498545.
299
300 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
301
302         * assembly.c: assemblies in the GAC should never be shadow-copied.
303
304 2009-04-26  Mark Probst  <mark.probst@gmail.com>
305
306         * domain.c, domain-internals.h: Disable
307         track_resurrection_{objects,handles}_hash in MonoDomain if using
308         SGen.
309
310 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
311
312         * metadata-verify.c: Verify the param table.
313
314 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
315
316         * metadata-verify.c (verify_typedef_table): Range check FieldList and
317         MethodList.
318
319         * metadata-verify.c (verify_method_table): Proper check the ParamList
320         field.
321
322 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
323
324         * metadata-verify.c (verify_method_table): Check for runtime
325         implemented functions such as delegate .ctors. Remove spurious
326         printf.
327         
328 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
329
330         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
331
332 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
333
334         Don't allocate MonoGenericInfo for ownerless generic params.
335         * class-internals.h (MonoGenericParam::info): Move field to ...
336         (MonoGenericParamFull): ... this.  New struct.
337         (MonoGenericContainer::type_params): Change type to
338         MonoGenericParamFull.
339         (MonoGenericParam, MonoGenericContainer): Update accessors.
340         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
341         'info' field for ownerless generic param.
342         (mono_metadata_load_generic_params): Update to changes.
343         * reflection.c (mono_reflection_create_generic_class): Likewise.
344         (reflection_methodbuilder_to_mono_method): Likewise.
345         (mono_reflection_initialize_generic_parameter): Likewise.
346
347 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
348
349         Don't use MonoGenericParamInfo for ownerless generic params.
350         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
351         use ParamInfo class at all.
352         (mono_class_from_generic_parameter): Use them.
353         (make_generic_param_class): Fix a couple of instances where 'pinfo
354         == NULL' wasn't handle.
355
356 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
357
358         * class.c (make_generic_param_class): Carve out of ...
359         (mono_class_from_generic_parameter): ... here.
360
361 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
362
363         Simplify mono_class_from_generic_parameter
364         * class-internals.h (MonoGenericParamInfo::token): New field.
365         * metadata.c (mono_metadata_load_generic_params): Initialize it
366         from metadata.
367         * class.c (mono_class_from_generic_parameter): Use it instead of
368         searching through metadata.
369
370 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
371
372         * metadata-verify.c: Add verification of the method table.
373
374 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
375
376         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
377         Delegate::Invoke optimization.
378
379 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
380
381         * appdomain.c (mono_domain_create_appdomain_internal): Free the
382         string returned by get_shadow_assembly_location_base.
383
384         * appdomain.c (get_shadow_assembly_location_base): Add a comment
385         about caller's ownership.
386
387 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
388
389         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
390         reflection memory on domain unload.
391
392         * domain.c (mono_domain_free): Don't free refobject_hash, let the
393         reflection cleanup code do it.
394
395         * domain-internals.h: Add mono_reflection_cleanup_domain.
396
397         This fixes a memory leak for managed mirrors of reflection objects
398         on domain unload. 
399
400 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
401
402         * metadata-verify.c: Implement more verification of the field table.
403
404 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
405
406         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
407         doesn't try to parse the input assembly, which can be broken.
408
409 2009-04-23  Mark Probst  <mark.probst@gmail.com>
410
411         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
412         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
413         by using the lowest bit in the link to store whether the link is
414         tracked.  Move the track_resurrection hashes into boehm-gc.c.
415
416 2009-04-22  Miguel de Icaza  <miguel@novell.com>
417
418         * Makefile.am: Split the console support in platform specific code
419         and put together a framework for making this easy in the future so
420         that we can start splitting code instead of having a mess of PLATFORM_WIN32
421
422 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
423
424         * pedump.c: Fix a warning.
425
426 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
427
428         * verify.c (mono_delegate_type_equal): Compare valuetypes using
429         mono_class_from_mono_type to avoid bad interactions with the dual representation
430         of the generic type definition.
431
432 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
433
434         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
435         get the MonoClass for the call context type as it might be a generic
436         instance.
437
438         Fixes #491483.
439
440 2009-04-21  Mark Probst  <mark.probst@gmail.com>
441
442         * object-internals.h: The Thread object has no execution_context
443         member anymore.
444
445         * threads.c, threadpool.c, threads-types.h: Accessor functions for
446         the execution context.
447
448         * appdomain.c: Bump corlib version.
449
450 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
451
452         * verify.c (do_newobj): Improve error message.
453
454 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
455
456         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
457         is nested in the filter block.
458
459         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
460         block is not fully nested.
461
462         Fixes #495656.
463
464 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
465
466         * verify.c (verify_type_compatibility_full): Compare MonoClass and
467         not MonoType to check for equality of valuetypes as the generic type
468         definition allows for two different encodings: the generic type definition
469         class or a generic instance over the GTD arguments.
470
471         Fixes #496175.
472
473 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
474
475         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
476
477         * verify.c (do_initobj): Improve error message.
478
479 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
480
481         * metadata-verify.c: Enable pe verification as the issue with #496453
482         is that the authenticode data directory have a different unspecified
483         format. Ignore it for now.
484
485         * pedump.c: Run the metadata verifier together with the IL verifier.
486
487         Fixes ##496453.
488
489 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
490
491         * metadata-verify.c: Temporarily disable pe verification due to #496453.
492
493 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
494
495         * class.c (can_access_type): Check visibility against
496         the element type for pointers and arrays.
497
498         Fixes #496150.
499
500 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
501
502         * metadata-verify.c: Fix cli and table verification to use information
503         from the MonoImage. A lot of duplicated code got killed.
504
505 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
506
507
508         This patch starts to integrate the metadata verifier with the runtime code.
509
510         This patch causes major regression in functionality for the metadata verifier
511         as cli and table verification are disabled since they require to be ported to
512         use MonoImage information.
513
514         * image.c (do_mono_image_load): Split the code in this function
515         into mono_image_load_pe_data and mono_image_load_cli_data.
516         Add     care_about_pecoff parameter to not load pecoff data.
517         Call into the metadata verifier for pecoff and cli verification.
518
519         * image.c (mono_image_open_raw): New function that doesn't perform
520         any parsing of the image contents.
521         
522         The reason for the 3 new functions is to give pedump better control
523         into the interaction with the verifier.
524
525         * metadata-internals.h: Add new functions from image.c as part of the
526         internal mono API.
527
528         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
529         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
530         to make those functions work together with the runtime.
531
532         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
533         true if the image needs to be verified.
534
535         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
536
537         * pedump.c: Use new metadata verifier API.
538
539 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
540
541         * object.c (mono_install_vtable_trampoline): Make this receive a
542         trampoline creation function instead of trampoline, allowing the JIT
543         to use a different trampoline for each vtable.
544
545 2009-04-18  Mark Probst  <mark.probst@gmail.com>
546
547         * object.c (mono_raise_exception): Don't reset the thread abort
548         exception state here.
549
550 2009-04-18  Mark Probst  <mark.probst@gmail.com>
551
552         * icall-def.h: New icall for getting the thread abort exception
553         state for a thread.
554
555         * object.c, thread.c, object-internals.h: A thread's abort
556         exception state is now a GC handle.  To get the object it stands
557         for, we must move it into the current app domain, if it's
558         different than the one where it originated from.
559
560         * appdomain.c: Bump corlib version.
561
562         * domain.c, domain-internals.h: New function for setting the
563         domain and migrate the thread abort exception or not.
564
565 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
566
567         * metadata-verify.c: Add initial verification of the
568         field table.
569
570 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
571
572         * metadata-verify.c: Add a macro to conditionally enable
573         dumping of verification information. Add  make_coded_token
574         and search_sorted_table to enable search sorted tables
575         by a given coded token.
576
577 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
578
579         * metadata-verify.c: Add array mapping from table index
580         to description offset. Add get_col_offset and get_col_size
581         functions.
582
583 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
584
585         * metadata-verify.c: Add remaining table descriptions offsets.
586         Add remaining coded index descriptions.
587
588 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
589
590         * metadata-verify.c: Fixed constant table description.
591         Fixed calculation of HasCustomAttribute coded index size.
592         Fixed calculation of size for many table indexes. 
593
594 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
595
596         * pedump.c (dump_metadata): Dump table offset instead
597         of useless pointer in memory.
598
599 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
600
601         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
602
603 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
604
605         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
606         a missing of for interface types.
607
608 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
609
610         * metadata-verify.c (verify_pe_optional_header): Add comment of why
611         the code is commented.
612
613         * metadata-verify.c (verify_resources_table): Remove spurious printf
614         and don't fail if there are unmanaged resources. Gmcs generates a useless
615         one     for all assemblies - I bet it's some MS compatibility junk.
616
617 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
618
619         * metadata-verify.c (verify_typedef_table): Verify the extends field.
620
621         * metadata-verify.c (mono_image_verify): Add a is_corlib.
622
623         * verify-internals.h: Same.
624
625         * pedump.c: Fix for mono_image_verify new signature.
626
627 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
628
629         * metadata-verify.c (verify_typedef_table): Verify for some invalid
630         flags combinations.
631
632 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
633
634         * metadata-verify.c (verify_module_table): Ignore the generation field.
635
636 2009-04-15  Martin Baulig  <martin@ximian.com>
637
638         * debug-mono-symfile.c
639         (mono_debug_symfile_lookup_location): Don't print a warning for
640         unknown extended opcodes if they're within 0x40 and 0x7f.
641
642 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
643
644         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
645         invoke signatures returning an enum. Fixes #494847.
646
647 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
648
649         * metadata-verify.c: Initial code to verify the typedef table.
650
651 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
652
653         * verify.c (mono_method_verify): Don't fail if an unconditional branch
654         with non empty stack happens before the beginning of a try block.
655
656         Fixes #494812.
657
658 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
659
660         * metadata-verify.c: Verify typename and typenamespace fields of
661         the typeref table.
662
663 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
664
665         * metadata-verify.c: Initial code to verify the typeref table.
666
667 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
668
669         * verify.c (verify_delegate_compatibility): Fix error message.
670
671 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
672
673         * security-core-clr.c: Fix typo
674
675 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
676
677         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
678         a MonoGHashTable to keep its values alive.
679         (emit_marshal_boolean): Fix a warning.
680
681 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
682
683         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
684         not have any interface configured for IPv4/IPv6.
685
686 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
687
688         * assembly.c: fix typo in error message.
689
690 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
691
692         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
693         allocating the location holding the this argument to prevent
694         'too many root sets' errors.
695
696         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
697         to mark fields as special static.
698         (mono_field_static_get_value): Handle special static fields.
699         (mono_field_static_set_value): Ditto.
700
701         * class-internals.h (struct _MonoClassField): Document this.
702
703 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
704
705         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
706           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
707           case.  This will handle when managed code returns null to native code.
708
709         Code is contributed under MIT/X11 license.
710
711 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
712
713         * object.c (build_imt_slots): Changing a free to a g_free to match
714           the g_malloc0 in add_imt_builder_entry that allocated this memory.
715
716         Code is contributed under MIT/X11 license.
717
718 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
719
720         * marshal.c (emit_marshal_boolean): Adding code to ensure that
721           the correct TRUE value is passed through the marshaling layer.
722
723         Code is contributed under MIT/X11 license.
724
725 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
726
727         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
728         correctly. Fixes #492330.
729         
730         * marshal.c: Fix the embedding of object pointers into JITted code in
731         the native-to-managed wrappers by allocating some GC tracked memory, and
732         embedding the address of that.
733
734 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
735
736         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
737         pointers into the vtable.
738
739 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
740
741         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
742
743         * verify.c (verify_ldftn_delegate): Improve error message.
744
745 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
746
747         * reflection.c (my_mono_class_from_mono_type): Remove.
748
749 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
750
751         Prepare to reduce memory usage of owner-less generic parameters (1/n)
752         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
753         and constraints fields into ...
754         (MonoGenericParamInfo): ... this.
755         (mono_generic_param_info, mono_generic_container_get_param_info):
756         New accessors.
757         * class.c, debug-helpers.c, icall.c: Update to changes.
758         * metadata.c, reflection.c, verify.c: Likewise.
759
760 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
761
762         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
763
764         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
765         
766         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
767         booleans with sbytes.
768
769 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
770
771         * class.c (can_access_instantiation): Verify accesibility of element types
772         for arrays and pointers.
773
774         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
775
776         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
777
778         Fixes #493068.
779
780 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
781
782         * verify.c (do_invoke_method): Improve error messages.
783
784 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
785
786         * verify.c:  Fixing the MSVC build.
787
788         Code is contributed under MIT/X11 license.
789
790 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
791
792         * security-core-clr.c: Simplify get_reflection_caller not to call
793         mono_method_get_last_managed (another stack walk) and adjust the
794         callers to handle a (should not happen) NULL return value.
795
796 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
797
798         Add accessors to some MonoGenericParam fields
799         * class-internals.h (mono_generic_param_owner): New accessor.
800         (mono_generic_param_num): Likewise.
801         (mono_type_get_generic_param_owner): New helper.
802         (mono_type_get_generic_param_num): New helper.
803         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
804
805 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
806
807         * class-internals.h (mono_generic_container_get_param): New wrapper.
808         * class.c, icall.c, metadata.c, verify.c: Use it.
809
810 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
811
812         Fix gtest-252.cs
813         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
814         the standard case/loop.  In particular, don't complain about
815         references to generic type definitions.
816
817 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
818
819         * debug-helpers.c (dis_one): Decode string arguments.
820
821 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
822
823         * pedump.c (dump_verify_info): Dump type name correctly.
824
825 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
826
827         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
828         are larger than code size.
829
830         This can happen in valid code if the try/catch block is not followed by any instruction
831         and do a backward branch on the leave instruction.
832
833         Fixes #492494.
834
835 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
836
837         * security-core-clr.c: Fix typo while comparing second method names
838         in can_avoid_corlib_reflection_delegate_optimization
839
840 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
841
842         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
843
844         Fixes #487738.
845
846 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
847
848         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
849         a MVAR using a class context.
850
851         Fixes #490335.
852
853 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
854
855         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
856
857         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
858
859         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
860         functions supplied by the JIT for the SGEN GC.
861
862         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
863         
864 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
865
866         monitor.c (mono_monitor_try_enter_internal):
867         Added calls to profile monitor contentions.
868         Also duplicated a small piece of code (the "get the monitor" logic)
869         from the fast path to the slow path, and changed the relevant goto
870         statements, so that monitor acquisition events can be emitted from the
871         slow path (this is by Paolo Molaro).
872
873 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
874
875         * profiler.c, profiler.h, profiler-private.h:
876         Added support for profiling monitor contentions.
877
878 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
879
880         * metadata-verify.c: Verify the modules table.
881
882 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
883
884         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
885         using the context of the method been verifier and not of the method been called.
886
887         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
888         safely inflate generic types. 
889
890 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
891
892         * security-core-clr.c: Change the strategy for checking the 
893         "reflection using delegates optimization" to avoid unneeded 
894         attributes in multiple class libraries.
895
896 2009-04-02  Mark Probst  <mark.probst@gmail.com>
897
898         * sgen-gc.c: Remove object element in the disappearing link struct
899         by storing the object pointer in the link.
900
901 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
902
903         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
904
905 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
906
907         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
908
909         * verify.c (mono_method_verify): Do proper bounds checking of exception
910         clause ranges.
911
912 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
913
914         * loader.c (mono_field_from_token): Don't crash if the field parent could
915         not be decoded.
916
917 2009-03-31  Mark Probst  <mark.probst@gmail.com>
918
919         * sgen-gc.c: Execute critical finalizers after ordinary
920         finalizers.
921
922         * class-internals.h, domain.c: Add CriticalFinalizerObject to
923         mono_defaults.
924
925 2009-03-31 Jb Evain <jbevain@novell.com>
926
927         * verify.c (do_ldstr): don't check if a string is in the user strings
928         heap if the current image is dynamic.
929
930 2009-03-31  Mark Probst  <mark.probst@gmail.com>
931
932         * sgen-gc.c: Wait until the last finalizer has executed when
933         returning from WaitForPendingFinalizers.
934
935 2009-03-31  Martin Baulig  <martin@ximian.com>
936
937         * mono-debug-debugger.h (MonoDebuggerEvent): Add
938         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
939         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
940         (mono_debugger_event_create_appdomain): New function.
941         (mono_debugger_event_unload_appdomain): New function.
942
943         * appdomain.c (mono_domain_create_appdomain_internal): Call
944         mono_debugger_event_create_appdomain().
945
946 2009-03-31  Martin Baulig  <martin@ximian.com>
947
948         * mono-debug-debugger.c
949         (mono_debugger_register_class_init_callback): Also register the
950         class init callback if the class is already initialized to make
951         things work with shadow copied assemblies.
952
953 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
954
955         * security-core-clr.c
956         (mono_security_core_clr_ensure_reflection_access_field): Let 
957         critical code access the field (just like we do for methods). Use
958         check_field_access helper.
959         (mono_security_core_clr_ensure_reflection_access_method): Use 
960         check_field_access helper.
961
962 2009-03-31  Mark Probst  <mark.probst@gmail.com>
963
964         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
965         call the run-finalize function directly.
966
967         * gc.c, gc-internal.h: Make run_finalize() non-static.
968
969 2009-03-31  Mark Probst  <mark.probst@gmail.com>
970
971         * sgen-gc.c: Use a separate struct for disappearing links.
972
973 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
974
975         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
976         * MaxIOVectorLength enabled, just ignore them.
977         Fixes bug #349688.
978
979 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
980
981         * metadata-verify.c: Fix eglib build.
982
983 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
984
985         * threads-types.h: Fix the win32 build.
986
987 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
988
989         * class.c: move coreclr inheritance/override checks to 
990         security-core.clr.c
991         * security-core.clr.c|h: add code from class.c with additional
992         documentation. Fix override check when the method is not critical.
993
994 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
995
996         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
997         (match_class): Ditto.
998
999 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1000
1001         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
1002
1003         * metadata-verify.c: Implement table layout row size calculation. Verify
1004         the total size of the tables.
1005
1006 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1007
1008         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
1009
1010 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1011
1012         * appdomain.c:
1013         * console-io.[ch]: added new mono_console_init() to make sure that
1014         file descriptors 0, 1 and 2 are opened.
1015         Bug #489019 fixed.
1016
1017 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
1018
1019         * appdomain.h: Export a new callback type and a new function to
1020         set this callback. This allow a mono host to provide it's own
1021         definition for "platform code".
1022         * metadata-internals.h: Add a core_clr_platform_code flag on 
1023         _MonoImage to (cache and) know if it is representing platform 
1024         code.
1025         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
1026         on platform code images.
1027         * security-core-clr.c|h 
1028         (mono_security_set_core_clr_platform_callback): Allow the host
1029         to provide it's own platform check definition.
1030         (mono_security_core_clr_determine_platform_image): Detect if an 
1031         image is platform code (using the specified callback).
1032         (mono_security_core_clr_is_platform_image): Return cached value 
1033         for platform code.
1034
1035 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
1036
1037         * threads.c (mono_create_thread): New helper function to wrap CreateThread
1038         which has different parameter types for the 'tid' argument in windows and
1039         the io-layer.
1040
1041         * appdomain.c attach.c threads.c: Use the new helper.
1042
1043 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1044
1045         * metadata-verify.c: Verify valid table bits.
1046
1047 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1048
1049         * metadata-verify.c (verify_metadata_header): Store size in the size field.
1050
1051         * metadata-verify.c: Add initial table schema verification.
1052
1053 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
1054
1055         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
1056         obtain the refclass argument needed by mono_param_get_objects (). Fixes
1057         #488383.
1058
1059         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
1060
1061         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
1062
1063 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
1064
1065         * security-core-clr.c: Add/update documentation
1066
1067 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
1068
1069         * marshal.c (emit_marshal_object): Generate code to throw an exception
1070         instead of throwing it. Fixes #488670.
1071
1072 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
1073
1074         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
1075         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
1076         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
1077         and add a call to mono_security_core_clr_ensure_delegate_creation
1078         to do the extra checks required by CoreCLR.
1079         * security-core-clr.c|h: Add function to check delegate creation,
1080         both in the binding and accessibility, under CoreCLR.
1081
1082 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
1083
1084         * reflection.c (mono_reflection_create_dynamic_method): when 
1085         coreclr is enabled make sure that every resolved object are
1086         checked (e.g. field and method access).
1087         * security-core-clr.c|h: Add function to check objects resolved
1088         when a dynamic method is created.
1089
1090 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1091
1092         * metadata-verify.c: Cache directory rva translations.
1093
1094         * metadata-verify.c: Add cli-header and streams verification.
1095
1096 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1097
1098         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
1099         the wrong offset (8 instead of 6).
1100
1101 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
1102
1103         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
1104         methods, return the native function address itself. Fixes
1105         #487758.
1106
1107 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1108
1109         * console-io.c: some of the values for control characters might not be
1110         present.
1111
1112 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
1113
1114         * exception.c|h: Add helpers to create [Field|Method]AccessException
1115         * icall.c: Add required coreclr check calls for field reflection.
1116         Move the existing (method) check logic into security-core-clr.c
1117         * security-core-clr.c: Add functions to check if the access of a
1118         field or method is allowed when reflecting under coreclr. This is
1119         mostly done using a stack walk to find the "real" caller: i.e. the
1120         code that is calling the reflection
1121
1122 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
1123
1124         * gc-internal.h: Change location of gc_wrapper.h
1125
1126 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
1127
1128         * class.c: Simplification to coreclr checks for overrides that
1129         makes it easier to set breakpoints.
1130
1131 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
1132
1133         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
1134         mono_security_core_clr_method_level): Avoid potential 
1135         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
1136         user/application code) and make it easier to set breakpoints
1137
1138 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
1139
1140         * metadata-verify.c: Reject cli header tables that mono don't handle.
1141
1142 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
1143
1144         * pedump.c: Fix CLI header dumping.
1145
1146 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
1147
1148         * metadata-verify.c: More CLI header verification.
1149
1150 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
1151
1152         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
1153
1154 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
1155
1156         * metadata-verify.c: Initial verification of the CLI header.
1157
1158 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
1159
1160         * metadata-verify.c (verify_resources_table): Fix verification of zero
1161         sized resource section and id entries count.
1162
1163 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
1164
1165         * icall.c: Handle user types in many Type icalls. Fixes #486303.
1166
1167 2009-03-17  Jb Evain  <jbevain@novell.com>
1168
1169         * profiler.c: call mono_gc_base_init from mono_profiler_load.
1170
1171 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
1172
1173         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
1174         (mono_gc_make_descr_for_array): Ditto.
1175
1176 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
1177
1178         * verify.c (mono_verifier_is_class_full_trust): Add support for
1179         CoreCLR security mode where trusted assemblies are defined as
1180         "platform code".
1181
1182 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1183
1184         * metadata-verify.c: Add minimal PECOFF resource verification.
1185
1186 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1187
1188         * metadata-verify.c: Be less restrictive with some coff fields.
1189
1190 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1191
1192         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
1193         params as boxed values on stack. Fixes #485706.
1194
1195 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1196
1197         * console-io.c: the termios values may vary in different flavors of unix.
1198
1199 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1200
1201         * console-io.[ch]: return the entire set of control characters when
1202         initializing the terminal.
1203         * appdomain.c: bump corlib version.
1204
1205 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
1206
1207         * mono-perfcounters.c: added support for in-process custom
1208         performance counters.
1209
1210 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
1211
1212         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
1213
1214 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
1215
1216         * metadata-verify.c: Verify the data pointed by the import table. 
1217
1218 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
1219
1220         * metadata-verify.c (load_data_directories): Store data
1221         directory contents.
1222
1223         * metadata-verify.c: Verify the import table. 
1224
1225 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1226
1227         * metadata-verify.c: Verify data directories.
1228
1229 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1230
1231         * metadata-verify.c: Check section header flags.
1232
1233 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1234
1235         * appdomain.c: if the assembly name is a shadow-copied file, return
1236         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
1237         in mono_make_shadow_copy.
1238         * icall.c: if the assembly name is a shadow-copied file, replace it
1239         with the original assembly path.
1240
1241         Bug #484244 fixed. NUnit tests for corlib can be run without
1242         --noshadow now.
1243
1244 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
1245
1246         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
1247         entries when the table is reallocated.
1248
1249         * icall.c: Allocate the memory used by the mono_ptr_array macros using
1250         mono_gc_alloc_fixed () since it contains GC refs.
1251
1252 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
1253
1254         * reflection.c (ensure_complete_type): New helper function to call
1255         type resolve handlers for unfinished dynamic types.
1256         (resolve_object): Call it for MonoClassFields. Fixes #483852.
1257
1258 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
1259
1260         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
1261         #483247.
1262
1263 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
1264
1265         * appdomain.c (get_shadow_assembly_location): Fix memleak.
1266
1267 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
1268
1269         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
1270         between GCHandles of type WeakTrackResurrection and the objects they
1271         point to.
1272
1273         * gc.c: Partly implement the sematics of GCHandles of type 
1274         WeakTrackResurrection: these handles should only be cleared after the
1275         finalizer of the object they are pointing to has ran.
1276
1277 2009-03-06  Mark Probst  <mark.probst@gmail.com>
1278
1279         * icall.c: Partially revert r126631 because using the jump
1280         trampolines for generic shared methods makes it superfluous.
1281
1282 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
1283
1284         * threads.c (handle_store): Create the 'threads' hash table with the proper
1285         MONO_HASH_VALUE_GC type.
1286
1287 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
1288
1289         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
1290         FIRST_GC_TRACKED.
1291
1292         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
1293         and LAST_GC_TRACKED as a GC root.
1294
1295         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
1296
1297         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
1298         the static data even if it consists of 1 reference.
1299
1300         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
1301         if there is a GC descriptor.
1302
1303         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
1304         instead of through the GC since they contain no object references.
1305
1306 2009-03-05  Mark Probst  <mark.probst@gmail.com>
1307
1308         * generic-sharing.c (instantiate_other_info): Always return a jump
1309         trampoline for method code.
1310
1311 2009-03-05  Marek Habersack  <mhabersack@novell.com>
1312
1313         * culture-info-tables.h: generated to include the en-tt culture.
1314
1315 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
1316
1317         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
1318         capture the thread context.
1319
1320         * object.c (mono_async_result_new): Cache the invoke wrappers to
1321         ExecutionContext::Capture.
1322
1323 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
1324
1325         * marshal.h: Add a prototype for what mono_compile_method returns
1326         for invoke wrappers.
1327
1328         * gc.c: Use the new prototype declaration.
1329
1330 2009-03-04  Geoff Norton  <gnorton@novell.com>
1331
1332         * boehm-gc.c: Add some MONO_LOG tracing for the GC
1333         * gc-internal.h:
1334         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
1335
1336 2009-03-04  Martin Baulig  <martin@ximian.com>
1337
1338         * mono-debug.h
1339         (mono_debugger_runtime_invoke): Removed.
1340
1341         * mono-debug-debugger.c
1342         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
1343
1344 2009-03-02  Martin Baulig  <martin@ximian.com>
1345
1346         * mono-debug.h
1347         (mono_debugger_unhandled_exception): Removed.
1348         (mono_debugger_handle_exception): Removed.
1349         (mono_debugger_throw_exception): Removed.
1350
1351         * mono-debug.c
1352         (mono_debug_debugger_version): Bump to 5.
1353
1354         * mono-debug-debugger.c: Moved the exception handling code to
1355         ../mini/debug-mini.c
1356
1357 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1358
1359         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
1360         finalize_objects_hash.
1361
1362         * gc.c: Use the separate lock to access the finalize_objects_hash field.
1363         
1364         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
1365         field.
1366
1367         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
1368         cache.
1369
1370         * image.c (mono_image_close): Free it.
1371         
1372         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
1373         allowing a creation of a wrapper which invokes its method using a CALLVIRT
1374         on the this argument.
1375
1376         * gc.c (run_finalize): Optimize the calling of the finalizers.
1377
1378 2009-03-03  Martin Baulig  <martin@ximian.com>
1379
1380         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
1381         of the `MonoGenericInst' changes.
1382
1383 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1384
1385         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
1386         mono_array_class_get_cached to reduce locking contention. Extract
1387         a domain var.
1388
1389         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
1390         intermediary managed arrays. Use caching version of mono_array_new
1391         to allocate the result array.
1392
1393         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
1394
1395         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
1396
1397         * locales.c (create_names_array_idx):  Use mono_array_new_cached
1398         to reduce locking contention.
1399
1400 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1401                 
1402         * object.c (mono_method_add_generic_virtual_invocation): Put back the
1403         thunk builder code for the non-interface case.
1404
1405 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
1406
1407         * object.c (get_generic_virtual_entries): New helper function to collect
1408         the virtual generic method instances which need to be added to an IMT
1409         thunk.
1410         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
1411         Instead of creating a new IMT thunk, reset the vtable slot to the
1412         trampoline, the thunk will be created the next time the trampoline is called.
1413         (build_imt_slots): Add support for virtual generic methods in interfaces by
1414         adding to the IMT thunk all the methods registered using 
1415         mono_method_add_generic_virtual_invocation ().
1416
1417         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
1418         (struct _MonoIMTCheckItem): Ditto.
1419
1420         * object.c (mono_method_add_generic_virtual_invocation): Take a
1421         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
1422         the IMT thunk to include all items.
1423         
1424         * object.c (mono_class_create_runtime_vtable): Add a missing
1425         mono_loader_unlock ().
1426
1427 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1428
1429         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1430
1431         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
1432
1433 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1434
1435         * object-internals.h: Rename _MonoReflectionEvent to
1436         MonoReflectionMonoEvent so it reflects the right managed type.
1437         Add a MonoReflectionEvent that correctly represents System.EventInfo.
1438
1439         * icall.c:
1440         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
1441         type.
1442
1443 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1444
1445         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
1446         intermediary managed arrays. Use caching version of mono_array_new
1447         to allocate the result array.
1448
1449 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1450
1451         * reflection.c: Use cached version of mono_array_new alongside
1452         the mono_reflection_get_custom_attrs_by_type call path.
1453
1454 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1455
1456         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
1457         intermediary managed arrays. Use caching version of mono_array_new
1458         to allocate the result array.
1459
1460         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
1461
1462 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1463
1464         * icall.c: Add small implementation of a growable stack bound array.
1465
1466         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
1467
1468         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
1469         intermediary managed arrays. Use caching version of mono_array_new
1470         to allocate the result array.
1471
1472 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
1473
1474         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
1475         helps Enum::CompareTo to be implemented without reboxing all enums
1476         to their underlying type.
1477 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
1478
1479         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
1480         since it acquires a global lock leading to scalability problems.
1481
1482         * profiler.c: Make the stat profiler work with multiple appdomains, this
1483         currently only works when no appdomains are unloaded.
1484
1485 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1486
1487         * appdomain.c: make the check to avoid copying when the assembly is
1488         already shadow copied actually work.
1489
1490 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
1491
1492         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1493
1494         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
1495         changes to the managed side.
1496
1497 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
1498
1499         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
1500         classes + a separate lock for it, as it is used frequently at runtime, not
1501         just during metadata loading/JIT compilation.
1502
1503         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
1504         for szarrays.
1505         
1506         * object-internals.h (mono_class_from_name_cached): New macro to cache
1507         the results of the lookup locally without having to declare a static
1508         variable to hold it.
1509         (mono_class_get_field_from_name_cached): Ditto.
1510         (mono_array_class_get_cached): Ditto.
1511
1512         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
1513         the new macros.
1514         
1515         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
1516         slower search in metadata.
1517
1518         * pedump.c: Fix a warning.
1519
1520 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
1521
1522         * reflection.c (encode_locals): Add checks for user types.
1523         (method_encode_clauses): Ditto.
1524         (method_encode_code): Ditto.
1525         (mono_image_create_token): Ditto.
1526
1527         * object-internals.h: Change the type of more fields from MonoReflectionType*
1528         to MonoObject*.
1529
1530 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
1531
1532         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
1533         the a thread does not suspend within 100ms.
1534
1535         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
1536         in addition to StopRequested as well.
1537
1538         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
1539
1540         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
1541         search the method_hash before inserting a new entry, to avoid crashes when
1542         the same method is inserted multiple times, causing the old 
1543         MonoDebugMethodInfo structure to be freed by the value dtor function.
1544
1545 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1546
1547         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
1548         SO_EXLUSIVEADDRUSE where available.
1549
1550 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
1551
1552         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
1553         runtime invoke wrappers, this time it is string ctor wrappers, which
1554         pass a dummy string as 'this' instead of their obj argument. Fixes
1555         #478473.
1556
1557 2009-02-21  Jb Evain  <jbevain@novell.com>
1558
1559         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1560         only get create_culture once.
1561
1562 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
1563
1564         * reflection.c (mono_reflection_setup_internal_class): Move the user type
1565         check before the locking.
1566         
1567         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
1568         (mono_reflection_create_runtime_class): Ditto.
1569         (mono_reflection_sighelper_get_signature_local): Ditto.
1570         (mono_reflection_sighelper_get_signature_field): Ditto.
1571
1572         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
1573         is a System.MonoType object or similar.
1574         (monotype_cast): New helper function to cast a MonoObject to a 
1575         MonoReflectionType object.
1576
1577         * object-internals.h: Change MonoReflectionType* members in structures to
1578         MonoObject* members to force the usage of the monotype_cast () function.
1579
1580         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
1581         structures/arrays. This causes us to assert instead of crashing when 
1582         instances of user defined subclasses of System.Type are encountered.
1583
1584 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1585
1586         * cil-coff.h:
1587         * icall-def.h:
1588         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
1589         win32 resource loaded from a PE file.
1590
1591         * image.c: fix mono_image_lookup_resource.
1592
1593 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1594
1595         * icall-def.h:
1596         * threads-types.h:
1597         * threads.c: added internal call for WaitHandle.SignalAndWait.
1598
1599 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
1600
1601         * cominterop.c : Adding cominterop_type_from_handle and 
1602           registering it as an icall.  Replacing all references
1603           to type_from_handle.
1604
1605         Code is contributed under MIT/X11 license.
1606
1607 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1608
1609         * Makefile.am: Add lock-tracer.h and lock-trace.c.
1610
1611         * appdomain.c: Call the tracer init function.
1612
1613         * domain-internals.h: Enable the tracer for the domain locks.
1614
1615         * image.c: Enable the tracer for image locks.
1616
1617         * loader.c: Enable the trace for the loader lock.
1618
1619         * lock-tracer.h:
1620         * lock-tracer.c: Initial implementation of the lock trace utility.
1621         The tracer requires a compile time define to be enabled and a env var
1622         to be enabled at runtime.
1623
1624 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1625
1626         * domain.c (mono_domain_code_foreach): Improve documentation.
1627
1628 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1629
1630         * appdomain.c:
1631         * generic-sharing.c:
1632         * object.c:
1633         * reflection.c:  Adjust locking order to the new semantics where the loader lock
1634         comes first.
1635
1636 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
1637
1638         * domain.c: Add mono_domain_code_* functions that perform locking
1639         around the domain codeman.
1640
1641         * domain-internals.h: Export those functions.
1642
1643         * object.c: Use new functions instead of acquiring the domain lock.
1644
1645 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
1646
1647         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
1648         delegate. Fixes #477396.
1649
1650 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1651
1652         * reflection.c (create_custom_attr): Get rid of alloca.
1653
1654 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
1655
1656         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
1657           Adding exception handling for all CCW calls.
1658
1659         Code is contributed under MIT/X11 license.
1660
1661 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1662
1663         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
1664
1665         * marshal.c (emit_marshal_boolean): Add null checks to the new 
1666         native->managed marshalling code. Fixes #476247.
1667
1668 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1669
1670         * class.c (mono_class_get_vtable_entry): Move the addition of
1671         static rgctx invoke wrappers for vtable methods here, this simplifies
1672         a lot of code and causes fewer rgctx wrappers to be created.
1673
1674         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
1675         name of the statistics to begin with an uppercase.
1676
1677 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1678
1679         * reflection.c: Revert previous change as it breaks the build.
1680         
1681 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1682
1683         * verify.c: Properly handle SZARRAY element type.
1684
1685         Fixes #474271.
1686
1687 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1688
1689         * reflection.c (mono_image_create_method_token): Correctly encode
1690         MethodDef MemberRefParent token.
1691
1692         Fixes #472845.
1693
1694 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1695
1696         * image.c (mono_image_close): Delete the critical section before
1697         freeing the memory holding it.
1698
1699 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1700
1701         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
1702         Fixes #476257.
1703
1704 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1705
1706         * pedump.c (main): Call mono_marshal_init so pedump
1707         doesn't crash.
1708
1709 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1710
1711         * loader.c (method_from_memberref): Properly fix #474271 and
1712         don't break the runtime bad.
1713
1714 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1715
1716         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
1717         (mono_domain_alloc0): Ditto.
1718
1719 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1720
1721         * loader.c (method_from_memberref): Don't abort if the array
1722         method is not found. A regular loader failure is more informative
1723         and correct.
1724
1725         Fixes #474271.
1726
1727 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1728
1729         *loader.c: Guard MonoImage::method_cache/methodref_cache
1730         using the image lock instead of the loader lock.
1731
1732         * metadata.h: Add comments about which fields are protected by
1733         the image lock.
1734
1735 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1736
1737         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
1738
1739         * generic-sharing.c (mono_method_construct_object_context): Remove the
1740         wrapper_type == NONE assert, it is not needed.
1741
1742 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
1743
1744         * reflection.c (clear_cached_object): New helper function.
1745         (mono_method_clear_object): New function to clear the cached reflection
1746         objects for a dynamic method.
1747
1748         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
1749         Partly fixes # 463323.
1750         
1751 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
1752
1753         * class.c:
1754         * loader.c:
1755         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
1756
1757 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
1758
1759         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
1760         take the image lock instead of the loader lock.
1761
1762         * metadata-internals.h: Export new functions.
1763
1764 2009-02-12  Miguel de Icaza  <miguel@novell.com>
1765
1766         * domain.c (app_config_parse): Remove another use of stat that is
1767         not necessary as g_file_get_contents already does the presence
1768         check. 
1769
1770 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
1771
1772         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
1773
1774         * marshal.c: Move the bstr handling code to cominterop.c.
1775
1776         * marshal.c: Remove some COM interop code missed previously.
1777
1778 2009-02-12  Miguel de Icaza  <miguel@novell.com>
1779
1780         More Paolo patches from the Wii port:
1781         
1782         * security.c: Remove ves_icall_System_Environment_get_UserName
1783         from here.
1784
1785         * icall.c: And put ves_icall_System_Environment_get_UserName
1786         here. 
1787
1788         * appdomain.c (mono_set_private_bin_path_from_config): Remove
1789         redundant call to stat that was only used to test for the file
1790         existence.   Patch from Paolo.
1791
1792         * gc.c (run_finalize): If COM is disabled, do not link in
1793         mono_marshal_free_ccw.
1794
1795         * generic-sharing.c: Use alloca.h here as well.
1796
1797 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
1798
1799         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
1800
1801 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
1802
1803         * cominterop.c cominterop.h: New files.
1804
1805         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
1806         function/typedefs which are needed by cominterop.c global.
1807
1808 2009-02-12  Mark Probst  <mark.probst@gmail.com>
1809
1810         * generic-sharing.c: Don't take the loader lock to guard image
1811         mempool allocs.
1812
1813 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1814
1815         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
1816         called without the loader lock which is required to guard MonoImage:tokens.
1817
1818 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1819
1820         * class.c:
1821         * metadata.c:
1822         * method-builder.c:
1823         * marshal.c:
1824         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
1825
1826 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1827
1828         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
1829         Rework the code to use regular mono_image_alloc/0.
1830
1831         * loader.c: Rework the code to use regular mono_image_alloc/0.
1832
1833         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
1834
1835 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
1836
1837         * object-internals.h : Fixing a typo in the 
1838           MonoReflectionComVisibleAttribute struct.
1839
1840         * marshal.c (cominterop_com_visible): Check the implemented 
1841           interfaces for ComImport.
1842
1843         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
1844           assume that bools should be treated as VARIANTBOOLs.
1845
1846         * marshal.c (emit_marshal_boolean): Adding cases for 
1847           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
1848
1849         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
1850           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
1851
1852         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
1853           should be treated as VARIANTBOOLs.    
1854
1855         Code is contributed under MIT/X11 license.
1856
1857 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1858
1859         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
1860         allocation with the image lock.
1861
1862 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1863
1864         This patch is the last of a series to remove explicit reference of MonoImage::mempool
1865         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
1866
1867         * object.c: Add mono_string_to_utf8_image.
1868
1869         * object-internals.h: Export mono_string_to_utf8_image.
1870
1871         * reflection.c: Rework all explicit references to the the image mempool to go thought
1872         the mono_image_alloc set of functions.
1873
1874 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1875
1876         This patch is the third of a series to remove explicit reference of MonoImage::mempool
1877         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
1878         and generics-sharing.c.
1879
1880         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
1881         as first argument. Note that this function remains broken as it doesn't perform locking around the
1882         mempool allocation.
1883
1884         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
1885
1886         * image.c: Add g_slist_append_image.
1887
1888         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
1889         the supplied image for allocation. Move code into mono_metadata_field_info_full.
1890
1891         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
1892         Fix all related code to do the same.
1893
1894         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
1895
1896         * metadata-internals.h: Fix the signatures.
1897
1898 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1899
1900         This patch is the second of a series to remove explicit reference of MonoImage::mempool
1901         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
1902         and similar to work using MonoImage.
1903
1904         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
1905         MonoMemPool.
1906
1907         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
1908
1909         * class.c (mono_metadata_signature_deep_dup): Same.
1910
1911         * class.c (inflate_generic_type): Same.
1912
1913         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
1914
1915         * metadata.c (mono_metadata_signature_dup_full): Same.
1916
1917         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
1918         mono_metadata_signature_dup_full.
1919
1920         * metadata.c (mono_metadata_type_dup): Same.
1921
1922         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
1923
1924         * reflection.c: Same.
1925
1926         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
1927
1928         * metadata-internals.h: Fix the signatures.
1929
1930         * class-internals.h: Same.
1931
1932 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1933
1934         This patch is the first of a series to remove explicit reference of MonoImage::mempool
1935         and use mono_image_alloc set of functions instead. 
1936
1937         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
1938         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
1939         of a MonoMemPool.
1940
1941         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
1942
1943         * class.c (g_list_prepend_mempool): Removed.
1944
1945         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
1946
1947         * image.c: Add g_list_prepend_image.
1948
1949         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
1950
1951         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
1952
1953
1954 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1955
1956         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
1957         mono_image_unlock.
1958
1959         * image.c (mono_image_init): Init the lock field.
1960  
1961         * image.c (mono_image_init): Cleanup the lock field.
1962
1963         * image.c: Add mono_image_(un)lock functions.
1964
1965 2009-02-11  Mark Probst  <mark.probst@gmail.com>
1966
1967         * class.c, class-internals.h: mono_method_get_context_general()
1968         combines the functionality of mono_method_get_context() and
1969         mini_method_get_context().
1970
1971         * generic-sharing.c, domain-internals.h:
1972         mono_method_construct_object_context() and
1973         mono_domain_lookup_shared_generic() moved from mini.
1974
1975         * icall.c (ves_icall_InternalInvoke): Handle the case where the
1976         method doesn't have the correct instantiation because it's shared
1977         generic code.  Fixes #473999.
1978
1979 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
1980
1981         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
1982
1983         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
1984         
1985 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
1986
1987         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
1988
1989         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
1990
1991         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
1992         and recheck the cache for dups after it.
1993
1994         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
1995
1996         Fixes one of the deadlocks found in #473150.
1997
1998 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
1999
2000         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
2001           For Win32, add additional break conditions for accept.
2002
2003         Code is contributed under MIT/X11 license.
2004
2005 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
2006
2007         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
2008         lazily initialize the native wrapper cache.
2009         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
2010         cache, since they are different from the normal wrappers.
2011
2012         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
2013
2014         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
2015         AOT compiled native wrappers.
2016
2017 2009-02-09  Geoff Norton  <gnorton@novell.com>
2018
2019         * appdomain.h:
2020         * security-core-clr.c: Allow enabling core-clr from the embedding
2021         API.
2022
2023 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2024
2025         * socket-io.c: when requesting all the local ips, if there are no
2026         interfaces up and running, MS returns 127.0.0.1.
2027
2028 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2029
2030         * mono-perfcounters-def.h: processor time is an inverse time.
2031         Fixes bug #468625.
2032
2033 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2034
2035         * socket-io.c: an empty host name returns the list of local IPs.
2036         Fixes bug #386637 part 1/2.
2037
2038 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
2039
2040         * verify.c (mono_class_interface_implements_interface): Call
2041         mono_class_setup_interfaces ().
2042         (merge_stacks): Ditto.
2043
2044 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
2045
2046         * class.c (mono_class_setup_interfaces): New function to lazily initalize
2047         klass->interfaces.
2048         (mono_generic_class_get_class): Don't initalize klass->interfaces.
2049         (mono_generic_class_get_class): Ditto.
2050
2051 2009-02-06  U-QUACK\miguel  <miguel@quack>
2052
2053         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
2054         they live in security.c
2055
2056         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
2057         another bit from Paolo's code.
2058
2059 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
2060
2061         * object.c (build_imt_slots): Add a small optimization to avoid inflating
2062         methods which will be discarded by add_imt_builder_entry ().
2063
2064         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
2065         need to be boxed.
2066
2067         * loader.c: Add a statistics for the size of the memberref signature cache.
2068         
2069         * loader.c (find_cached_memberref_sig): New helper function.
2070         (cache_memberref_sig): Ditto.
2071
2072         * loader.c: Cache the result of parsing memberref signatures, since otherwise
2073         they will be parsed again for every generic instantiation, leading to unbounded
2074         memory growth.
2075
2076 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2077
2078         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
2079         parameters of generic methods.
2080
2081         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
2082         after the original method is copied to the inflated method.
2083         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
2084
2085         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
2086         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
2087
2088         * class.c metadata.c: Update after the changes above.
2089
2090 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
2091
2092         * metadata-verify.c: Simplified error handling and added
2093         section table validation.
2094
2095 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2096
2097         * class-internals.h (MonoClassExt): New structure containing rarely used
2098         fields of MonoClass.
2099         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
2100         through a new 'ext' field.
2101
2102         * class.c (mono_class_alloc_ext): New helper function to allocate 
2103         class->ext.
2104
2105         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
2106
2107 2009-02-05  Mark Probst  <mark.probst@gmail.com>
2108
2109         * object.c (mono_object_get_virtual_method): Properly inflate
2110         generic methods.  Fixes #472692.
2111
2112 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
2113
2114         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
2115         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
2116         for the parent type, the created type must be ready to be used on a generic
2117         instantiation.
2118         We fill this_arg/byval_arg if the parent is a generic instance to make sure
2119         we won't have duplicated entries in generic_inst_cache.
2120
2121         Fixes #469553.
2122
2123 2009-02-05  Miguel De Icaza  <miguel@novell.com>
2124
2125         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
2126         replace with plain BSD per the comments on the bug MONO77637.
2127
2128 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2129
2130         * class.c (mono_class_get_generic_class): New accessor function.
2131         (mono_class_get_generic_container): Ditto.
2132
2133         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
2134         fields, similar to the ones in MonoMethod.
2135
2136         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
2137         (mono_class_create_from_typedef): Set klass->is_generic if needed.
2138
2139         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
2140         
2141         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
2142         the same information as element_class->byval_arg.
2143
2144         * class.c reflection.c: Remove references to class->byval_arg.
2145
2146         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
2147         klass->enum_basetype directly.
2148
2149         * verify.c metadata.c object.c icall.c reflection.c: Use 
2150         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
2151         directly.
2152
2153 2009-02-04  Miguel de Icaza  <miguel@novell.com>
2154
2155         * icall-def.h: Remove internal calls for sockets when
2156         DISABLE_SOCKET is defined, file system writing features when the
2157         OS only support reading and not writing data and Policy support if
2158         the Policy is disabled.
2159         
2160         * image.c (do_mono_image_open): Apply Paolo's patches for using
2161         mono_file_map_ APIs here.
2162
2163         * assembly.c: Add support for platforms to avoid prefix
2164         auto-detection. 
2165
2166 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
2167
2168         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
2169         warning.
2170
2171         * class.c (mono_class_inflate_generic_class): New helper function.
2172
2173         * class.c: Use mono_class_inflate_generic_class in a few places. Add
2174         statistics for inflated methods/classes.
2175
2176         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
2177
2178         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
2179         the call is made from Delegate.CreateDelegate () for the invoke method of
2180         a delegate.
2181
2182         * loader.c: Add a statistics for the memory occupied by inflated signatures.
2183
2184         * metadata.c (mono_metadata_signature_size): New helper function.
2185
2186         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
2187         generic instances.
2188
2189         * metadata.c (inflated_method_in_image): Avoid calling 
2190         mono_method_signature () if the method does not already have a signature.
2191
2192 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
2193
2194         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
2195         valuetype is compatible with target type, check by inheritance as a
2196         VT is not really compatible with System.ValueType, for example.
2197
2198         * verify.c (do_invoke_method): Improve error message.
2199
2200         * verify.c (do_box_value): If boxing a nullable, use the type argument
2201         on stack instead.
2202
2203         * verify.c (do_newobj): Improve error message.  
2204
2205         Fixes #469549.
2206
2207 2009-02-03  Miguel de Icaza  <miguel@novell.com>
2208
2209         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
2210
2211 2009-02-03  Mark Probst  <mark.probst@gmail.com>
2212
2213         * generic-sharing.c: Don't hold domain lock when calling
2214         instantiate_other_info().  Fixes #471958.
2215
2216         * domain-internals.h, loader.c: Describe locking policy of domain
2217         lock vs loader lock.
2218
2219 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
2220
2221         * verify.c (mono_delegate_signature_equal): Make it possible to check
2222         first-arg-bound delegates to static method.
2223
2224         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
2225         static methods with the first arg bound.
2226
2227         Fixes #469529.
2228
2229 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
2230
2231         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
2232         errors.
2233
2234         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
2235         under strict mode. Any type, when boxed can be seen as a reference type.
2236
2237         Fixes #469528.
2238
2239 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
2240
2241         * object.h: The lower bound of an array is a signed integer value.
2242         Introduce mono_array_lower_bound_t typedef. It should be used instead of
2243         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
2244
2245         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
2246         calculate the upper bound.
2247         
2248         Fixes #471252.
2249
2250 2009-02-02  Miguel de Icaza  <miguel@novell.com>
2251
2252         From Paolo's work, refactored, cleared up:
2253         
2254         * threadpool.c, icall.c: ifdef code that requires a working socket
2255         stack.
2256
2257         * metadata.c (mono_metadata_field_info): Do not attempt to return
2258         a value from a function declared as void.
2259
2260         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
2261         from the console stack.
2262
2263         * assembly.c: use strrchr instead of rindex.
2264
2265         * class.c, object.c, marshal.c, icall.c, reflection.c: include
2266         alloca.h on systems that have it.
2267
2268         * environment.c: Avoid code that uses stuff from
2269         HAVE_SYS_UTSNAME_H
2270         
2271         * appdomain.c: Include sys/time.h.
2272
2273         * console-io.c: include sys/ioctl.h if it is available.
2274
2275 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
2276
2277         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
2278
2279         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
2280         the method builder.
2281
2282         * marshal.c: Set mb->skip_visibility instead of setting it on the method
2283         after it was created and cached, as the later is not thread safe.
2284         
2285 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2286
2287         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
2288         called while the debugging module is not initialized. Fixes #471669.
2289
2290 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
2291
2292         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
2293
2294         Fixes #471255.
2295
2296 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2297
2298         * generic-sharing.c (lookup_or_register_other_info): Make sure the
2299         loader lock is not taken while the templates lock is held.  Fixes
2300         #471089.
2301
2302 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2303
2304         * metadata.c (type_in_image): Added a check to fix a monodis
2305         crash.
2306
2307 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2308
2309         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
2310         nullable arguments.
2311
2312         * object.c (mono_runtime_invoke_array): Ditto.
2313         
2314         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
2315         freeing wrappers of dynamic methods.
2316
2317         * loader.c (mono_free_method): Call it. Fixes #463323.
2318         
2319         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
2320         methods taking vtype/byref arguments, to fix yet another bug caused by
2321         the sharing of runtime invoke wrappers. Partly fixes #471259.
2322
2323 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
2324
2325         * debug-mono-symfile.c (check_line): Return NULL instead of returning
2326         <first file in file table>:1 when the IL offset does not have an associated
2327         line number.
2328
2329 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
2330
2331         * mono-debug.c (mono_debug_lookup_locals): New function to return local
2332         variable info for a method.
2333
2334         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
2335         
2336 2009-01-30  Jb Evain  <jbevain@novell.com>
2337
2338         * pedump.c: reuse code from monodis to make sure pedump honors
2339         MONO_PATH, which is needed to verify net_2_1 assemblies.
2340
2341 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
2342
2343         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
2344         there is no line number info.
2345
2346 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
2347
2348         Avoid some MonoType allocations
2349         * reflection.c (mono_reflection_initialize_generic_parameter):
2350         Reuse MonoType from param->pklass rather than allocating one.
2351         (mono_dynamic_image_free): Update to changes.
2352
2353 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
2354
2355         Rearrange some code to improve consistency
2356         * reflection.c (mono_reflection_setup_generic_class): Move body ...
2357         (mono_reflection_initialize_generic_parameter): ... here.
2358
2359 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
2360
2361         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
2362         with type constraints as an experiment.
2363
2364         * boehm-gc.c (on_gc_notification): Update mono_stats.
2365
2366 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
2367
2368         Avoid some allocations
2369         * class-internals.h (_MonoGenericInst::type_argv): Convert from
2370         pointer to tail array to avoid extra allocation.
2371         * metadata.c (free_generic_inst): Update to changes.
2372         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
2373         on-stack struct.
2374
2375 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
2376
2377         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
2378         return TRUE if the two type objects are the same.
2379
2380 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2381
2382         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
2383         (mono_class_native_size): Use klass->marshal_info->min_align instead of
2384         klass->min_align, since klass->min_align contains the managed alignment,
2385         while the native alignment can be different, like for longs on x86.
2386         Fixes #469135.
2387
2388         * class-internals.h (MonoMarshalType): Add a min_align field.
2389
2390 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
2391
2392         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
2393         the 1.0 format.
2394
2395 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2396
2397         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
2398         some comments about the usage of the used_regs field.
2399
2400         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
2401         Fixes #469217.
2402
2403 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2404
2405         * appdomain.c: return NULL instead of throwing FileNotFoundException
2406         when LoadAssembly() fails.
2407
2408 2009-01-23  Mark Probst  <mark.probst@gmail.com>
2409
2410         * metadata.c (mono_metadata_generic_param_equal): Only compare the
2411         image if the owner is NULL.  Fixes the AOT failures.
2412
2413 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
2414
2415         * metadata.c (mono_metadata_load_generic_params): Initialize the 
2416         MonoGenericParam structure using memset so the image field is initialized
2417         as well.
2418
2419 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2420
2421         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
2422         a plain store.
2423
2424 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
2425
2426         * class.c (mono_class_setup_vtable_general): In the generic instance
2427         optimization, set method->slot for abstract virtual methods. Fixes part of
2428         #467834.
2429
2430 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2431
2432         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
2433         which signals that the unloading has started but all appdomain services must
2434         remain operational.
2435
2436         * appdomain.c (mono_domain_unload): The initial state for unloading now
2437         is unloading_start and we switch to unloading after the managed call to
2438         AppDomain::DomainUnload has finished.
2439
2440         The new unloading state has to be created because managed code in the
2441         DomainUnload event can depend on things like the threadpool still working.
2442         The domain must remain fully functional while the event executes.
2443
2444         This shown as an issue due to Process::WaitForExit, which waits for
2445         async reads of stdout and stderr to complete. Since those are processed
2446         in the threadpool the code deadlocks because the DomainUnload callback 
2447         waits for the async read finished event, which should have been set by a
2448         threadpool job but has been discarded due to the domain been in unload
2449         state.
2450
2451 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2452
2453         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
2454         image must match.
2455
2456 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2457
2458         * reflection.c (resolve_object): For fields, inflate the class and
2459         then get the field in the inflated class.
2460
2461 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2462
2463         * object-internals.h (struct _MonoException): Added a comment
2464         explaining the new use of trace_ips.
2465
2466 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2467
2468         * generic-sharing.c (inflate_other_data): Inflate array methods
2469         correctly.
2470
2471         * loader.c, class-internals.h: Rename search_in_array_class() to
2472         mono_method_search_in_array_class() and make it non-static.
2473
2474 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2475
2476         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
2477         Hopefully fixes #458168.
2478
2479 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
2480
2481         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
2482         as it is performed elsewhere.
2483
2484         Code is contributed under MIT/X11 license
2485
2486 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
2487
2488         * mono-perfcounters-def.h: Add counters for asp.net requests total and
2489         requests queued.
2490         * object.c (mono_raise_exception): Increment the exceptions total
2491         counter when an exception is thrown.
2492         * class-internals.h: Add a location for storing the total number of
2493         asp.net requests served.
2494         * mono-perfcounters.c: Implement update support for asp.net counters
2495         from the class libraries. Implement read support for asp.net counters
2496         and exceptions total counter.
2497
2498 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2499
2500         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
2501         accessing klass->methods. Fixes #467385.
2502
2503 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2504
2505         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
2506         for byval arguments without an [Out] attribute. Fixes #467212.
2507
2508         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
2509         Fix compilation under android.
2510         
2511         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
2512         processed, scan them directly after they are copied, to achieve better locality
2513         and cache usage.
2514
2515         * socket-io.c: Applied patch from Koushik Dutta
2516         (koush@koushikdutta.com). Disable IPV6 when running under android.
2517
2518 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2519
2520         * icall.c (ves_icall_InternalExecute): Add write barriers.
2521
2522         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
2523         the GC code.
2524
2525         * sgen-gc.c: Implement write barriers in IL code.
2526
2527 2009-01-17  Geoff Norton  <gnorton@novell.com>
2528
2529         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
2530
2531 2009-01-17  Geoff Norton  <gnorton@novell.com>
2532
2533         * image.c: When unloading the image->references table, there can be gaps
2534         in it.  Ensure that we iterate every entry to avoid leaking assembly references
2535         when unloading an appdomain.
2536
2537 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
2538
2539         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
2540         speed up ptr-in-nursery checks.
2541
2542         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
2543         threads_lock () to prevent deadlocks.
2544
2545         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
2546         does not need to be scanned during minor collections, since writes to it
2547         must use write barriers.
2548
2549 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
2550
2551         * metadata-verify.c: Add pe nt header verification.
2552         
2553 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
2554
2555         * gc.c: Fix a few warnings when using SGEN.
2556
2557 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
2558
2559         * metadata-verify.c: Add pe optional header verification.
2560
2561 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
2562
2563         * sgen-gc.c: Add support for user defined marker functions, used by
2564         MonoGHashTable to avoid registering a GC root for every hash node.
2565
2566 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
2567
2568         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
2569         non-pinned roots into separate hashes to avoid having to traverse them
2570         in functions which are only interested in one kind.
2571
2572 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
2573
2574         * metadata-verify.c: Add pe header machine field verification.
2575         
2576 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
2577
2578         * metadata-verify.c: Add pe header size verification.
2579
2580 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
2581
2582         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
2583         using the GC, they don't contain references.
2584
2585         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
2586
2587 2009-01-13  Geoff Norton  <gnorton@novell.com>
2588
2589         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
2590         AppDomains created on the native side can be cleaned up on the native side.
2591
2592 2009-01-13  Geoff Norton  <gnorton@novell.com>
2593
2594         * appdomain.c: Ensure that we call mono_context_init for the embedding api
2595         as well as the managed api.
2596
2597 2009-01-13  Geoff Norton  <gnorton@novell.com>
2598
2599         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
2600         with a MonoAppDomain initialized against it.
2601
2602 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2603
2604         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
2605         
2606         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
2607
2608         * marshal.c: Avoid setting the exception clauses after a method has been entered 
2609         into the wrapper caches. Fixes #465700.
2610
2611         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
2612         method builder.
2613         (mono_mb_create_method): Set the clauses from the method builder.
2614
2615 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2616
2617         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
2618         Patch from Makoto Kishimoto.
2619
2620 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2621
2622         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
2623         encoding them as ROOT_DESC_COMPLEX.
2624         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
2625
2626 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
2627
2628         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
2629         no longer point to the nursery.
2630
2631         * sgen-gc.c: Add a few comments/FIXMEs.
2632         
2633         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
2634
2635         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
2636         initialization of the various _method variables thread safe. Fixes
2637         #465377.
2638
2639 2009-01-12  Mark Probst  <mark.probst@gmail.com>
2640
2641         * domain.c, domain-internals.h: Remove the shared_generics_hash
2642         and its lookup functions.
2643
2644 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
2645
2646         * socket-io.c:  Fixing the MSVC build. 
2647
2648         Code is contributed under MIT/X11 license.
2649
2650 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
2651
2652         * metadata-verify.c: Add pe header watermark verification.
2653
2654 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2655
2656         * metadata-verify.c: Add lfanew verification.
2657
2658 2009-01-12  Jb Evain  <jbevain@novell.com>
2659
2660         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
2661         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
2662
2663 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
2664
2665         * socket-io.c: Fix the build.
2666
2667         * environment.c: Fix an #ifdef.
2668
2669 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2670
2671         * threadpool.c (async_invoke_thread): Handle the wait function returning
2672         WAIT_IO_COMPLETION as well.
2673         (async_invoke_io_thread): Ditto.
2674
2675 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
2676
2677         * threads.c: Fixing the Windows build.
2678
2679         Code is contributed under MIT/X11 license.
2680
2681 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2682  
2683         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
2684         interrupt a wait.
2685         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
2686         the thread to wait again.
2687
2688 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2689
2690         * metadata-verify.c: Initial skeleton of the metadata verifier.
2691
2692         * pedump.c: Add support for the metadata verifier.
2693
2694         * verify-internal.h: Export the whole assembly metadata verifier function.
2695
2696 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2697
2698         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
2699
2700 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2701
2702         * Makefile.am: Upgrade dtrace-prelink.sh location.
2703
2704 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
2705
2706         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
2707         well. Otherwise the shutdown deadlock that happens on unix will can happen
2708         as well.
2709         If the main thread code finishes too fast it's possible that the finalizer
2710         thread won't have executed yet, won't record itself as the finalizer thread
2711         and the shutdown sequence will wait on it forever.
2712
2713 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
2714
2715         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
2716         with MSVC.
2717
2718 2009-01-08  Miguel de Icaza  <miguel@novell.com>
2719
2720         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
2721         Robert Jordan for pointing this out.
2722
2723 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
2724
2725         * icall.c
2726         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
2727         ves_icall_System_IO_DriveInfo_GetDriveType.
2728
2729 2009-01-07  Miguel de Icaza  <miguel@novell.com>
2730
2731         * icall.c: Wrap calls to mono_strtod in CriticalSection
2732         invocations when using eglib, to work around #464316.
2733
2734 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
2735
2736         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
2737         return value of GetCurrentDirectory to never access unitialized memory.
2738
2739 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
2740
2741         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
2742         return value of GetCurrentDirectory and expand the buffer if needed.
2743
2744         Fixes #459094.
2745
2746 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
2747
2748         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
2749           Adding a call to mono_init_com_types.
2750
2751         Code is contributed under MIT/X11 license.
2752
2753 2009-01-07  Geoff Norton  <gnorton@novell.com>
2754
2755         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
2756         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
2757         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
2758         be the value of the ip buffer.
2759
2760 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2761
2762         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
2763         interfaces_packed here.
2764
2765         Fixes part of #463294.
2766
2767 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2768
2769         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
2770
2771         Fixes part of #463294.
2772
2773 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2774
2775         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
2776         is a boxed complex as well.
2777
2778         Fixes part of #463294.
2779
2780 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2781
2782         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
2783         control if a methodspec should be created for the generic method definition from external assemblies.
2784         Caching of methodspec is done using the handleref hash table.
2785
2786         Fixes #462592.
2787
2788 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
2789
2790         * loader.c (find_method): When searching the interfaces of a class
2791         check the transitive closure of implemented interfaces.
2792
2793         Fixes #463303.
2794
2795 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
2796
2797         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
2798         
2799 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
2800
2801         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
2802         interfaces calculation to fill_valuetype_array_derived_types.
2803
2804         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
2805         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
2806         for example.
2807
2808         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
2809         interfaces for valuetypes if needed.    
2810
2811         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
2812         for their basetype as well. Types are array expanded if rank is > 0.
2813
2814         Fixes #400716.
2815
2816 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
2817
2818         * socket-io.h : Changing the signature of
2819           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
2820           the blocking state.
2821
2822         * icall-def.h :  Changing the signature of
2823           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
2824
2825         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2826           For Windows only.  Avoid blocking when calling accept by
2827           querying for a connection via select.  The loop also queries
2828           the thread state every 1000 micro seconds for the thread
2829           stop state.  This will avoid the process hanging on shutdown
2830           when using a TcpChannel that is never connected to.
2831
2832         Code is contributed under MIT/X11 license.
2833
2834 2008-12-30  Marek Safar  <marek.safar@gmail.com>
2835
2836         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
2837
2838 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
2839
2840         * class.c (get_implicit_generic_array_interfaces): Extract common
2841         code to a helper function making it a lot easier on the eyes.
2842
2843 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
2844
2845         * class.c (get_implicit_generic_array_interfaces): If the internal
2846         enumerator is an interface inflate System.Object instead of itself.
2847
2848         Fixes #461261.
2849
2850 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
2851
2852         * object.c (mono_runtime_invoke_array): Don't assert with
2853         byref nullable types.
2854
2855         * marshal.c (mono_marshal_get_runtime_invoke): To handle
2856         byref nullables we unbox the object and store it on the
2857         stack. 
2858         We can't use the boxed object since it is the T of Nullable<T>
2859         and the boxed representation of a nullable it's underlying type
2860         or null.
2861         We could cheat and create a boxed nullable and use the same
2862         machinery of other byref VTs but this feels like a hack and
2863         using the stack has the bonus of reducing heap pressure.
2864
2865         Fixes #461941.
2866
2867 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
2868
2869         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
2870         return value.
2871
2872         Fixes #461867.
2873
2874 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
2875
2876         * icall-def.h : Adding an internal call definition for 
2877           System.Environment.internalBroadcastSettingChange.
2878
2879         * icall.c : Adding a Windows only implementation to broadcast a 
2880           WM_SETTINGCHANGE when an environment variable has changed.
2881
2882         Code is contributed under MIT/X11 license.
2883
2884 2008-12-19  Mark Probst  <mark.probst@gmail.com>
2885
2886         * class.c, class-internals.h: Made
2887         mono_class_has_parent_and_ignore_generics() non-static.
2888
2889 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
2890
2891         * image.c: deal with the mmap failing when loading an image.
2892
2893 2008-12-17  Geoff Norton  <gnorton@novell.com>
2894
2895         * threadpool.c: Ensure that the io_queue_lock is initialized
2896         in all circumstances, as we always attempt to cleanup against it.
2897
2898 2008-12-17  Miguel de Icaza  <miguel@novell.com>
2899
2900         * icall.c (ves_icall_System_Environment_get_Platform): For
2901         compatibility reasons for existing client code we will keep
2902         returning 4 for a while.   
2903
2904         For how long will depend on the documentation being updated, and
2905         for us to give client code a chance to be updated.
2906
2907         This reverts the original decison on #433108 since we did not
2908         catch roughly 33 instances of the broken code in our own source
2909         code base, we did not catch failures on the buildbots, and QA did
2910         not bring this as a problem.
2911
2912         Only today I found some customer's code breaking due to our own
2913         class libraries not being fully updated and tracked it down to
2914         this change.  I am reverting it because if we could not even get
2915         our story straight in our own code base, how can we hope that our
2916         end user code be fixed?
2917
2918         As of this morning, our Wiki page that documents how to detect
2919         Unix had not been fixed.    
2920
2921 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
2922
2923         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
2924
2925         * class.c (mono_class_get_fields): Handle loading errors.
2926
2927 2008-12-12 Mark Mason <mmason@upwardaccess.com>
2928
2929         * 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.
2930         
2931 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
2932
2933         * mono-perfcounters.c: avoid warning.
2934
2935 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2936
2937         * reflection.c (ensure_runtime_vtable): Work on generic instances and
2938         make sure all interfaces have MonoClass::interface_id set.
2939
2940         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
2941         method table is property set.
2942
2943 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2944
2945         * class.c: New function mono_class_setup_interface_id that setup
2946         MonoClass::interface_id if needed.
2947
2948         * class-internals.h: Export new function.
2949
2950 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
2951
2952         * class.c: Add code to sanity check the vtable after setup_vtable_general
2953         has done it's work.
2954
2955 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2956
2957         * icall.c: make Assembly.GetExecutingAssembly work properly when
2958         reflection is used to invoke the method.
2959         Bug #321781 fixed.
2960
2961 2008-12-11  Mark Probst  <mark.probst@gmail.com>
2962
2963         * metadata/generic-sharing.c: Look for constraints in all type
2964         arguments, not just the first one.
2965
2966 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2967
2968         * appdomain.c: return the correct CodeBase for an Assembly instance
2969         that was loaded from the shadow-copy directories.
2970         Bug #458190 fixed.
2971
2972 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
2973
2974         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
2975
2976         * sgen-gc.c (check_object): New debugging helper function.
2977
2978         * object.c: Fix calls to mono_value_copy_array ().
2979
2980 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
2981
2982         * class.c (mono_class_setup_fields): If working on an inflated class
2983         first check if the generic definition did init with success.
2984
2985         Fixes #445361.
2986
2987 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
2988
2989         pedump.c (main): Fix a warning.
2990
2991 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
2992
2993         * object-internals.h : Adding a definition for 
2994           MonoReflectionComVisibleAttribute.
2995
2996         * marshal.c (cominterop_com_visible) :  Method added to check the 
2997           ComVisible attribute of a class.
2998
2999         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
3000           cominterop_raise_hr_exception added to consolidate common code 
3001           to raise hr exceptions.
3002
3003         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
3004           if a managed class should support IDispatch.
3005
3006         * marshal.c 
3007           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
3008           Added additional checks for managed object when getting 
3009           an IDispatch interface.
3010
3011         Code is contributed under MIT/X11 license.
3012
3013 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
3014
3015         pedump.c (main): Handle mono_get_method () returning NULL. 
3016
3017 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
3018
3019         * marshal.h: Fix a warning.
3020
3021 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
3022
3023         * marshal.c : Adding cominterop_release_all_rcws to release all
3024           runtime callable wrappers held by the runtime.
3025
3026         * marshal.h : Adding declaration for cominterop_release_all_rcws.
3027           
3028         Code is contributed under MIT/X11 license.
3029
3030 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
3031
3032         * metadata.c (mono_image_alloc_lock): New helper function.
3033         (mono_image_alloc0_lock): Ditto.
3034
3035         * metadata.c: Use the alloc_lock () helper functions for allocating
3036         memory from the image mempool.
3037
3038 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
3039
3040         * class.c (mono_class_from_generic_parameter): Document it's
3041         locking behavior. Fix double checked locking here, we stored in
3042         param->pklass a partially initialized MonoClass and no membar was used.
3043
3044 2008-12-05  Marek Habersack  <mhabersack@novell.com>
3045
3046         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
3047         (3) functions are present in the C library use them to do the
3048         job. If they are absent, make sure that the sum of int_part and
3049         dec_part is rounded before returning. This is necessary due to the
3050         division of dec_part by the power of 10 before the final addition
3051         is performed - if the result is not rounded in some cases it will
3052         yield invalid results.
3053
3054 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
3055
3056         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
3057         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
3058         instruction instead of a pointer constant.
3059
3060 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
3061
3062         * loader.c (mono_method_get_header): Do most of the work outside the
3063         loader lock, to avoid assembly load hook deadlocks.
3064
3065         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
3066         (mono_metadata_parse_type_full): Ditto.
3067
3068 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
3069
3070         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
3071         Make the stack depth fixed. Ensure proper argument passing to the backtrace
3072         funtions. Finally, use a lock to produce well ordered output.
3073
3074         The lock looks silly, as all calls to the corlib mempool should be guarded
3075         with the loader lock, but for some reason this fact doesn't help. 
3076
3077         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
3078
3079 2008-12-02  Mark Probst  <mark.probst@gmail.com>
3080
3081         * socket-io.c: 64 bit big-endian fixes.
3082
3083 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
3084
3085         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
3086         targets that require strict compatibility between the types.
3087
3088         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
3089         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
3090         Kill the strict argument and create a new one valuetype_must_be_boxed.
3091
3092         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
3093         state that all valuetypes must be boxed.
3094
3095         Fixes #448560.
3096
3097 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
3098
3099         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
3100         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
3101
3102         Contributed under MIT/X11 license.
3103
3104 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
3105
3106         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
3107         the inflate_generic_type machinery should handle it.
3108
3109         This avoids a crash when the field's flags is zero and it's type is
3110         a primitive.
3111         What happens is that mono_metadata_parse_type_full will see that opt_attrs
3112         is zero and will return one of the cached built-in primitive types. Since
3113         those types live in read-only memory, the code that copies it crashes.  
3114
3115 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3116
3117         * object.c: Don't put function descriptors into generalized IMT
3118         thunks.
3119
3120 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3121
3122         * class.c: Enable generic code sharing on PPC64.
3123
3124 2008-11-27  Mark Probst  <mark.probst@gmail.com>
3125
3126         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
3127         from mini/mini.c.
3128
3129         * generic-sharing.c: Allocate the method template slists from the
3130         image mempool so it doesn't leak.
3131
3132 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
3133
3134         * class.c (generic_array_methods): Release the linked list.
3135
3136 2008-11-27  Mark Probst  <mark.probst@gmail.com>
3137
3138         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
3139         invocation to g_utf16_to_utf8().
3140
3141 2008-11-26  Mark Probst  <mark.probst@gmail.com>
3142
3143         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
3144         arguments on big endian archs.
3145
3146 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3147
3148         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
3149         the type name (test added in corlib).
3150
3151 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3152
3153         * pedump.c: initialize perf. counters. Fixes a segv.
3154
3155 2008-11-25  Martin Baulig  <martin@ximian.com>
3156
3157         * mono-debug-debugger.c
3158         (mono_debugger_runtime_invoke): Return the exception object if an
3159         exception was thrown.  Visual Studio displays the exception object
3160         in the locals window.
3161
3162 2008-11-24  Mark Probst  <mark.probst@gmail.com>
3163
3164         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
3165         ftnptr.
3166
3167 2008-11-24  Mark Probst  <mark.probst@gmail.com>
3168
3169         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
3170         MONO_TYPE_U are sizeof (gpointer), too.
3171
3172 2008-11-24  Mark Probst  <mark.probst@gmail.com>
3173
3174         * marshal.c (mono_type_native_stack_size): Fixed size and
3175         alignment for reference types.
3176
3177 2008-11-23  Mark Probst  <mark.probst@gmail.com>
3178
3179         * class.c (mono_class_generic_sharing_enabled): Disable generic
3180         code sharing for PPC64.
3181
3182 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
3183
3184         * icall.c (mono_method_get_equivalent_method): Make sure
3185         method->klass->methods is inited before looping over it.
3186
3187 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
3188
3189         * object.c: when calling ExecuteAssembly in a newly created domain,
3190         the configuration file and application base are already set up.
3191         Bug #446353 take 2 fixed.
3192
3193 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
3194
3195         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
3196         Fixes #444715. Fix a warning.
3197
3198 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
3199
3200         * appdomain.c: write the full path of the assembly to the .ini file
3201         created when "shadow-copying"
3202         Bug #446353 fixed.
3203
3204 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
3205
3206         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
3207         if signature==FALSE.
3208
3209 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
3210
3211         * marshal.h : Fix the cygwin build.
3212            marshal.c:12442: undefined reference to `_IID_IMarshal'
3213           
3214         Code is contributed under MIT/X11 license.
3215
3216 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
3217
3218         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
3219           free threaded marshaler when QueryInterface is called on a COM callable
3220           wrapper requesting the IMarshal interface.
3221           
3222         Code is contributed under MIT/X11 license.
3223
3224 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
3225
3226         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
3227
3228         * reflection.c (mono_type_get_object): Special case the very common
3229         void type.
3230
3231         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
3232         hold typeof(void).
3233
3234 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
3235
3236         * process.h : Adding method declaration for
3237           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
3238           
3239         * process.c : Adding implementation for
3240           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
3241           
3242         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
3243           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
3244
3245         Code is contributed under MIT/X11 license.
3246
3247 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
3248
3249         * appdomain.c (unload_thread_main): Clean up threadpool by
3250         calling mono_thread_pool_remove_domain_jobs.
3251
3252         * domain-internals.h (struct _MonoDomain): Add new fields to
3253         help coordinate the cleanup of the threadpool.
3254
3255         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
3256         that cleans up the threadpool of all jobs associated with an appdomain.
3257         It does that by cleaning up the queues and making sure all active
3258         threads are accounted.
3259
3260         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
3261         unloaded or in the process of. Take this is such way that there is
3262         no race condition between another thread starting the unload and the
3263         current thread acknowledging it.
3264
3265         * threadpool.c (async_invoke_thread): Same.
3266
3267         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
3268         firing the new thread.
3269
3270         * threadpool.c (start_tpthread): Same.
3271
3272         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
3273
3274         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
3275
3276 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
3277
3278         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3279         Add support for DuplicateHandle.
3280         
3281         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3282         Add support for DuplicateHandle.
3283         
3284         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3285         Add support for DuplicateHandle.
3286
3287         Code is contributed under MIT/X11 license.
3288
3289 2008-11-06  Mark Probst  <mark.probst@gmail.com>
3290
3291         * class-internals.h: Make min_align into a whole byte.
3292
3293         * class.c: Set min_align for SIMD types to 16.
3294
3295 2008-11-05  Geoff Norton  <gnorton@novell.com>
3296
3297         * attach.c: Default the attacher to enabled for all cases including
3298         embedded.
3299
3300 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3301
3302         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
3303         change r117650.
3304
3305 2008-11-04  Mark Probst  <mark.probst@gmail.com>
3306
3307         * monitor.c, monitor.h: New function for querying offsets of
3308         members of MonoThreadsSync.
3309
3310 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
3311
3312         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
3313         to speed up this function and to avoid the boundless memory growth caused by
3314         the signature_dup () calls.
3315
3316 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
3317
3318         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
3319         wrapper.
3320
3321         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
3322         by 1 bit.
3323
3324         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
3325
3326 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3327
3328         * appdomain.c:
3329         * domain-internals.h: made mono_set_private_bin_path_from_config()
3330         "internal".
3331         * object.c: call the above function after setting the configuration
3332         file path for the root domain.
3333         Fixes bug #314478.
3334
3335 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3336
3337         * assembly.c: when the assembly is loaded from an absolute path, end
3338         basedir with a directory separator.
3339         Bug #440781 fixed.
3340
3341 2008-10-30  Mark Probst  <mark.probst@gmail.com>
3342
3343         * monitor.c (mono_monitor_get_fast_enter_method): If
3344         CompareExchange is not available, don't create the fastpath
3345         instead of asserting.  (The method is missing in the 1.1 profile.)
3346
3347 2008-10-30  Mark Probst  <mark.probst@gmail.com>
3348
3349         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
3350
3351         * monitor.c, monitor.h: Code for generating Monitor.Enter and
3352         Monitor.Exit IL fastpaths.
3353
3354 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3355
3356         * class.c (mono_class_create_from_typedef): Added Vector2ul.
3357
3358 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3359
3360         * class.c (mono_class_create_from_typedef): Added Vector2l.
3361
3362 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
3363
3364         * class.c (mono_class_create_from_typedef): Added Vector2d.
3365
3366 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3367
3368         * appdomain.c: translate \ into / for cache_path.
3369         * domain-internals.h: new mono_is_shadow_copy_enabled().
3370         * icall.c: (fill_reflection_assembly_name) do the same path
3371         manipulations that get_code_base does.
3372         (get_code_base) use mono_is_shadow_copy_enabled.
3373
3374 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3375
3376         * appdomain.c: shadow-copied assemblies go to CachePath +
3377         ApplicationName when both are set. DynamicBase has nothing to do with
3378         shadow copies.
3379         Bug #406877 fixed.
3380
3381 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
3382
3383         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
3384         STANDALONESIG table.
3385
3386         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
3387         standalone signatures.
3388
3389         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
3390         comparison code: instead of comparing the signatures using a custom
3391         equals function, transform them to a common signature and compare that. This
3392         works better with AOT.
3393
3394 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
3395
3396         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
3397
3398         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
3399         call for generic instances.
3400         (mono_class_setup_properties): Call setup_properties () before accessing
3401         gklass->properties.
3402
3403         * class.c (mono_class_get_virtual_methods): New helper function to iterate
3404         over the virtual methods of a class using metadata if possible, avoiding the
3405         creation of MonoMethod's for non-virtual methods.
3406         
3407         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
3408         get_virtual_methods () to iterate over the virtual methods of classes.
3409
3410 2008-10-25  Martin Baulig  <martin@ximian.com>
3411
3412         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
3413
3414 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3415
3416         * class.c (mono_class_create_from_typedef): Added Vector4i.
3417
3418 2008-10-24  Mark Probst  <mark.probst@gmail.com>
3419
3420         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
3421         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
3422         special-casing applies to eliminate the call completely.
3423
3424 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3425
3426         * class.c (mono_class_create_from_typedef): Added Vector8s.
3427
3428 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3429
3430         * class.c (mono_class_create_from_typedef): Added Vector16sb.
3431
3432 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3433
3434         * icall.c: get rid of annoying warning.
3435
3436 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3437
3438         * threadpool.c: in 1.x, if you change the background status of the
3439         threadpool thread, it's not reset.
3440         Remove unnecessary calls to SetState.
3441
3442 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3443
3444         * threadpool.c: asynchronously create a set of idle threads upon first
3445         use of the threadpool. SetMinThreads will now start the appropriate
3446         number of idle threads if they are not already running. The default is
3447         1 threadpool thread per CPU. Increased the maximum number of threads
3448         per CPU to 10.
3449
3450 2008-10-22  Martin Baulig  <martin@ximian.com>
3451
3452         Revert r116521 from Zoltan, it breaks the debugger:
3453
3454         * class.c (mono_class_get_virtual_methods): New helper function to iterate
3455         over the virtual methods of a class using metadata if possible, avoiding the
3456         creation of MonoMethod's for non-virtual methods.
3457         
3458         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
3459         get_virtual_methods () to iterate over the virtual methods of classes.
3460
3461 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3462
3463         * threads.c: when creating a threadpool thread, set its state to
3464         'background'.
3465         * threadpool.c: reset the background state of a threadpool thread
3466         after finishing each work item
3467         Bug #437888 fixed.
3468
3469 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
3470
3471         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
3472         
3473         * class.c (mono_class_setup_vtable_general): Add an optimized version for
3474         generic instances which works by inflating the methods in the container
3475         class's vtable.
3476
3477         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
3478         variant which doesn't make a copy if no inflation was done.
3479         (mono_class_setup_fields): Use it.
3480
3481         * metadata.c (mono_metadata_get_shared_type): New helper function to
3482         return a shared instance of a given MonoType.
3483
3484         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
3485         a copy of most non-generic types.
3486
3487 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
3488
3489         * threadpool.c: remove one more GetSystemInfo () call.
3490
3491 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
3492
3493         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
3494         use the code in mono-proclib.h to get processor information.
3495
3496 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3497
3498         * appdomain.c: fixed the logic that determines whether assemblies in a
3499         directory are "shadow-copied" or not. Bug #433483 fixed.
3500
3501 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
3502
3503         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
3504         warning.
3505
3506 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3507
3508         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
3509         returning a vtype.
3510
3511         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
3512         reflection.c: Use mono_field_get_name () for accessing a field's name.
3513
3514         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
3515         class.c
3516
3517         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
3518         field.
3519
3520         * loader.c (find_method_in_class): Reenable the metadata optimization by
3521         not using it for generic instances.
3522
3523         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
3524         data/def_type fields from MonoClassField into a separate structure.
3525         (struct MonoClassField): Remove data/def_type fields.
3526         (struct _MonoClass): Add a 'field_def_values' array to store the default
3527         values/RVA for fields.
3528
3529         * class.c reflection.c: Update after the changes.
3530         
3531         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
3532         for accessing field->data.
3533
3534         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
3535
3536         * loader.c (find_method_in_class): Revert the last change for now as
3537         it breaks Mono.C5 unit tests.
3538
3539         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
3540         'field_generic_types' and 'field_objects' which contain the information
3541         previously stored in MonoInflatedField.
3542         (MonoInflatedField): Delete.
3543         (struct _MonoClassField): Delete 'generic_info' field.
3544
3545         * reflection.c: Store the information which was previously in 
3546         field->generic_info in MonoDynamicGenericClass instead.
3547
3548         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
3549         MonoClassField changes.
3550
3551 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
3552
3553         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
3554         store the value inside the data array of the MonoMethodWrapper.
3555         This saves memory, is faster and fixes the lifetime issues (methods
3556         were never removed from the hash previously). May also fix bug#436996.
3557
3558 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3559
3560         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
3561         generic instances, compute the type from the generic definition instead of
3562         looking in field->generic_info.
3563
3564         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
3565         for inflated fields, the only user was get_fieldref_token () which no
3566         longer needs it.
3567
3568         * class.c (mono_class_init): Revert the last change as it seems to cause
3569         crashes.
3570
3571         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
3572         bytes on 64 bit platforms.
3573
3574         * object.c (mono_class_create_runtime_vtable): Fix a warning.
3575         
3576         * object.c (mono_class_create_runtime_vtable): Don't initalize
3577         field->data/field->def_type here, it is done lazily by 
3578         mono_class_get_field_default_value ().
3579
3580         * icall.c (ves_icall_get_enum_info): Call 
3581         mono_class_get_field_default_value () instead of directly accessing
3582         field->data and field->def_type.
3583
3584         * object.c (get_default_field_value): Ditto.
3585
3586         * class.c (mono_field_get_data): Ditto.
3587         
3588         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
3589         call for generic instances.
3590
3591         * loader.c (find_method_in_class): If klass != from_class, then inflate
3592         the method with the context of from_class, since the caller assumes this.
3593
3594 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
3595
3596         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
3597         for accessing method->slot.
3598
3599 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
3600
3601         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
3602
3603 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3604
3605         * class.c (mono_method_get_vtable_index): Use
3606         mono_method_get_vtable_slot () for accessing method->slot.
3607
3608         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
3609         accessing klass->methods.
3610
3611         * class.c (mono_method_get_vtable_slot): New helper function.
3612         (mono_class_get_vtable_entry): Ditto.
3613         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
3614         accessing method->slot.
3615
3616         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
3617         method to get_inflated_method ().
3618
3619         * class.c (mono_class_get_inflated_method): New helper method to obtain
3620         a method of an inflated class without calling setup_methods ().
3621         (mono_class_get_cctor): Use get_inflated_method.
3622
3623         * generic-sharing.c (mono_class_get_method_generic): Ditto.
3624         
3625         * marshal.c image.c: Lazily create all the marshal caches.
3626
3627         * image.c (mono_image_init): Move initialization of runtime_invoke
3628         caches to marshal.c.
3629
3630         * marshal.c (get_cache): New helper function to lazily initialize a 
3631         wrapper cache.
3632         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
3633
3634         * debug-helpers.c (mono_method_full_name): Include generic arguments.
3635
3636 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
3637
3638         * loader.c: fixed check for interface type.
3639
3640 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
3641
3642         * appdomain.c: check for NULL setup before it's referenced.
3643
3644 p
3645 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
3646
3647         * class.c: remove the unused old vtable setup code.
3648
3649 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
3650
3651         * class.c: don't depend on interface order in
3652         setup_interface_offsets (bug #435777).
3653         * reflection.c: sort the InterfaceImpl table (patch from
3654         Jb Evain  <jbevain@novell.com>).
3655
3656 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
3657
3658         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
3659         the low level assemblies lock.
3660
3661 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
3662
3663         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
3664         object.c, reflection.c, socket-io.c, threads.c: introduced
3665         mono_framework_version () to return the major framewrok version,
3666         changed the code that was using more complex patterns to use it.
3667         Return the correct value for PlatformID for OSX.
3668
3669 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
3670
3671         * icall-def.h, process.h, process.c: added an icall to get info about
3672         processes using mono-proclib.
3673
3674 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
3675
3676         * mono-perfcounters.c: use the mono-proclib functions to
3677         access process information.
3678
3679 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
3680
3681         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
3682         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
3683         reflection.c: remove rawbuffer usage: mmap support is more sanely
3684         provided by utils/mono-mmap.
3685
3686 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
3687
3688         * gc.c: use posix semaphores when possible so that
3689         mono_gc_finalize_notify() is signal safe.
3690
3691 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
3692
3693         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
3694         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
3695         be #ifdef-ed out, the linker will remove the rest.
3696
3697         * marshal.c: Implement DISABLE_COM.
3698
3699         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
3700
3701 2008-10-11  Miguel de Icaza  <miguel@novell.com>
3702
3703         * locales.c (string_invariant_compare_char): Optimization: do not
3704         call g_unichar_type unless we actually need the information.
3705
3706 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3707
3708         * object.c, class-internals.h: Also create remoting trampolines
3709         for generic methods.  Pass the domain to the remoting trampoline
3710         creation function, too.
3711
3712 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
3713
3714         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
3715
3716 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3717
3718         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
3719         Vector4ui.
3720
3721 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3722
3723         * assembly.c:
3724         * locales.c: remove the use of g_strdown. Fixes bug #322313.
3725
3726 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
3727
3728         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
3729         for the least possible amount of time (extending the fix in r113458).
3730
3731 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3732
3733         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
3734
3735 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3736
3737         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
3738         as possible simd intrinsic types.
3739         Optimized the test to check for the common prefix first.
3740
3741 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
3742
3743         * class.c: back out part of a broken optimization committed on
3744         May 23th (bug #433908).
3745
3746 2008-10-09  Mark Probst  <mark.probst@gmail.com>
3747
3748         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
3749         Win32.  Should fix #432388 for most cases until we have the new
3750         profiler on Win32.
3751
3752 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
3753
3754         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
3755         instead of using inst->id so the hash is stable for AOT.
3756
3757 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
3758
3759         * appdomain.c:
3760         * icall.c: create a .ini file for shadow-copied assemblies that
3761         contains the location of the original assembly. Use this to return the
3762         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
3763         Also fix the number of '/' for windows when returning the CodeBase.
3764         Fixes bug #430920.
3765
3766 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3767
3768         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
3769
3770         Code is contributed under MIT/X11 license.
3771
3772 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3773
3774         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
3775           if if the class vtable needs initialized.
3776
3777         Code is contributed under MIT/X11 license.
3778
3779 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3780
3781         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
3782           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
3783           STRING->BSTR, and CLASS->INTERFACE.
3784
3785         Code is contributed under MIT/X11 license.
3786
3787 2008-10-07  Marek Habersack  <mhabersack@novell.com>
3788
3789         * sysmath.h: changed the declaration of the
3790         ves_icall_System_Math_Round2 icall by adding an extra
3791         away_from_zero parameter.
3792
3793         * sysmath.c (ves_icall_System_Math_Round2): added support for
3794         away from zero rounding. The icall now takes an extra boolean
3795         parameter to signal that away from zero operation is requested.
3796
3797 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3798
3799         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
3800         the delegate klass so it can work with full-aot.
3801         (mono_marshal_get_delegate_end_invoke): Ditto.
3802         (mono_marshal_get_delegate_invoke): Ditto.
3803
3804 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
3805
3806         * gc.c, attach.h, attach.c: remove a bad pattern:
3807         add_finalizer_callback () is not implemented correctly, it can't
3808         without adding more overhead to the finalizer loop and it's not
3809         even needed, since we know exactly what we need to call, so there is
3810         no need to do so through an expensive function pointer.
3811
3812 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
3813
3814         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
3815         for the no-gc case.
3816         * attach.c (mono_attach_init): Remove the #ifdef.
3817
3818 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
3819
3820         * attach.c (mono_attach_init): Don't use
3821         mono_gc_add_finalizer_thread_callback when compiling without GC.
3822         Fixes #432306.
3823         
3824         Code is contributed under MIT/X11 license.
3825
3826 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3827
3828         * class.c (mono_class_create_from_typedef): Remove the 
3829         #ifndef DISABLE_SIMD stuff.
3830
3831 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3832
3833         * class-internals.h (MonoClass): Added simd_type bit field.
3834
3835         * class.c (mono_class_create_from_typedef): Check if type is a simd
3836         intrinsic.
3837
3838 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3839
3840         * object.c (mono_method_add_generic_virtual_invocation): Only add
3841         instantiations to the thunk whose count is at least as large as
3842         the threshold.
3843
3844 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3845
3846         * icall.c: changed the Type of the exception thrown when trying to
3847         invoke a constructor on an abstract class. Part of the fix for bug
3848         #324185.
3849
3850 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3851
3852         * class.c, class-internals.h (mono_method_get_vtable_index): New
3853         function which returns the index into the vtable and properly
3854         handles inflated virtual generic methods.
3855
3856 2008-10-01  Mark Probst  <mark.probst@gmail.com>
3857
3858         * object.c, domain.c, object-internals.h, domain-internals.h:
3859         Generalize IMT thunk machinery to also handle thunks for virtual
3860         generic method invokes.  When a virtual generic method is invoked
3861         more than a number of times we insert it into the thunk so that it
3862         can be called without lookup in unmanaged code.
3863
3864         * generic-sharing.c, class-internals.h: Fetching a
3865         MonoGenericInst* for a method from an (M)RGCTX.
3866
3867 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
3868
3869         * marshal.c (emit_marshal_string): Applied a variant of a patch by
3870         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
3871         marshalling. Fixes #431304.
3872
3873 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
3874
3875         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
3876           handle when ref is specified without In or Out.
3877
3878         Code is contributed under MIT/X11 license.
3879
3880 2008-09-30  Mark Probst  <mark.probst@gmail.com>
3881
3882         * loader.c (mono_get_method_constrained): Don't expand method with
3883         the class's context, because it's already a method of that class.
3884
3885 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
3886
3887         * attach.c : should be correct build fix.
3888
3889 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
3890
3891         * attach.c: Fix the previous change.
3892
3893 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
3894
3895         * attach.c : quick w32 build fix.
3896
3897 2008-09-27  Miguel de Icaza  <miguel@novell.com>
3898
3899         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
3900         crashes MonoDevelop: #430455.
3901
3902 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
3903
3904         * domain-internals.h (struct _MonoDomain): Move most fields used only by
3905         the JIT do MonoJitDomainInfo in ../mini/mini.h.
3906
3907         * domain.c: Remove initialization/cleanup of the removed fields.
3908
3909 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3910
3911         * class.c (mono_class_generic_sharing_enabled): Enable generic
3912         code sharing for PPC.
3913
3914 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
3915
3916         * attach.c : Fixing the Windows builds.
3917
3918         Code is contributed under MIT/X11 license.
3919
3920 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
3921
3922         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
3923         the default generic sharing mode to 'all'.
3924
3925 2008-09-25  Mark Probst  <mark.probst@gmail.com>
3926
3927         * generic-sharing.c, class-internals.h: New function for checking
3928         whether a method needs a static RGCTX invoke wrapper.  A few
3929         funtions moved from mini/generic-sharing.c.
3930
3931         * icall.c: New function used.
3932
3933 2008-09-25  Mark Probst  <mark.probst@gmail.com>
3934
3935         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
3936         Static RGCTX invoke wrapping applies to value type methods, too.
3937
3938         * class.c (mono_class_setup_vtable_general): In generic-shared
3939         value types, wrap methods with a static RGCTX invoke wrapper.
3940
3941 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
3942
3943         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
3944         osx build.
3945
3946 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
3947
3948         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
3949         register a callback which is called when the finalizer thread is woken
3950         up.
3951         (finalizer_thread): Call the callback if it exists.
3952
3953         * attach.h attach.c: New files, implementing the attach mechanism.
3954
3955         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
3956         
3957         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
3958         by the previous change.
3959
3960 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
3961
3962         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
3963         loader.c, marshal.c, metadata-internals.h, metadata.c,
3964         method-builder.c, object.c, reflection.c: introduced specific functions
3965         to allocate from the domain and image mempools and cleaned up most of
3966         the code to use them (still missing a few in reflection.c).
3967         Keep the loader bytes counter updated.
3968
3969 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
3970
3971         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
3972         loader-related counters.
3973
3974 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
3975
3976         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
3977         added more MS-compatible counters.
3978
3979 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
3980
3981         * class.c (mono_class_setup_fields): Call setup_fields before accessing
3982         class->blittable. Fixes #428217.
3983
3984 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
3985
3986         * reflection.c (mono_image_get_field_on_inst_token): Call 
3987         field_encode_signature () since that handles custom modifiers too.
3988         Fixes #424663.
3989
3990 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
3991
3992         * reflection.c (add_custom_modifiers): New helper function to merge custom
3993         modifiers stored in objects to a MonoType.
3994         (fieldref_encode_signature): Encode custom modifiers.
3995         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
3996         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
3997
3998 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
3999
4000         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
4001         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
4002         64-bit IL only images because imports are not resolved for IL only images.
4003         Special thanks to Bill Holmes for finding this bug and testing the patch.
4004         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
4005
4006         Contributed under MIT/X11 license.
4007
4008 2008-09-19  Miguel de Icaza  <miguel@novell.com>
4009
4010         * mono-config.c (dllmap_start): Add support for the bits keyword
4011         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
4012
4013 2008-09-19  Mark Probst  <mark.probst@gmail.com>
4014
4015         * reflection.c (inflate_mono_method): When the class the method is
4016         to be inflated for is itself not inflated, just return the method.
4017
4018 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
4019
4020         * mono-perfcounters.c: use more user friendly process instance names.
4021
4022 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
4023
4024         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
4025           handle "[in] ref" and "[in][out] ref" cases.
4026
4027         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
4028           to mono_mb_create_method.  This was causing problems calling native to
4029           managed passing Variants by value.
4030
4031         Code is contributed under MIT/X11 license.
4032
4033 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
4034
4035         * class.c (can_access_internals): Call mono_assembly_load_friends ()
4036         before accessing the friend_assembly_names field.
4037
4038         * assembly.c (mono_assembly_load_friends): Make this callable multiple
4039         times.
4040         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
4041         called lazily when it is needed.
4042
4043         * metadata-internals.h (struct _MonoAssembly): Add 
4044         'friend_assembly_names_inited' flag.
4045
4046 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
4047
4048         * mono-perfcounters-def.h: fix the types of a few counters.
4049         * mono-perfcounters.c: implemented the instance names getter
4050         and a few bugfixes.
4051
4052 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
4053
4054         * culture-info-table.h : regenerated.
4055
4056 2008-09-17  Robert Jordan  <robertj@gmx.net>
4057
4058         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
4059         context bound objects. Fixes #415577.
4060
4061         Code is contributed under MIT/X11 license.
4062
4063 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
4064
4065         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
4066         implementation (bug #423582).
4067
4068 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
4069
4070         * object.c (mono_object_get_virtual_method): Handle the case method->slot
4071         is not set. Fixes #426309.
4072
4073 2008-09-16  Jb Evain  <jbevain@novell.com>
4074
4075         * class.c (mono_class_from_name): fix the exported type look up
4076         when the type is defined in a referenced assembly.
4077
4078 2008-09-16  Jb Evain  <jbevain@novell.com>
4079
4080         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
4081         increment the next index counter on each iteration to make that work
4082         for more than one type forwarder. Unmanaged part to fix #422929.
4083
4084 2008-09-15  Mark Probst  <mark.probst@gmail.com>
4085
4086         * object-internals.h: enum ComInterfaceType in
4087         MonoInterfaceTypeAttribute is guint32, not guint16.
4088
4089 2008-09-12  Mark Probst  <mark.probst@gmail.com>
4090
4091         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
4092         writing code.
4093
4094 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4095
4096         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
4097         not gboolean.
4098
4099 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4100
4101         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
4102         Endianness fixes for MonoSymbolFileOffsetTable.
4103
4104 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
4105
4106         * process.c (complete_path) : Removing quotes from the 
4107           input path.  The glib file routines do not handle file paths
4108           that have quotes around them.
4109
4110         Code is contributed under MIT/X11 license.
4111
4112 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
4113
4114         * socket-io.h : Adding a comment to provide locations where 
4115           changes to MonoSocketAsyncResult need to be synced.
4116
4117         Code is contributed under MIT/X11 license.
4118
4119 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
4120
4121         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
4122         parameters as well. Fixes #425001.
4123
4124 2008-09-08  Miguel de Icaza  <miguel@novell.com>
4125
4126         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
4127         windows build.
4128
4129 2008-09-07  Miguel de Icaza  <miguel@novell.com>
4130
4131         * console-io.c: Add support for tracking the window size if it
4132         changes.
4133
4134         The setup is very simple: the TtySetup function will now return a
4135         pointer to a location in memory that tracks the current console
4136         size.  The managed code checks its current value every time its
4137         queried against the last value set, and updates accordingly.
4138
4139         With this setup we can work with multiple consoles, and we do not
4140         require to poke into managed code from a signal handler.
4141
4142         Additionally, the environment for COLUMNS and LINES is now handled
4143         in unmanaged code.
4144
4145         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
4146
4147 2008-09-07  Mark Probst  <mark.probst@gmail.com>
4148
4149         * marshal.c (mono_type_native_stack_size): Treat
4150         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
4151
4152 2008-09-04  Jb Evain  <jbevain@novell.com>
4153
4154         * class.c (mono_class_is_assignable_from): fix assignability of nullables
4155         to nullables.
4156
4157 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
4158
4159         * verify.c (verify_type_compatibility_full): Revert change
4160         to allow converting a native int to unmanaged pointer be verifiable
4161         under non-strict mode.
4162         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
4163
4164         * verify.c: Added some TODOs.
4165
4166 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
4167
4168         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
4169           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
4170           Changed to use GlobalAlloc for the memory returned on Windows platforms.
4171
4172         Code is contributed under MIT/X11 license.
4173
4174 2008-09-02  Jb Evain  <jbevain@novell.com>
4175
4176         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
4177
4178 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
4179
4180         reflection.c (typebuilder_setup_fields): Handle classes with
4181         explicit size.
4182
4183 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
4184
4185         class.c (mono_class_setup_events): Add memory barrier due to
4186         double checked locking.
4187         
4188         class.c (mono_class_setup_properties): Same.
4189
4190 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
4191
4192         * class.c (mono_class_is_assignable_from): Fix the build.
4193         
4194         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
4195         before accessing klass->interface_bitmap. Fixes #421744.
4196
4197 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
4198
4199         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
4200         the runtime into no-exec mode, useful when running the AOT compiler.
4201
4202         * appdomain.c gc.c object.c: Avoid executing managed code when running
4203         in no-exec mode.
4204         
4205         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
4206
4207         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
4208         special case when the mono_assembly_loaded () returns NULL because the 
4209         search hook is not installed.
4210
4211 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
4212
4213         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
4214         crashes in bstr marshalling on linux.
4215
4216 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
4217
4218         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
4219         with more than one parameter.
4220
4221 2008-08-24  Miguel de Icaza  <miguel@novell.com>
4222
4223         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
4224         start/stop flow control as well when turning off ICANON (allows
4225         C-s and C-q to be read by Console.ReadKey).
4226
4227 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
4228
4229         * class.c (mono_class_init): Move the initialization of nested classes
4230         into mono_class_get_nested_types (). Fixes #418433.
4231
4232         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
4233         flag.
4234
4235         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
4236         iterating tough the nested classes of a class.
4237
4238 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
4239
4240         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
4241         on arm.
4242
4243 2008-08-22  Miguel de Icaza  <miguel@novell.com>
4244
4245         * console-io.c (sigcont_handler): Support signal chaining for
4246         SIGCONT.
4247
4248         (console_set_signal_handlers): Use best practices with sigaction,
4249         clear the structure before using it. 
4250
4251 2008-08-22  Robert Jordan  <robertj@gmx.net>
4252
4253         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
4254         Fix the Windows build.
4255
4256 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
4257
4258         * class.c (mono_class_generic_sharing_enabled): Make the default
4259         sharing mode 'corlib'.
4260
4261 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
4262
4263         * console-io.c (console_set_signal_handlers): Fix a warning.
4264
4265         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
4266         method normally, the JIT will take care of avoiding recursion.
4267
4268 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
4269
4270         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
4271
4272         Code is contributed under MIT/X11 license.
4273
4274 2008-08-20  Miguel de Icaza  <miguel@novell.com>
4275
4276         * console-io.c (sigcont_handler): We need to restore the entire
4277         termios state, not only the original settings, as things like echo
4278         can be controlled after this (Booish exposes this issue with its
4279         own ReadLine implementation).
4280
4281         Additionally, we need to set the terminal back into keypad_xmit
4282         mode.
4283         
4284         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
4285         string as a paramter as well.   Otherwise we get different
4286         keyboard sequences.
4287
4288 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
4289
4290         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
4291         delegates with byref out parameter passing. Fixes #351520.
4292
4293         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
4294         a generic context.
4295         (mono_type_get_desc): Add the type arguments for GENERICINST.
4296         (mono_method_full_name): Stringify the class name using mono_type_full_name
4297         so it picks up generic arguments.
4298
4299 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
4300
4301         * console-io.c: Removed debug output.
4302
4303 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
4304
4305         reflection.c (mono_reflection_create_runtime_class): Alloc
4306         the nested classes linked list using the dynamic image mempool.
4307         Fixes leak in corlib compilation.
4308
4309 2008-08-19  Miguel de Icaza  <miguel@novell.com>
4310
4311         * console-io.c: Fix incredibly annoying behavior on the console
4312         after resuming execution after control-z.   This affected every
4313         console application.
4314
4315 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
4316
4317         * mempool-internals.h: Header for mono private mempool functions. The first
4318         two function are for allocating glib linked lists using pools.
4319
4320         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
4321
4322         * Makefile.am: Added mempool-internals.h.
4323
4324 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
4325
4326         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
4327         (mono_domain_free): Ditto.
4328
4329         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
4330         be used by the JIT to store its domain-specific information, instead of putting
4331         it directly into MonoDomain.
4332
4333         * domain.c (mono_install_create_domain_hook): New helper function to install
4334         a hook which initializes domain->runtime_info.
4335
4336         * domain.c (mono_install_free_domain_hook): Ditto.
4337         
4338 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
4339
4340         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
4341         asserting if the ares parameter is null.
4342
4343         * mono-perfcounters.c: Fix warnings.
4344
4345         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
4346         is not needed, don't check for interruptions either.
4347         (mono_marshal_get_delegate_end_invoke): Ditto.
4348
4349 2008-08-15  Marek Habersack  <mhabersack@novell.com>
4350
4351         * mono-perfcounters.c (predef_readonly_counter): added support for
4352         reading the ASP.NET Requests Queued counter from another process.
4353
4354 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4355
4356         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
4357         MonoImage to simplify the AOT code.
4358
4359 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
4360
4361         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
4362         marshalling. Fixes #416078.
4363
4364 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4365         
4366         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
4367         it is set, looking up the icall address is deferred to the JIT, since 
4368         in embedded scenarios, the icall might not be registered in the runtime
4369         doing the AOT compilation. Backported from the 2.0 branch.
4370
4371 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4372
4373         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
4374         Fixes #415621.
4375
4376 2008-08-05  Marek Habersack  <mhabersack@novell.com>
4377
4378         * Makefile.am: added support for cross-compilation.
4379
4380 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
4381
4382         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
4383
4384 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
4385
4386         * mono-perfcounters.c: jitted methods and jitted bytes counters.
4387
4388 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
4389
4390         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
4391         mono-perfcounters.c: performance counters implementation.
4392
4393 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
4394
4395         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
4396         to gpointer, letting the AOT code decide what to store in it.
4397
4398 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
4399
4400         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
4401           mono_class_setup_methods if the methods are not initialized.
4402
4403         Code is contributed under MIT/X11 license.
4404
4405 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4406
4407         * verify.c: Remove some debug code I commited by accident.
4408
4409         * verify.c (mono_method_is_valid_in_context): Change the return value
4410         to make possible to distinguish between invalid and unverifiable.
4411
4412         * verify.c (verifier_load_method): Don't return NULL for unverifiable
4413         methods.
4414
4415 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4416
4417         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
4418         constraints. Fixes regression in gtest-253.
4419
4420 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4421
4422         * verify.c (mono_verifier_verify_class): Don't allow generic types
4423         with explicit layout.
4424
4425         * verify.c (mono_method_verify): Check locals and argument types.
4426
4427 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
4428
4429         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
4430         wait if the thread is in StopRequested state.
4431
4432         * class.c (mono_class_from_name): Refactor the module searching code into
4433         a separate function so it can be reused in the AOT case too.
4434
4435 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4436
4437         * verify.c (mono_type_is_valid_in_context): Improve the error message.
4438         Check both the type and it's generic type definition for loader errors.
4439         
4440         * verify.c (mono_method_is_valid_in_context): Don't generate another
4441         error when a type errors occur, this leads to the wrong exception been
4442         thrown.
4443
4444 2008-07-28  Dick Porter  <dick@ximian.com>
4445
4446         * icall-def.h
4447         * process.c
4448         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
4449         New internal calls to duplicate and close a process handle.
4450
4451 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
4452
4453         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
4454
4455 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
4456
4457         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
4458
4459 2008-07-27  Robert Jordan  <robertj@gmx.net>
4460
4461         * class.c (mono_class_init): Don't compute class.has_finalize for
4462         valuetypes. Fixes #412477.
4463
4464 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
4465
4466         * verify.c: Implement constraint equivalence checking.
4467         This is required when a generic parameter is used as
4468         argument to a constrained one.
4469
4470         Fixes #410637.
4471
4472 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
4473
4474         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4475
4476         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
4477
4478         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
4479         synch with managed object layout.
4480
4481 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
4482
4483         * verify.c (do_branch_op): Handle valuetypes and generic
4484         arguments properly.
4485
4486         * verify.c (do_cmp_op): Same.
4487
4488         Fixes #410383.
4489
4490 2008-07-24  Mark Probst  <mark.probst@gmail.com>
4491
4492         * generic-sharing.c: Fix memory leaks.
4493
4494         * class.c, class-internals.h: Make
4495         mono_class_inflate_generic_type_with_mempool() non-static.
4496
4497 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
4498
4499         * pedump.c (dump_verify_info): Dump full class name.
4500
4501 2008-07-24  Mark Probst  <mark.probst@gmail.com>
4502
4503         * generic-sharing.c: Removed some old code that didn't do anything.
4504
4505 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
4506         * profiler.c: Added runtime_initialized_event,
4507         mono_profiler_install_runtime_initialized and
4508         mono_profiler_runtime_initialized. This new hook tells the profiler
4509         when the runtime is sufficiently initialized to be able to call
4510         mono_thread_attach on the root appdomain.
4511         * profiler.h, profiler-private.h: Likewise.
4512
4513 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
4514
4515         * verify.c (do_cast): Do boxing for generic arguments as well.
4516
4517         * class.c (is_nesting_type): Drop generic instantiations before
4518         checking for nesting.
4519
4520         * class.c (can_access_instantiation): Allow access to generic
4521         arguments.
4522
4523 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
4524
4525         * verify.c (verify_class_for_overlapping_reference_fields):
4526         On some cases, the field size might be zero, guard against that.
4527         Fix the explicit layout check to work as expected.
4528
4529 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
4530
4531         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
4532         mono_thread_resume () during shutdown, since the thread we want to abort
4533         might be suspended.
4534
4535 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
4536
4537         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
4538         warning.
4539
4540         * debug-mono-symfile.c: Fix a warning.
4541
4542         * mono-perfcounters.c (get_cpu_times): Fix a warning.
4543
4544         * object.c (mono_class_vtable): Check if exception_type is set, and return
4545         NULL as defined by the function comments.
4546
4547 2008-07-22  Mark Probst  <mark.probst@gmail.com>
4548
4549         * mempool.c: Use malloc for every single mempool allocation if the
4550         configure option is set.  This makes it easier to track mempool
4551         allocations with tools like Valgrind.
4552
4553 2008-07-22  Jb Evain  <jbevain@novell.com>
4554
4555         * reflection.c (create_dynamic_mono_image): emit the same
4556         metadata version that SL2 does when creating a SL2 image.
4557
4558 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
4559
4560         * icall-def.h:
4561         * icall.c: New icall System.Enum:get_hashcode. This function
4562         avoids the overhead of boxing the enum to the underlying type.
4563
4564 2008-07-21  Mark Probst  <mark.probst@gmail.com>
4565
4566         * reflection.c (mono_method_get_object): Don't let static RGCTX
4567         invoke wrappers get into MonoReflectionMethods.
4568
4569 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
4570
4571         * object-internals.h:
4572         * object.c: New mono_runtime_class_init_full function
4573         that makes throwing the exception optinal.
4574
4575         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
4576         for the case where the exception object is supplied.
4577
4578 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
4579
4580         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
4581         old ld versions.
4582
4583         Contributed under MIT/X11 license.
4584
4585 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4586
4587         * string-icalls.c (ves_icall_System_String_InternalSplit):
4588         Optimize array allocation by caching the MonoClass of the
4589         array type.
4590
4591         * icall.c (ves_icall_Type_GetMethodsByName): Same.
4592
4593         * reflection.c (mono_param_get_objects): Same.
4594
4595 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4596
4597         * icall-def.h:
4598         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
4599         It inflates the given type using the class context.
4600
4601 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4602
4603         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
4604         the vtable if it already exists.
4605
4606         * object-internals.h: Add mono_class_try_get_vtable as part of the
4607         internal API.
4608
4609         * reflection.c (mono_type_get_object): Use the MonoObject from the
4610         vtable when possible. Reduces locking contention on reflection heavy
4611         code.
4612
4613 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
4614
4615         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
4616         g_bit_nth_msf () since that macro is not implemented in eglib.
4617
4618 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
4619
4620         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
4621         on platforms which do not support it.
4622
4623 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
4624
4625         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
4626
4627 2008-07-11  Martin Baulig  <martin@ximian.com>
4628
4629         * mono-debug-debugger.h
4630         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
4631
4632         * mono-debug-debugger.c
4633         (_mono_debugger_interruption_request): New global volatile variable.
4634         (mono_debugger_check_interruption): New public function.
4635
4636         * threads.c
4637         (mono_thread_current_check_pending_interrupt): Call
4638         mono_debugger_check_interruption().
4639         (mono_thread_interruption_checkpoint_request): Likewise.
4640
4641 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4642
4643         * verify.c: Add more type checks for loaded types. Verify the result
4644         handle from ldtoken.
4645
4646 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4647
4648         * loader.c (field_from_memberref): Don't crash if the field
4649         wasn't found.
4650
4651 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4652
4653         * verify.c: Verify if type and method instantiations
4654         don't have invalid VAR or MVAR arguments.
4655
4656 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4657
4658         * verify.c: Fix double free of function pointer list.
4659
4660 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4661
4662         * object.c (mono_string_to_utf8): Comment the new code as it
4663         breaks under eglib.
4664
4665 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
4666
4667         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
4668
4669 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
4670
4671         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
4672           is not throw too many times.
4673
4674         Code is contributed under MIT/X11 license.
4675
4676 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
4677
4678         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
4679         debugging is turned off.
4680
4681 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
4682
4683         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
4684
4685 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4686
4687         * class-internals.h, class.c: Added new generic sharing option:
4688         Share only stuff in System.Collections.Generic, which is now the
4689         default.
4690
4691 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4692
4693         * generic-sharing.c, class-internals.h: New function for getting a
4694         generic method in a generic class given the corresponding method
4695         for a different instantiation of the class.  Partly refactored
4696         from mini-trampolines.c.
4697
4698         * class.c: Make sure generic methods have a class_inst if they are
4699         part of a generic class.
4700
4701         * metadata.c (mono_type_stack_size_internal): Handle type
4702         variables.
4703
4704 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4705
4706         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
4707         Signifies whether information on the this/vtable/mrgctx variable
4708         is available.
4709
4710 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4711
4712         * object.c, object-internals.h, icall.c: New function
4713         mono_delegate_ctor_with_method(), which does the same as
4714         mono_delegate_ctor(), but takes an explicit method argument
4715         instead of taking the method from the jit info.
4716
4717         * marshal.c: When creating a delegate with an inflated method take
4718         the "this" argument as the target class for the castclass.
4719
4720 2008-07-03  Mark Probst  <mark.probst@gmail.com>
4721
4722         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
4723         mono_jit_info_table_find() to perform very badly in some cases.
4724
4725 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
4726
4727         * icall.c (type_from_typename): Handle 'string'.
4728
4729         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
4730         wrappers into the wrapper_hash, since the key is not a MonoMethod.
4731
4732 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
4733
4734         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
4735
4736         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
4737         number of available managed allocator types.
4738
4739         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
4740         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
4741
4742 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
4743
4744         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
4745         which is a low level lock protecting just the 'jit_code_hash' hash table.
4746
4747         * domain.c: Initialize+cleanup jit_code_hash_lock.
4748         
4749 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
4750
4751         * coree.c (mono_load_coree): Set coree_module_handle global variable only
4752         after initialization.
4753
4754         * coree.h: Make MonoFixupExe internal.
4755
4756         Contributed under MIT/X11 license.
4757
4758 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
4759
4760         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
4761         because that is platform independent. Check NumberOfRvaAndSizes in PE32
4762         as well.
4763         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
4764         image being loaded is a CLI image and _CorValidateImage gets called.
4765
4766         * coree.h: Add MonoLoadImage.
4767
4768         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
4769         instead of LoadLibrary.
4770
4771         Contributed under MIT/X11 license.
4772
4773 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
4774
4775         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
4776         for any primitive type.
4777
4778 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
4779
4780         * object.c (mono_array_new_specific): Optimize this and the other allocation
4781         functions a bit.
4782         
4783         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
4784         domains too if mono_dont_free_domains is set.
4785
4786         * domain-internals.h (mono_dont_free_domains): New internal option controlling
4787         whenever to free appdomain data after it has been unloaded.
4788
4789         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
4790         
4791 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
4792
4793         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
4794         (mono_method_get_equivalent_method): Fix a warning.
4795
4796         * object.c (mono_message_init): Avoid looking up array types for each call.
4797
4798 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
4799
4800         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
4801         call.
4802
4803         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
4804         even more.
4805
4806         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
4807         each iteration.
4808
4809         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
4810         fields of an enum.
4811
4812 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4813
4814         * object.c (mono_value_box): Fix boxing of nullables.
4815
4816 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
4817
4818         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
4819         mono_module_handle that is defined by the linker; no initialization required.
4820         * coree.h: Remove mono_module_handle, add __ImageBase, update
4821         mono_image_open_from_module_handle.
4822         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
4823         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
4824         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
4825         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
4826         to 4 GB away from image base address. IA64 version is not tested but was very
4827         easy to implement and should work if we ever need it.
4828         * domain.c (mono_init_internal): Avoid system error message boxes.
4829         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
4830         with has_entry_point. Handle do_mono_image_load fauilre correctly.
4831         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
4832         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
4833         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
4834
4835         Contributed under MIT/X11 license.
4836
4837 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4838
4839         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
4840         as part of the private mono API.
4841         
4842         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
4843         Do proper argument checking for methods that belong to generic classes.
4844         Do proper type resolution for GMFH/2.
4845         Fixes #377324.
4846         
4847 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4848
4849         * verify.c (do_switch): Fix a memory corruption bug with
4850         the jump index is out of bound.
4851
4852 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4853
4854         * verify.c: Disable debug code.
4855
4856 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4857
4858         * reflection.c (mono_image_get_methodbuilder_token): Use
4859         mono_image_get_methodspec_token_for_generic_method_definition
4860         instead of mono_image_get_memberref_token. We cache more memberef
4861         entries now.
4862
4863 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4864
4865         * verify.c: Inflate exception clause types.
4866         Fixes #402606.
4867         
4868 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4869
4870         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
4871         name.
4872
4873         * reflection.c (mono_image_get_ctorbuilder_token): Same.
4874
4875         * reflection.c (mono_image_create_method_token): Same.
4876
4877 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4878
4879         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
4880         It does the same as mono_image_get_methodref_token but works on
4881         MethodBuilder.
4882
4883         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
4884         and always generate a methodspec. This follows the old behavior and fixes
4885         the regressions in System.Core. 
4886
4887 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
4888
4889         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
4890         don't event mono_class_get () succeeds. Fixes #402182.
4891
4892 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
4893
4894         * metadata-internals.h: Added MonoDynamicImage::methodspec
4895         hashtable to store methodspec tokens created for MethodBuilders.
4896
4897         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
4898         MethodBuilders as open instantiations if a methodspec was requested.
4899
4900         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
4901
4902         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
4903
4904         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
4905
4906         Fixes bug #349190.
4907
4908 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
4909
4910         * loader.c (method_from_methodspec): Avoid crashing if the
4911         method lookup fails.
4912
4913 2008-06-20  Dick Porter  <dick@ximian.com>
4914
4915         * socket-io.c (get_socket_assembly): Cope with Moonlight network
4916         classes being in a different assembly.  Fixes bug 399184.
4917
4918 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
4919
4920         * loader.c (mono_loader_init): Make this callable multiple times.
4921         (mono_dllmap_insert): Call mono_loader_init () so this works even before
4922         the runtime is initialized. Fixes #401755.
4923
4924 2008-06-19  Dick Porter  <dick@ximian.com>
4925
4926         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
4927         Fixes bug 349688.
4928
4929 2008-06-19  Dick Porter  <dick@ximian.com>
4930
4931         * socket-io.c:
4932         * icall-def.h: Implement Socket generic Send() and Receive()
4933         methods.  Fixes bug 395168.
4934
4935 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
4936
4937         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
4938
4939         Contributed under MIT/X11 license.
4940
4941 2008-06-18  Martin Baulig  <martin@ximian.com>
4942
4943         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
4944         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
4945         set to 80.0.  The debugger <-> runtime interface is now frozen as
4946         well.   
4947
4948         * mono-debug.c
4949         (mono_debug_debugger_version): Bump to 4.
4950
4951 2008-06-18  Martin Baulig  <martin@ximian.com>
4952
4953         * debug-mono-symfile.c
4954         (load_symfile): Don't check the minor version.
4955
4956         * debug-mono-symfile.h: Bump the version number to 50.0.
4957
4958 2008-06-18  Martin Baulig  <martin@ximian.com>
4959
4960         * debug-mono-symfile.c
4961         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
4962         minimum required version.
4963
4964 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
4965
4966         * reflection.c (mono_custom_attrs_from_property): Fix support for
4967         retriveving cattrs of dynamic inflated generic types.
4968
4969         * reflection.c (mono_custom_attrs_from_event): Same.
4970
4971         * reflection.c (mono_custom_attrs_from_field): Same;
4972
4973         * reflection.c (typebuilder_setup_events): Same cattrs of events.
4974
4975         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
4976         Moved to metadata.c.
4977
4978         * metadata.c: New functions to retrive the equivalent field, event
4979         of property from the generic type definition.
4980
4981         * metadata-internals.h: Added new functions from metadata.c.
4982
4983 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
4984
4985         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
4986         to cached in a mempool is used.
4987
4988         * metadata.c (free_generic_class): In some situations field generic_info type
4989         is not properly dup'ed and leads to double free'ing.
4990
4991         Fixes #400643.
4992
4993 2008-06-17  Mark Probst  <mark.probst@gmail.com>
4994
4995         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
4996         this arguments (will be needed later for generic methods).
4997         Collect stats.
4998
4999 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5000
5001         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
5002         Create a static RGCTX invoke wrapper for methods which require it.
5003
5004 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5005
5006         * object.c, class-internals.h: New function for checking whether
5007         an individual field is special static.
5008
5009 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
5010
5011         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
5012         linear search since the table is sorted.
5013
5014         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
5015         Fixes #324180.
5016
5017 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
5018
5019         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
5020         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
5021
5022         * gc.c (mono_domain_finalize): Allow an infinite timeout.
5023
5024         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
5025         
5026         * threads.c (mono_thread_request_interruption): Get rid of locking, use
5027         InterlockedCompareExchange to query and modify 
5028         thread->interruption_requested.
5029
5030         * object-internals.h (struct _MonoThread): Change interruption_requested
5031         to a gint32 so it can be modified by atomic operations. Add 
5032         'critical_region_level' from the managed side, change small_id to a guint32,
5033         add new set of 'unused' fields.
5034
5035         * appdomain.c: Bump corlib version.
5036
5037 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
5038
5039         * class.c (mono_class_from_name): Search modules as well. Fixes
5040         #322332.
5041
5042 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5043
5044         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
5045         templates.  Templates are generalized with an additional type_argc
5046         argument.  RGCTX templates have type_argc==0, MRGCTX templates
5047         have type_argc>0.
5048
5049         * domain-internals.h, domain.c: New hash table for looking up
5050         MRGCTXs.
5051
5052         * metadata.c, metadata-internals.h: Rename hash and equal
5053         functions for MonoGenericInst's and make them public.
5054
5055         * class-internals.h: New data structures for the MRGCTX.  Macros
5056         for distinguishing slots in the RGCTX and the MRGCTX.
5057
5058 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5059
5060         * object.c (mono_method_get_imt_slot): Put the same methods of
5061         different instantiations of the same generic interface in the same
5062         IMT slots, to make generic sharing simpler.
5063
5064 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
5065
5066         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
5067
5068         * metadata.c (mono_metadata_field_info_with_mempool): Added.
5069         This function works just like mono_metadata_field_info, but
5070         accept a mempool as argument to be used allocating memory.
5071
5072         * marshal.c (mono_marshal_load_type_info): Use new function
5073         to load marshal data into image mempool.
5074
5075 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
5076
5077         * class.c (mono_class_inflate_generic_type_with_mempool):
5078         This function allows to inflate a generic type using
5079         a mempool.
5080
5081         * class.c (inflate_generic_type): Take a mempool as argument
5082         and use it to do type dup'ing.
5083
5084         * class.c (mono_class_setup_fields): Field type for generic
5085         generic classes are allocated from the image mempool.
5086
5087         * metadata.c (free_generic_class): Inflated field type is
5088         now allocated in the image mempool.
5089
5090 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
5091
5092         * threads.c (thread_cleanup): Free MonoThread::name.
5093
5094 2008-06-12  Marek Habersack  <mhabersack@novell.com>
5095
5096         * appdomain.c (ensure_directory_exists): avoid unnecessary
5097         mkdir(2) calls when the shadow directory already exists.
5098         (mono_make_shadow_copy): copy also satellite assemblies from the
5099         private bin directories.
5100
5101 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
5102
5103         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
5104         
5105         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
5106         a page boundary. Fixes #396219.
5107
5108 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5109
5110         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
5111         due to double-checked locking.
5112
5113 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5114
5115         * assembly.c (build_assembly_name): Release memory on failure.
5116
5117         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
5118
5119 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5120
5121         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
5122         memory on failure.
5123
5124 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5125
5126         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
5127         memory on failure.
5128
5129 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5130
5131         * loader.c (field_from_memberref): Check if field signature type is equal
5132         to the non-inflated type of the field. Fixes #398980.
5133
5134 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
5135
5136         * assembly.c (mono_assembly_load_from_full): Call 
5137         mono_assembly_load_friends () outside the assemblies lock, since it can
5138         acquire the loader lock. Fixes #323696.
5139
5140         * reflection.c (resolve_object): Inflate the inst with the context for
5141         FieldOnTypeBuilderInst. Fixes #399010.
5142
5143 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5144
5145         * reflection.c (mono_image_get_field_on_inst_token): Don't
5146         inflate the field to encode it's signature. If it's a
5147         VAR or MVAR it should stay that way in the signature.
5148         Fixes #399047.
5149
5150 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5151
5152         * reflection.c (resolve_object): Release memory of inflated types.
5153
5154 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5155
5156         * loader.c (mono_method_get_signature_full): Remove assert about
5157         loading a methodspec to a generic method. We have such methods, such as
5158         System.Threading.Interlocked::CompareExchange<T>.
5159         This assert was removed since it crashes the verifier when it checks
5160         methods calling CompareExchange<T>.
5161
5162 2008-06-10  Marek Safar  <marek.safar@gmail.com>
5163
5164         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
5165         of Type array and not MonoType.
5166
5167 2008-06-10  Marek Habersack  <mhabersack@novell.com>
5168
5169         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
5170         <lupus@ximian.com>
5171
5172 2008-06-10  Martin Baulig  <martin@ximian.com>
5173
5174         * debug-mono-symfile.h
5175         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
5176         changes to the file format, but we were generating incorrect
5177         source file indices in the line number table due to a bug, which
5178         made backtraces report an incorrect source file.
5179
5180 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5181
5182         * mono-debug.c: Moved mono_debug_free_method_jit_info from
5183         mini/debug-mini.c to here.
5184
5185         * mono-debug.c (il_offset_from_address): Free memory from find_method.
5186
5187         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
5188         use it to release structs returned by mono_debug_find_method.
5189
5190 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
5191
5192         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
5193         since it needs to set method->slot for all interface methods.
5194
5195 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5196
5197         * class-internals.h: Forgot to add.
5198
5199 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5200
5201         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
5202
5203         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
5204         Lookup the custom attributes from property_hash.
5205
5206         * reflection.c (mono_save_custom_attrs): Save the custom attributes
5207         in property_hash. Allocate all data using the image mempool.
5208
5209         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
5210         for dynamic_custom_attrs to checks if the image is dynamic.
5211
5212 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
5213
5214         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
5215         assemblies array.
5216         
5217         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
5218         runtime functions while holding the domain assemblies lock.
5219
5220 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5221
5222         * verify.c: Reapplied the last bit of the reverted changes.
5223
5224 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5225
5226         * verify.c: Reapplied more of the reverted changes.
5227
5228 2008-06-09  Martin Baulig  <martin@ximian.com>
5229
5230         * debug-mono-symfile.c (load_symfile): Check the major version
5231         first; if it's wrong, don't print the minor version in the error message.
5232
5233 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
5234
5235         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
5236         lock instead of the domain lock to avoid deadlocks, since the thread might
5237         already hold the loader lock.
5238
5239         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
5240         (mono_thread_attach): Ditto.
5241
5242         * monitor.c: Use a TLS variable for holding the current thread id instead
5243         of calling pthread_self ().
5244         (mono_monitor_init_tls): New internal function to initialize the TLS
5245         variable.
5246         (mono_monitor_try_enter_internal): Put the owner == id check after the
5247         owner == 0 check.
5248
5249         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
5250         missed optimizations when using gcc-4.3.
5251
5252 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
5253
5254         * reflection.c (mono_dynamic_image_free): Free the memory
5255         used by MonoGenericParam in MonoDynamicImage::gen_param.
5256
5257         * reflection.c (mono_reflection_setup_generic_class): Allocate
5258         container from mempool.
5259
5260         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
5261         container from mempool.
5262
5263 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
5264
5265         * threads.c (mono_set_pending_exception): New internal function to set the
5266         pending exception of the current thread.
5267         (mono_thread_get_and_clear_pending_exception): Check for 
5268         thread->pending_exception as well.
5269
5270         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
5271
5272         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
5273         it can trigger a collection.
5274
5275 2008-06-06  Martin Baulig  <martin@ximian.com>
5276
5277         Merged the `debugger-kahalo' branch.
5278
5279         * mono-debug.h
5280         (MONO_DEBUGGER_VERSION): Bumped to 72.
5281
5282         * debug-mono-symfile.h
5283         (MonoSymbolFileMethodIndexEntry): Removed.
5284         (MonoSymbolFileMethodEntry): New public typedef.
5285         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
5286         (MonoSymbolFileSourceEntry): Remove everything except `index' and
5287         `data_offset'.
5288         (MonoSymbolFileMethodEntry): Removed.
5289         (MonoSymbolFileLexicalBlockEntry): Removed.
5290         (MonoSymbolFileLineNumberEntry): Removed.
5291         (MonoDebugLexicalBlockEntry): Removed.
5292         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
5293         removed `num_il_offsets' and `il_offsets'.
5294         (MonoSymbolFile): Replace `version' with `major_version' and
5295         `minor_version'.
5296         (MONO_SYMBOL_FILE_VERSION): Replace with
5297         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
5298         `MONO_SYMBOL_FILE_MINOR_VERSION'.
5299
5300         * debug-mono-symfile.c
5301         (mono_debug_symfile_lookup_location): Add support for the new line
5302         number table format.
5303
5304 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5305
5306         * metadata.c (free_generic_class): Release the inflated
5307         MonoClass of dynamic generic classes if it's not a generic
5308         type definition.
5309
5310 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5311
5312         * verify.c: Reapplied more of the reverted changes.
5313
5314 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5315
5316         * reflection.c (lookup_custom_attr): Clean the cached flag or
5317         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
5318         for SRE types.
5319
5320 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5321
5322         * verify.c: Reapplied a small part of the reverted changes.
5323
5324 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
5325
5326         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5327
5328         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
5329         previously in managed code.
5330         (mono_monitor_exit): Ditto.
5331         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
5332
5333         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
5334         the managed definition.
5335
5336 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
5337
5338         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
5339
5340 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
5341
5342         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
5343         
5344         * monitor.c: Add some micro optimizations.
5345
5346         * icall.c (type_from_typename): Handle 'bool'.
5347
5348 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
5349
5350         * verify.c: Implement constructor verification per P III 1.8.1.4.
5351         Fixes #396716.
5352
5353 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
5354
5355         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
5356         holding the assemblies lock here too.
5357
5358 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5359
5360         * verify.c: Kill stack_top function.
5361
5362 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5363
5364         * verify.c: Kill stack_get function.
5365
5366 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5367
5368         * verify.c (mono_method_verify): Last change broke the build. Fixed.
5369
5370 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5371
5372         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
5373         more reliable.
5374
5375         * verify.c (mono_method_verify): Inflate params and locals to avoid
5376         mismatch when checking for compatibility.
5377
5378 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
5379
5380         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
5381         Length prefix should be size in bytes. Fix bug #339530.
5382         
5383         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
5384         Length prefix should be size in bytes. Fix bug #339530.
5385
5386         Code is contributed under MIT/X11 license.
5387
5388 2008-06-05  Bill Holmes <billholmes54@gmail.com>
5389
5390         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
5391
5392         Contributed under MIT/X11 license.
5393
5394 2008-06-05  Martin Baulig  <martin@ximian.com>
5395
5396         * mono-debug-debugger.c
5397         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
5398
5399 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
5400
5401         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
5402         while holding the assemblies lock to prevent deadlocks. Handle the case
5403         where the search hook returns NULL but the assembly was still loaded.
5404         Fixes #323696.
5405
5406         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
5407         modify domain state.
5408
5409 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
5410
5411         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
5412         * Makefile.am (pedump_LDADD): Post-process object files and
5413         add dtrace-generated object file, if necessary.
5414
5415         Code is contributed under MIT/X11 license.
5416
5417 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5418
5419         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
5420
5421 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5422
5423         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
5424
5425 2008-06-04  Mark Probst  <mark.probst@gmail.com>
5426
5427         * threads.c: Try to free everything from the delayed free table
5428         when shutting down threads, and set the variable to NULL after the
5429         table is freed so that calling
5430         mono_thread_hazardous_try_free_all() when shutting down the root
5431         domain doesn't crash.
5432
5433 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5434
5435         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
5436         the caller if resulting type was inflated.
5437
5438         * class.c (mono_class_create_from_typespec): Free the MonoType if it
5439         was inflated.
5440
5441         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
5442
5443
5444 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
5445
5446         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
5447         class library tests.
5448
5449         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
5450         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
5451         #396989.
5452
5453 2008-06-04  Mark Probst  <mark.probst@gmail.com>
5454
5455         * domain.c, domain-internals.h: The JIT infos are now freed by the
5456         JIT info table code.  They are freed immediately if there only a
5457         single JIT info table in circulation.  If there is more, the free
5458         is delayed via a queue.
5459
5460         * threads.c, threads-types.h: New hazard pointer function for
5461         freeing all freeable delayed items in one sitting.
5462
5463 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5464
5465         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
5466
5467         * reflection.c (typebuilder_setup_properties): Same.
5468
5469         * reflection.c (typebuilder_setup_events): Same.
5470
5471 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5472
5473         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
5474         and use it for allocating memory.
5475
5476         * reflection.c (mono_marshal_spec_from_builder): Same.
5477
5478         * reflection.c: Change code to use new signatures.
5479
5480         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
5481
5482 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5483
5484         * decimal.c (rescale128): Put back one line which was accidently commented
5485         out.
5486         
5487         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
5488         to cause crashes.
5489
5490 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5491
5492         * reflection.c (mono_reflection_generic_class_initialize): Name must
5493         be always malloc'ed so we can free it later on. Do this for field, property
5494         and event.
5495
5496         * metadata.c (free_generic_class): Free field, property and event names.
5497
5498 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5499
5500         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
5501         instead of g_memdup.
5502
5503         * reflection.c (typebuilder_setup_fields): Same.
5504
5505 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5506
5507         * decimal.c (rescale128): Optimize this function a bit more.
5508
5509 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5510
5511         * metadata.c (free_generic_class): Release some memory from
5512         SRE generic classes.
5513
5514 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5515
5516         * reflection.c (mono_image_get_generic_field_token): No reference
5517         to name is kept, free it.
5518
5519         * reflection.c (mono_reflection_generic_class_initialize): Free
5520         more memory of the inflated field.
5521
5522 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5523
5524         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
5525         code.
5526
5527 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
5528
5529         * reflection.c (mono_dynamic_image_free): Release memory used by
5530         MonoDynamicImage::array_methods elements.
5531
5532         * reflection.c (assembly_add_win32_resources): Release memory after
5533         encoding.
5534
5535 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
5536
5537         * decimal.c (log2_32): Use an optimized version for this function too.
5538         
5539         * decimal.c (log2_64): Fix this on 32 bit machines.
5540
5541 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
5542
5543         * class.c (mono_dup_array_type): Implement allocation using a mempool.
5544
5545         * class.c (mono_metadata_signature_deep_dup): Same.
5546
5547         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
5548         a mempool.
5549
5550         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
5551
5552         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
5553
5554         * metadata-internals.h: Added mono_metadata_signature_dup_full.
5555
5556         * class-internals.h: Update signatures to take a MonoMemPool.
5557
5558 2008-06-02  Dick Porter  <dick@ximian.com>
5559
5560         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
5561         * icall-def.h: Add
5562         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
5563         FormatMessage API to get the error text.  Fixes bug 321827.
5564
5565 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
5566
5567         * decimal.c: Add some micro optimizations to make decimal operations faster.
5568
5569 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5570
5571         * reflection.c (method_encode_clauses): Take a mempool
5572         as parameter and use it to allocate the clause array.
5573
5574         * reflection.c (mono_image_get_field_on_inst_token): Free
5575         the inflated type after encoding it.
5576
5577         * reflection.c (mono_dynamic_image_free): Free each element
5578         of MonoDynamicImage::gen_params.
5579
5580         * reflection.c (reflection_methodbuilder_to_mono_method):
5581         Allocate the generic param array from the mempool.
5582         Allocate signature params from the mempool.
5583
5584         * reflection.c (mono_reflection_generic_class_initialize):
5585         Free inflated fields after been used.
5586
5587 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
5588
5589         * icall.c: Reapply the memory leak fixes as they no
5590         longer make mono crash.
5591
5592 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
5593
5594         * reflection.c (mono_type_get_object): Don't store the suplied
5595         MonoType with type_hash. A caller which pass a type that
5596         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
5597         might end with a pointer to freed memory.
5598         The solution is to use byval_arg or this_arg from the associated
5599         MonoClass of the supplied type.
5600
5601 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
5602
5603         * icall.c: Revert the rest of the last change as it breaks the build too.
5604
5605 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5606
5607         * icall.c: Revert a leak fix as it's breaking the build.
5608
5609 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5610
5611         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
5612
5613 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5614
5615         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
5616
5617 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5618
5619         * icall.c: Fix some memory leaks.
5620
5621 2008-05-29  Dick Porter  <dick@ximian.com>
5622
5623         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
5624         async socket operations from the pending list when a socket
5625         closes.  Leaving it until the threadpool services the event
5626         exposes a race condition when a socket descriptor is reused.
5627         Fixes bug 377589.
5628
5629 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5630
5631         * object.c: Fix negative index check for array alocation.
5632
5633 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5634
5635         * icall.c, marshal.c: Delegate wrappers should skip visibility.
5636         This check is performed by the verifier for IL created delegates
5637         and by Delegate::CreateDelegate for programatically created ones.
5638         Fixes #372406.
5639
5640 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5641
5642         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
5643         Fix code to use mono_array_size_t instead of int.
5644
5645         Based on patch by Luis F. Ortiz.
5646         Contributed under X11 license.
5647         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5648
5649 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5650
5651         * icall.c: Added ves_icall_System_Array_GetLongLength and
5652         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
5653         arrays.
5654
5655         * icall.h: Export both new functions.
5656
5657         Based on patch by Luis F. Ortiz.
5658         Contributed under X11 license.
5659         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5660
5661 2008-05-28  Martin Baulig  <martin@ximian.com>
5662
5663         The debugger now requires exactly r103463.
5664
5665         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
5666         This version is not supported by the debugger, wait for 72.
5667
5668 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5669
5670         * object.h: Changed array related functions to use
5671         mono_array_size_t instead of guint32. Forgot to commit this file.
5672
5673         Patch by Luis F. Ortiz.
5674         Contributed under X11 license.
5675         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5676
5677
5678 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5679
5680         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
5681         don't define it. Use the number literal instead.
5682
5683 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5684
5685         * icall.c: Changed array related functions to use
5686         mono_array_size_t instead of guint32.
5687
5688         * icall.c (ves_icall_System_Array_GetLength): Check for length
5689         overflow under MONO_BIG_ARRAYS.
5690
5691         Based on patch by Luis F. Ortiz.
5692         Contributed under X11 license.
5693         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5694
5695 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5696
5697         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
5698
5699         Based on patch by Luis F. Ortiz.
5700         Contributed under X11 license.
5701         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5702
5703 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5704
5705         * object.c, object.h: Changed array related functions to use
5706         mono_array_size_t instead of guint32.
5707
5708         Patch by Luis F. Ortiz.
5709         Contributed under X11 license.
5710         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5711
5712 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5713
5714         * object.h: Introduced mono_array_size_t typedef. This must be used
5715         in all places an array length is expected. This is 64bits wide if
5716         MONO_BIG_ARRAYS is enabled.
5717
5718         Patch by Luis F. Ortiz.
5719         Contributed under X11 license.
5720         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5721
5722 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
5723
5724         * security-manager.c class.c: Set the class exception info by calling
5725         mono_class_set_failure ().
5726
5727         * class.c (mono_class_get_exception_data): New accessor function.
5728         (mono_class_set_failure): Store exception_data in the property hash.
5729
5730         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
5731         the struct as a property.
5732
5733         * loader.c (mono_get_method_full): Store the lookup result for method
5734         tokens in method_cache, the others in methodref_cache to decrease the memory
5735         usage of hash tables.
5736
5737         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
5738         (mono_image_init): method_cache is lazy inited now.
5739
5740         * metadata-internals.h (struct _MonoImage): Change method_cache to
5741         a MonoValueHashTable, add a separate methodref_cache.
5742
5743 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
5744
5745         * number-formatter.h: Fix tables to avoid arithemtic overflow in
5746           Double.ToString as exposed by Bug #383531.
5747
5748 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
5749
5750         * number-formatter.h: Make some tables static.
5751
5752         * class.c (mono_method_set_generic_container): New accessor function.
5753         (mono_method_get_generic_container): Ditto.
5754
5755         * class-internals.h (struct _MonoMethod): Remove rarely used 
5756         'generic_container' field, store it in the property hash instead. Add 
5757         'is_generic' boolean field instead.
5758
5759         * image.c (mono_image_init): Initialize property_hash.
5760         (mono_image_close): Destroy property_hash.
5761
5762         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
5763         hold rarely used fields of runtime structures belonging to this image.
5764
5765         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
5766         to get/set method->generic_container.
5767
5768         * loader.c (mono_get_method_from_token): Avoid loading the method header for
5769         generic methods.
5770
5771 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
5772
5773         * class.c (mono_class_inflate_generic_method_full): Don't increase
5774         mono_stats.inflated_method_count for methods found in the cache.
5775
5776         * threads.c (mono_thread_request_interruption): Add a comment about 
5777         QueueUserAPC ().
5778
5779 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
5780
5781         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
5782         interface_offsets_packed table.
5783         
5784         * class.c (mono_class_init): Remove some dead code.
5785
5786         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
5787         mono_class_setup_vtable () when CAS is active to detect security problems.
5788
5789 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
5790
5791         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
5792
5793         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
5794         parameters as it's irrelevant for delegate checking.
5795
5796 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
5797
5798         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
5799
5800         * class.c (mono_class_init): Control the creation of a generic vtable using
5801         a global which is true by default, but set to false by the runtime startup code.
5802         
5803         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
5804         Disabled for now since it breaks the embedding API.
5805         Move the setup of class->methods for arrays to mono_class_setup_methods ().
5806         (mono_class_setup_methods): Add a memory barrier.
5807
5808         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
5809         when mono_class_init () doesn't compute the generic vtable.
5810         
5811 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
5812         * profiler.c: Added mono_profiler_install_statistical_call_chain,
5813         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
5814         to support call chains (backtrace) in the stat profiler.
5815         * profiler.c, profiler-private.h: Likewise.
5816
5817 2008-05-22  Mark Probst  <mark.probst@gmail.com>
5818
5819         * generic-sharing.c: Init generic class when a method of it is
5820         requested via a runtime generic context.
5821
5822 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
5823
5824         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
5825
5826         * reflection.c (mono_type_get_object): Add a FIXME.
5827
5828         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
5829
5830         * class.c (mono_class_get_method_by_index): New helper function, returning an
5831         entry in the class->methods array.
5832
5833 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
5834
5835         * class.c (mono_class_init): Only do the array optimization for szarrays. 
5836         Avoid creating a generic vtable for generic instances as well.
5837         (mono_class_get_method_from_name_flags): Don't search in the metadata for
5838         generic instances.
5839
5840 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
5841
5842         * loader.c (mono_get_method_constrained): Inflate the signature
5843         with class context. Fix #325283.
5844
5845 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
5846
5847         * object.c (mono_class_create_runtime_vtable): Add a comment.
5848
5849         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
5850         where needed.
5851         (setup_interface_offsets): Handle the case when this is called twice for arrays.
5852         (mono_class_setup_vtable_general): Add an assert.
5853         (mono_class_init): Avoid creating a generic vtable for arrays.
5854
5855         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
5856         here, let mono_class_init () do that.
5857
5858         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
5859         interfaces in mscorlib.
5860
5861         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
5862         interfaces. Add some comments.
5863         (mono_class_init): Call mono_class_setup_methods () here since it is no
5864         longer called by mono_class_setup_vtable ().
5865
5866         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
5867         not set in class->vtable.
5868         (mono_class_create_runtime_vtable): Reenable the disabled code.
5869
5870         * object.c (mono_class_create_runtime_vtable): Disable the last change for
5871         now as it causes some test failures.
5872
5873         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
5874         if using the vtable trampoline. Also remove some strange code which put the
5875         generic methods themselves into the vtable slots. Remove the AOT init_vtable
5876         stuff as it is no longer needed.
5877
5878 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5879
5880         * pedump.c: Give make --verify all option check code as well.
5881         Using --verify code won't check for metadata now.
5882
5883 2008-05-19  Martin Baulig  <martin@ximian.com>
5884
5885         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
5886
5887         * mono-debug.c
5888         (_mono_debug_using_mono_debugger): New global variable; it's set
5889         directly by the debugger, so mono_debug_using_mono_debugger() also
5890         works after attaching.
5891
5892 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5893
5894         * object.c (mono_class_create_runtime_vtable): Use memory barriers
5895         as we do double checked locking on MonoClass::runtime_info and
5896         MonoClassRuntimeInfo::domain_vtables.
5897
5898 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
5899
5900         * debug-helpers.c (print_field_value): Fix a warning.
5901
5902 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
5903
5904         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
5905         set in the AOT case.
5906
5907 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
5908
5909         * class.c (mono_class_setup_vtable_general): Use memory barriers
5910         as we do double checked locking on MonoClass::vtable.
5911
5912 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
5913
5914         * reflection.c (resolve_object): Inflate only if the generic context
5915         is not null. Fixes #389886.
5916
5917 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
5918
5919         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
5920         instead of g_free.
5921
5922         Code is contributed under MIT/X11 license.
5923
5924 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5925
5926         * class.c: Revert unrelated change.
5927
5928 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5929
5930         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
5931         a generic instantiation, use mono_class_from_mono_type instead of playing
5932         with MonoType directly.
5933
5934 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
5935
5936         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
5937         checks must ignore generic instantiations, so mono_class_has_parent is not
5938         suitable. Fixes #390128.
5939
5940 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
5941
5942         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
5943         it to avoid registering tokens during metadata generation. Fixes #390023.
5944
5945 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
5946
5947         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
5948         consistent.
5949
5950         Contributed under MIT/X11 license.
5951
5952 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
5953
5954         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
5955         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
5956         to fixup the EXE image.
5957         (mono_cleanup): Use mono_close_exe_image.
5958         (mono_close_exe_image): New function.
5959         * image.c: Include "marshal.h".
5960         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
5961         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
5962         counting when the image is loaded outside of mono_image_open_full. Set status
5963         based on GetLastError.
5964         * coree.c: Include required headers. Add init_from_coree.
5965         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
5966         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
5967         (_CorExeMain): Set init_from_coree.
5968         (CorExitProcess): Only call ExitProcess for now.
5969         (CorBindToRuntimeEx): New stub implementation.
5970         (CorBindToRuntime): New function.
5971         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
5972         (MonoFixupExe): ILONLY executables require no fixups.
5973         (mono_set_act_ctx): New function to set activation context.
5974         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
5975         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
5976         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
5977         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
5978         as MONO_INTERNAL.
5979         * domain-internals.h: Add mono_close_exe_image.
5980
5981         Contributed under MIT/X11 license.
5982
5983 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5984
5985         * metadata.c (mono_metadata_compute_size): Correctly calculate field
5986         size for generic param and event tables. Fixes #388977.
5987
5988 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
5989
5990         * loader.c (mono_method_signature): Use memory barriers because of the double
5991         checked locking pattern.
5992
5993         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
5994         aborting or aborted as well. Fixes #376391.
5995         
5996         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
5997         existing runtime state in the Suspend handler during shutdown.
5998
5999 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
6000
6001         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
6002
6003         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
6004         which are starting up or shutting down.
6005
6006         * threads.c (mono_threads_set_shutting_down): Don't return a value since
6007         this function never returns if the runtime is already shutting down.
6008
6009         * icall.c (ves_icall_System_Environment_Exit): Update after 
6010         mono_threads_set_shutting_down () signature change.
6011         
6012 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
6013
6014         * class.c: Added can_access_instantiation to verify if the instantiation
6015         is visible. Fix access check for nested types as they returned TRUE
6016         before doing type and generic instantiation visibility checks.
6017
6018 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
6019
6020         * reflection.c (mono_reflection_create_generic_class): The created type
6021         must have a different container from its TypeBuilder. Otherwise they
6022         will end sharing generic arguments, which is wrong.
6023
6024         Due to the sharing, making a generic instance of the created type using
6025         the TypeBuider generic arguments resulted in the generic type definition
6026         been returned, which is wrong as well.
6027
6028         As a bonus the code was leaking the type_params array. This memory should
6029         be allocated from the image mempool.
6030
6031         This fixes bug #354047.
6032
6033 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
6034
6035         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
6036         to here         as they are now used in assembly.c new code.
6037         Added a skipverification flag to MonoAssembly.
6038         New internal function mono_assembly_has_skip_verification.
6039
6040         * assembly.c: New function mono_assembly_has_skip_verification. It checks
6041         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
6042         part of #387274.
6043
6044 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
6045
6046         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
6047         needed. Fixes #387034.
6048
6049         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
6050
6051 2008-05-06  Miguel de Icaza  <miguel@novell.com>
6052
6053         * assembly.c (mono_assembly_load_reference): Prevent crash while
6054         disassembling Silverlight 2.0 executables while we still do not
6055         have GACed libraries.
6056
6057 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
6058
6059         * reflection.c: Special case generic type definitions as well. Fixes #383444.
6060
6061 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
6062
6063         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
6064         of the dynamic case. Fixes #387404.
6065
6066 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6067
6068         *verify.c (mono_verifier_is_class_full_trust): If under
6069         verify_all and the verifier mode was not set, only
6070         gac and corlib types are fulltrust. This makes --verify-all
6071         usable to detect unverifiable code, which is the expected
6072         use case.
6073
6074 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6075
6076         * verify.h: Ops, commited the header with debug
6077         enabled.
6078
6079 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6080
6081         * verify.c (merge_stack): Use the new value on unverifiable
6082         stack merges.
6083
6084         * verify.c (verify_type_compatibility_full): Comparison
6085         of nullable types can't use mono_class_is_assignable_from.
6086
6087         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
6088         that makes all verification errors be reported.
6089
6090         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
6091         mono_method_verify.
6092
6093 2008-05-05  Robert Jordan  <robertj@gmx.net>
6094
6095         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
6096         support for value types. See #386415.
6097
6098         * object.c: comments.
6099
6100         Code is contributed under MIT/X11 license.
6101
6102 2008-05-05  Martin Baulig  <martin@ximian.com>
6103
6104         * debug-mono-symfile.h
6105         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
6106         for old pre-terrania symbol files.
6107
6108 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6109
6110         * mono-config.c: Add ppc64 architecture.
6111
6112         Code is contributed under MIT/X11 license.
6113
6114 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6115
6116         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
6117           PPC64 uses function descriptors as well.
6118
6119         Code is contributed under MIT/X11 license.
6120
6121 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
6122
6123         * object.c (compute_class_bitmap): Ignore literal static fields.
6124
6125         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
6126         var has an invalid format.
6127         (describe_ptr): Add some sanity checks for the vtable.
6128         (add_nursery_frag): Clear unused nursery fragments.
6129         (major_collection): Clear all remaining nursery fragments.
6130
6131 2008-05-03  Robert Jordan  <robertj@gmx.net>
6132
6133         * image.c, metadata-internals.h: add thunk_invoke_cache.
6134
6135         * marshal.c, marshal.h: implement
6136         mono_marshal_get_thunk_invoke_wrapper ().
6137
6138         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
6139
6140         Code is contributed under MIT/X11 license.
6141
6142 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
6143
6144         * verify.c (do_leave): Empty the stack.
6145
6146 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
6147
6148         * class.c (mono_class_is_assignable_from): Variance
6149         doesn't work between reference and value types. For example,
6150         given type C<T+>, C<int32> is not assignable to C<object>.
6151         Break the argument checking loop on first error. 
6152
6153 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
6154
6155         * icall.c : base64_to_byte_array() needs some more strict
6156           check for sequence of '=' characters. Patch by Santa
6157           Marta (http://deee.g.hatena.ne.jp/santamarta).
6158
6159           Contributed under MIT/X11 license.
6160           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
6161
6162 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
6163
6164         * domain.c: Disable LoadLibrary support to fix Win32 build.
6165
6166         Code is contributed under MIT/X11 license.
6167
6168 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
6169
6170         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
6171         to help with cache behaviour.
6172
6173 2008-05-01  Miguel de Icaza  <miguel@novell.com>
6174
6175         * appdomain.c (mono_domain_from_appdomain): Add new accessor
6176         method. 
6177
6178 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
6179
6180         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
6181
6182 2008-05-01  Dick Porter  <dick@ximian.com>
6183
6184         * process.c (process_get_fileversion): Only pass 16 bits of
6185         language ID to VerLanguageName.  Fixes bug 381204.
6186
6187 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6188
6189         * verify.c (mono_method_verify): Fix the comparison
6190         operator for code bounds check.
6191
6192 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6193
6194         * verify.c (mono_method_verify): Check the bounds of
6195         all access of the code array.
6196
6197 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
6198
6199         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
6200
6201 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
6202
6203         * image.c (mono_image_strong_name_position): Fix return value when the rva is
6204         not valid.
6205
6206 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
6207
6208         * loader.c (mono_get_method_from_token, mono_method_signature): Add
6209         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
6210         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
6211         fixup main EXE images when using mono.exe for mixed-mode assembly support.
6212         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
6213         mono_runtime_load.
6214         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
6215         runtime initialization from metadata.
6216         * assembly.c: Remove obsolete ceGetModuleFileNameA.
6217         (mono_set_rootdir): Use mono_get_module_file_name.
6218         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
6219         handles.
6220         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
6221         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
6222         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
6223         MonoCLIImageInfo. Add support for module handles.
6224         (load_cli_header): Update mono_cli_rva_image_map signature.
6225         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
6226         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
6227         (mono_image_rva_map): Add support for module handles.
6228         (mono_image_ensure_section_idx): Add support for module handles.
6229         (mono_image_close): Add support for module handles.
6230         (do_load_header): Add support for module handles.
6231         (mono_image_open_from_module_handle): New function for internal use.
6232         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
6233         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
6234         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
6235         handles.
6236         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
6237         * image.h: Add mono_image_fixup_vtable.
6238         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
6239         support.
6240         * coree.h: New file.
6241         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
6242         unsupported native code.
6243         (mono_marshal_set_callconv_from_modopt): New function splitted from
6244         mono_marshal_get_managed_wrapper.
6245         (mono_marshal_get_managed_wrapper): Use
6246         mono_marshal_set_callconv_from_modopt.
6247         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
6248         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
6249         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
6250         that results in a deadlock when the runtime is loaded in _CorDllMain.
6251         * Makefile.am: Add coree.c and coree.h.
6252
6253         Contributed under MIT/X11 license.
6254
6255 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6256
6257         * generic-sharing.c: Search for type arguments in array element
6258         types as well.
6259
6260 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6261
6262         * class-internals.h, generic-sharing.c: New, small runtime generic context.
6263
6264         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
6265
6266         * object.c: Don't setup the RGCTX when the vtable is created,
6267         because we're setting it up lazily now.
6268
6269 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
6270
6271         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
6272         64 bit support.
6273
6274 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6275
6276         * verify.c (verify_class_for_overlapping_reference_fields): 
6277         If class is under fulltrust allow reference types to overllap
6278         if they have the same RVA.
6279
6280 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6281
6282         * pedump.c: Added new flag valid-only, that makes the verifier
6283         behaves just like --security=validil. It won't fail type load
6284         due to unverifiable restrictions.
6285
6286 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6287
6288         * class-internals.h (struct MonoMethod): Added a verification_success
6289         field to cache verifier executions. Reduced MonoMethod:slot size by
6290         one bit.
6291
6292 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
6293
6294         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
6295         instead of a 'vt' argument to save an indirection and to allow these to be used
6296         for valuetypes.
6297         (scan_vtype): New helper function to scan an area using a gc descriptor.
6298         (mono_gc_wbarrier_value_copy): Implement this.
6299         (handle_remset): Add support for REMSET_VTYPE.
6300         (find_in_remset_loc): Ditto.
6301         (mono_gc_base_init): Allow some debugging options to be controlled through the
6302         use of the MONO_GC_DEBUG env variable.
6303         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
6304         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
6305
6306 2008-04-23  Martin Baulig  <martin@ximian.com>
6307
6308         * domain.c (mono_domain_create): Move the call to
6309         mono_debug_domain_create() down, after allocating the domain id.
6310
6311 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6312
6313         verify.c (verify_class_for_overlapping_reference_fields): Skip
6314         static fields while verifying for overlapping fields as they
6315         don't matter at all.
6316
6317 2008-04-23  Marek Habersack  <mhabersack@novell.com>
6318
6319         * domain-internals.h: added a declaration of
6320         mono_make_shadow_copy.
6321
6322         * assembly.c (mono_assembly_open_full): shadow copying of
6323         assemblies moved to here, so that all the assemblies within the
6324         application domain's private binary directories can be
6325         processed. Fixes bug #380546
6326
6327         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
6328         mono_make_shadow_copy and made non-static. The decision whether
6329         to shadow-copy an assembly is made based on its location - it's
6330         copied if it's in one of the private application domain binary
6331         directories and its different to the target file in the shadow
6332         directory. Fixes bug #380546
6333
6334 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
6335
6336         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
6337
6338         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
6339         types.
6340
6341         * reflection.c (mono_image_create_token): Handle 
6342         Method/ConstructorOnTypeBuilderInst.
6343         (resolve_object): Ditto.
6344         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
6345         so it can be called from resolve_object. Also handle the case when the inflated
6346         class already has its methods setup.
6347
6348 2008-04-21  Martin Baulig  <martin@ximian.com>
6349
6350         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
6351
6352 2008-04-20  Geoff Norton  <gnorton@novell.com>
6353
6354         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
6355         pointer dereference.
6356
6357 2008-04-15  Marek Habersack  <mhabersack@novell.com>
6358
6359         * appdomain.c (try_load_from): if IOMAP is in effect, call the
6360         portability API to look up the assembly file. Fixes behavior in
6361         situations when the application has a bin/ directory, but the
6362         assembly search patch refers to Bin/ (and thus the requested file
6363         name is Bin/SomeLibrary.dll). Fixes bug #379888
6364
6365 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6366
6367         verify.c (mono_type_is_generic_argument): Extracted this check
6368         from a dozen places to here.
6369
6370         verify.c: Fixed all issues related to boxing generic arguments
6371         and their constraints.
6372
6373 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6374
6375         verify.c (mono_class_interface_implements_interface): Fix win32 build.
6376
6377 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
6378
6379         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
6380         isn't finished yet. Fixes #363447.
6381
6382 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
6383
6384         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
6385         Fixes #346419.
6386
6387 2008-04-13  Jb Evain  <jbevain@novell.com>
6388
6389         * domain.c: update the 2.1 profile versions.
6390         Merged from the Moonlight 2 branch.
6391
6392 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
6393
6394         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
6395         mscorlibs for the non-refonly case as well.
6396
6397         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
6398         in mono_assembly_load_from_full (). Fixes #378924.
6399
6400 2008-04-11  Geoff Norton  <gnorton@novell.com>
6401
6402         * icall.c: The global extern environ doesn't exist on Mac.  We
6403         need to call NSGetEnviron instead.
6404
6405 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6406
6407         verify.c: Add generic method constraint verification.
6408
6409 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6410
6411         class.c (mono_class_inflate_generic_method_full): Add a long
6412         explanation to the is_mb_open hack. Remove the FIXME.
6413
6414 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6415
6416         * verify.c (mono_method_verify): Mark all unknown opcodes
6417         as invalid. Mark jmp as unverifiable.
6418
6419 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6420
6421         * verify.c: Add code to do type constraint verification on class instances.
6422
6423         * verify.c (mono_verifier_verify_class): Use the type constraint 
6424         verification code.
6425
6426 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6427
6428         * class.c (mono_class_get_field_default_value): Don't pass cindex
6429         as hint to mono_metadata_get_constant_index. The local is not initialized
6430         and should contain garbage most of the time. This could only work
6431         with a lot of luck.
6432
6433 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6434
6435         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
6436
6437 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6438
6439         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
6440
6441         * class.c (mono_class_from_generic_parameter): Save the token of the
6442         generic param in MonoClass::sizes.generic_param_token.
6443
6444         * reflection.c (mono_custom_attrs_from_class): If the class type is
6445         VAR or MVAR retrieve the attributes of the generic param.
6446
6447 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6448
6449         * class.c (mono_class_init): Do class verification if the verifier
6450         is enabled.
6451
6452 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6453
6454         * verify-internal.h: Added mono_verifier_verify_class.
6455
6456         * verify.c: Added mono_verifier_verify_class. It checks for
6457         classes with explicit layout that have overlapping reference fields.
6458
6459         * pedump.c: Init the verifier state prior to verification. Fixed
6460         command line arguments.
6461
6462 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6463
6464         * Makefile.am: Added verify-internals.h, hopefully fix the build.
6465
6466 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6467
6468         * verify-internals.h: Fix a warning.
6469
6470 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6471
6472         * verify-internals.h: New header with the verifier configuration
6473         extracted from mini.c.
6474
6475         * verify.c: Implemented the new functions exported by verify-internals.h.
6476
6477 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6478
6479         * verify.c: Add proper verification of ckfinite.
6480
6481 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6482
6483         * verify.c (do_conversion): Improved error message to something
6484         more meanfull.
6485
6486         * verify.c (check_is_valid_type_for_field_ops): Fix to work
6487         with primitive types.
6488
6489 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6490
6491         * verify.c: Added tail prefix checking. Marked icall
6492         as unverifible.
6493
6494 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6495
6496         * verify.c: Fix the detection of branches to the middle
6497         of an instruction.
6498
6499 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6500
6501         * verify.c: Implemented verification of volatile. and
6502         unaligned. prefix. Check if a type is valid after retrieving it.
6503
6504 2008-04-01  Dick Porter  <dick@ximian.com>
6505
6506         * process.c (process_get_fileversion): If there's no string block,
6507         set the file language to en_US.  Fixes the other new part of bug
6508         374600.
6509
6510 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
6511
6512         * class.c: New functions mono_method_can_access_field_full and
6513         mono_method_can_access_method_full. They perform type visibility
6514         and type site check.
6515
6516         * class-internal.h: Added exported functions.
6517
6518         * verify.c: Use new functions to implement proper visibility checks.
6519
6520 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
6521
6522         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
6523
6524 2008-03-28  Dick Porter  <dick@ximian.com>
6525
6526         * process.c (process_get_fileversion): Use the first language ID
6527         we see, rather than insisting on an invariant language.  Fixes bug
6528         374600.
6529
6530 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
6531
6532         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
6533         the streams to fix reading of invalid memory later.
6534
6535         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
6536         to ease debugging.
6537
6538 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
6539
6540         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
6541         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
6542
6543 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
6544         * threads.h: Added MonoThreadManageCallback type and
6545         mono_thread_set_manage_callback prototype
6546         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
6547         (used to store the mono_thread_manage callback).
6548         * threads.c: Added mono_thread_set_manage_callback, and handle
6549         "MonoThread->manage_callback" in build_wait_tids.
6550
6551 2008-03-26  Dick Porter  <dick@ximian.com>
6552
6553         * process.c (process_get_fileversion): Set FileVersionInfo strings
6554         to Empty when the resource doesn't have the particular info.
6555         Fixes bug 355717.
6556
6557 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
6558
6559         * verify.c (mono_method_verify): Proper prefix validation.
6560
6561 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
6562
6563         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
6564         itself in a separate argument instead of throwing them. Fixes #373448.
6565
6566         * appdomain.c: Bump corlib version.
6567
6568 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6569
6570         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
6571
6572 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
6573
6574         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
6575         version macros.
6576
6577 2008-03-20  Mark Probst  <mark.probst@gmail.com>
6578
6579         * generic-sharing.c, class-internals.h: Code for putting
6580         reflection types into the runtime generic context.
6581
6582 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6583
6584         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
6585         Fixes #340662. 
6586
6587
6588 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
6589
6590         * verify.c (VerifyContext): Added instruction prefix data to the struct.
6591
6592         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
6593
6594         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
6595
6596         * verify.c (do_cast): Let the result value keep the boxed status.
6597
6598         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
6599
6600 2008-03-17  Jb Evain  <jbevain@novell.com>
6601
6602         * reflection.c: when running on a 2.0 runtime, emit
6603         unconditionally the #~ header version as 2.0, and the
6604         CLI header version as 2.5, for symmetry's sake with csc.
6605
6606 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
6607
6608         * class.c: Remove the unused cache_interface_offsets stuff.
6609
6610         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
6611         profiler.c: Fix warnings.
6612
6613 2008-03-16  Mark Probst  <mark.probst@gmail.com>
6614
6615         * generic-sharing.c, class-internals.h: Support for putting
6616         methods into the runtime generic context.
6617
6618 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
6619
6620         * class.c (mono_class_setup_fields): Ignore calls made to this function for
6621         classes which are generic instances of not-yet finished typebuilders. Fixes
6622         #351172.
6623
6624         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
6625
6626 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
6627
6628         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
6629
6630         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
6631         field, replace it with a hash table in MonoDynamicImage.
6632
6633         * reflection.c (inflate_mono_method): Access the generic definition object from
6634         image->generic_def_objects instead of imethod->reflection_info.
6635
6636         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
6637
6638         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
6639         
6640         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
6641         function in reflection.c so it is easier to keep in sync with the dynamic image
6642         creation code.
6643
6644         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
6645         mono_image_close ().
6646
6647 2008-03-15  Mark Probst  <mark.probst@gmail.com>
6648
6649         * class.c (mono_class_generic_sharing_enabled): Disable generic
6650         sharing for all architectures except AMD64 and x86 to fix build.
6651
6652 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
6653
6654         * verify.c: Use the generic definition MonoGenericContext when available.
6655         Remove code for checking generics instance compatibility in favor of
6656         mono_class_is_assignable_from.
6657
6658 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6659
6660         * marshal.c, marshal.h, metadata-internals.h, image.c,
6661         wrapper-types.h: New wrapper for invoking a shared static method
6662         without having to pass the runtime generic context argument.
6663
6664 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
6665
6666         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
6667
6668 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6669
6670         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
6671         
6672         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
6673         create a token from a FieldOnTypeBuilderInst.
6674         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
6675         (resolve_object): Ditto.
6676
6677         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
6678         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
6679
6680 2008-03-14  Martin Baulig  <martin@ximian.com>
6681
6682         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
6683
6684         * debug-mono-symfile.h
6685         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
6686         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
6687
6688 2008-03-10  Martin Baulig  <martin@ximian.com>
6689
6690         * debug-mono-symfile.h
6691         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
6692         `lexical_block_table_offset'.
6693         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
6694         `lexical_blocks'.
6695         (MonoSymbolFile): Added `version'.
6696
6697         * mono-debug.h
6698         (MonoDebugLexicalBlockEntry): Removed.
6699         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
6700         `lexical_blocks'.
6701
6702         * mono-debug.c (mono_debug_add_method): Don't compute lexical
6703         blocks here; the debugger now does this internally.
6704
6705 2008-02-27  Martin Baulig  <martin@ximian.com>
6706
6707         * object.c (mono_runtime_exec_main): Call
6708         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
6709         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
6710
6711 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6712
6713         * verify.c (verify_type_compatibility_full): Allow native int to be converted
6714         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
6715
6716 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6717
6718         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
6719         ldftn with a virtual method.
6720
6721 2008-03-13  Geoff Norton  <gnorton@novell.com>
6722
6723         * decimal.c:  Only include memory.h if the platform has it.
6724
6725 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
6726
6727         * assembly.c, class.c, metadata-internals.h: make sure public key
6728         tokesns are compared in a case-insensitive way. Also, all
6729         the lookups in the GAC use a lowercase public key token
6730         (gaacutil already does the lowercasing on install). Fixes
6731         bug #369541.
6732
6733 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
6734
6735         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
6736         and return value.
6737
6738 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
6739
6740         * image.c: when someone loads a mscorlib from a file, return the
6741         currently loaded mscorlib (fixes bug #369253).
6742
6743 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
6744
6745         * class.c: handle types with no parents by forcing them to have
6746         System.Object as a parent and marking them as broken (this currently
6747         allows the first part of bug #369173 to work as well, likely because
6748         we don't check for typeload exceptions everywhere yet).
6749
6750 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
6751
6752         * class.c: more complete check that types belong to corlib
6753         (fixes second part of bug #369173).
6754
6755 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
6756
6757         * generic-sharing.c:  Including glib.h for the MSVC builds to define
6758           "inline" to "__inline" before including mono-membar.h.
6759           
6760         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
6761           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
6762           MSVC builds.
6763
6764         Contributed under MIT/X11 license.
6765
6766 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
6767
6768         * verify.c (do_invoke_method): Remove return type validation.
6769
6770         * verify.c (do_ret): Do return type validation at return site instead of
6771         call site.
6772
6773 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
6774
6775         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
6776
6777         * verify.c: Some todos cleaned and improved a few error messages.
6778
6779 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
6780
6781         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
6782
6783 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6784
6785         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
6786         system types correctly.
6787
6788         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
6789         function.
6790
6791 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6792
6793         * assembly.c (build_assembly_name): Fix a warning.
6794
6795 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6796
6797         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
6798         the called function takes an object type argument. Fixes storing or
6799         valuetypes across remoting as well as reducing memory usage.
6800         * image.c, metadata-internals.h: remove now unused ldfld_remote and
6801         stfld_remote wrapper caches.
6802
6803 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6804
6805         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
6806         is not found.
6807
6808         * reflection.c (mono_image_register_token): New helper function to save
6809         a token->object mapping.        
6810
6811         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
6812         managed code.
6813
6814         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
6815         one dimension arrays. Fixes #367670.
6816         (mono_reflection_get_type_internal): Ditto.
6817
6818 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6819
6820         * marshal.c: mono_load_remote_field_new() always returns object.
6821         so use the proper signature (fixes bug #366445).
6822
6823 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6824         
6825         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
6826         add an 'inline_failure' flag instead.
6827
6828 2008-03-04  Mark Probst  <mark.probst@gmail.com>
6829
6830         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
6831         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
6832         contains the location of "this", used for exception handling.
6833
6834 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6835
6836         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
6837         their size on all platforms for perf reasons.
6838
6839 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6840
6841         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
6842         object-internal.h
6843
6844         * object-internal.h: Same.
6845
6846 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6847
6848         * reflection.h: Fix the build I just broke.
6849
6850 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6851
6852         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
6853         Test if a token is valid, this remove explicit usage of 
6854         MonoDynamicImage::tokens from the verifier code.
6855
6856         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
6857
6858         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
6859         instead of direct access to MonoDynamicImage::tokens.
6860
6861 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6862
6863         * verify.c (token_bounds_check): Fix the build I just broke.
6864
6865 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6866
6867         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
6868
6869         * verify.c (verifier_load_method): Fixed the errors message.
6870
6871         * verify.c (mono_method_verify): Fixed a debug message.
6872
6873 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
6874
6875         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
6876         mono-perfcounters.h, class-internals.h: support for predefined
6877         writable counters, query of categories and counters, bugfixes.
6878
6879 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
6880
6881         * verify.c (do_refanytype): Verify the refanytype opcode.
6882
6883         * verify.c (mono_method_verify): Use do_refanytype.
6884
6885 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
6886
6887         * verify.c (do_mkrefany): Verify the mkrefany opcode.
6888
6889         * verify.c (mono_method_verify): Use do_mkrefany.
6890
6891 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
6892
6893         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
6894         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
6895         implementation.
6896
6897 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
6898
6899         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
6900         the type load exception.
6901
6902 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6903
6904         * verify.c: Added a few FIXME for method signatures
6905
6906         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
6907         of mono_method_get_signature and get vararg call working. Removed unused
6908         checks for return value.
6909
6910         * verify.c (do_refanyval): Verify the refanyval opcode.
6911
6912         * verify.c (mono_method_verify): Implemented verification of arglist and
6913         use do_refanyval.
6914
6915 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
6916
6917         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
6918         vtypes to marshal.c.
6919
6920         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
6921         it works for AOT as well.
6922
6923 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
6924
6925         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
6926         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
6927         the system time is adjusted.
6928
6929 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
6930
6931         * icall.c, icall-def.h: use the new time functions (fixes the
6932         non-monotonic behaviour of TickCount).
6933
6934 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
6935
6936         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
6937         it breaks the build.
6938         
6939         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
6940         cattr is not finished yet.
6941
6942 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
6943
6944         * verify.c: Proper token validation for field, method and type.
6945
6946 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
6947
6948         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
6949
6950         * loader.c (method_from_memberref): Generate type load error instead of method missing
6951         if the type is not found.
6952
6953 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
6954
6955         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
6956         some of the conversions caused the generation of a marshal directive exception.
6957
6958 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
6959
6960         verify.c: Report which exception should be thrown by the JIT.
6961         Added a lot of FIXME notes.
6962
6963 2008-02-22  Mark Probst  <mark.probst@gmail.com>
6964
6965         * generic-sharing.c: Runtime generic context slots are not
6966         instantiated on init anymore.  Instead, provide function to do the
6967         instantiating on demand.
6968
6969         * class-internals.h: Added vtable to runtime generic context.
6970         Macros for encoding direct and indirect slot offsets in one
6971         guint32.
6972
6973 2008-02-21  Mark Probst  <mark.probst@gmail.com>
6974
6975         * object.c, generic-sharing.c: Moved some generic sharing code
6976         from object.c to generic-sharing.c.
6977
6978         * generic-sharing.c: Added support for extensible runtime generic
6979         context.
6980
6981         * metadata-internals.h: Two new hash tables in MonoImage for
6982         extensible runtime generic context support.
6983
6984         * domain.c: Unregister generic vtables upon domain unloading.
6985
6986         * image.c: Destroy new hash tables upon image unloading.
6987
6988         * metadata.c: Unregister generic subclasses upon image unloading.
6989
6990         * class-internals.h: New data structure for runtime generic
6991         context template.  New fields in the runtime generic context for
6992         extensible part.
6993
6994         * Makefile.am: Added generic-sharing.c.
6995
6996 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
6997
6998         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
6999         there is a pending loader exception, raise it.
7000
7001         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7002         same.
7003
7004         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
7005         same.
7006
7007         Fixes #363450.
7008
7009 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
7010
7011         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
7012
7013         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
7014         
7015         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
7016         ref-only requests for compatibility with MS.
7017
7018 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
7019
7020         * reflection.c (mono_custom_attrs_from_method): Don't silently
7021         return an empty list for generic method instances.
7022         (mono_custom_attrs_from_param): Likewise.
7023
7024 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
7025             Raja R Harinath  <harinath@hurrynot.org>
7026
7027         Fix #354757
7028         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
7029         * class.c (mono_class_inflate_generic_method_full): Initialize it
7030         when a fully-open method is instantiated.
7031         * metadata.c (inflated_method_equal, inflated_method_hash): Update
7032         to new field.
7033         * reflection.c (inflate_mono_method): Don't create a temporary context.
7034
7035 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
7036
7037         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
7038         Compute correct value, to prepare for imethod->reflection_info going away.
7039
7040 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
7041
7042         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
7043
7044 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7045
7046         * verify.c: Implement skip visibility flag.
7047
7048 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7049
7050         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
7051         which contains an extra field to tell the kind of exception that should be thrown.
7052
7053         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
7054
7055 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
7056
7057         * loader.c (mono_method_get_param_names): Initialize 'klass' after
7058         'method' is updated.
7059
7060 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
7061
7062         * class.c (mono_class_layout_fields): Set class->min_align for classes using
7063         explicit layout as well. Fixes #360375.
7064
7065 2008-02-11  Geoff Norton  <gnorton@novell.com>
7066
7067         * loader.c: Guard and dereference against inflated generic methods
7068
7069 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
7070
7071         * class.c: Include Retargetable spec in assembly name.
7072         * assembly.c: Always include PublicKeyToken spec in assembly name
7073         (with value "null" if assembly is not signed), and include
7074         Retargetable spec.
7075         * icall-def.h: Added icall for Assembly.get_fullname.
7076         * icall.c: Added icall returning the fullname of an assembly.
7077
7078 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
7079
7080         * class.c (mono_class_setup_vtable_general): Add a missing call to
7081         mono_class_setup_methods () which is needed in the AOT case.
7082
7083 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
7084
7085         * verify.c (mono_type_get_stack_name): Added. Return the name for the
7086         stack type of the given MonoType.
7087
7088         * verify.c (verify_type_compatibility_full): Handle the void type.
7089
7090         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
7091         way stack merging works.
7092
7093         * verify.c (store_local): Improved verification message.
7094
7095         * verify.c (do_branch_op): If the merging is invalid, the method
7096         is unverifiable and not invalid. Improved error message.
7097
7098         * verify.c (merge_stacks): Properly merge a boxed valuetype and
7099         a reference type diferent than System.Object. Improved error
7100         message.
7101
7102 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
7103
7104         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
7105
7106         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
7107         type of an enum even if the argument is byref.
7108
7109         * verify.c: Replace all explicit uses of enumtype and enum_basetype
7110         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
7111
7112         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
7113
7114         *verify.c (verify_type_compatibility_full): Make enum types
7115         compatible with their base types.
7116
7117         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
7118         types are compatible for the special case of a boxed valuetype and
7119         System.Object.
7120
7121         * verify.c (verify_stack_type_compatibility): The function
7122         is_compatible_boxed_valuetype was extracted from here.
7123
7124         * verify.c (push_arg): Only set ctx->has_this_store if the method
7125         is not static.
7126
7127         * verify.c (do_ldelem): Fixed a typo in an error message and added
7128         strict check for mixing int32 and native int as the array type
7129         and ldelem type.
7130
7131         * verify.c (merge_stacks): Consider boxed valuetypes in the
7132         compatibility checks.
7133
7134 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
7135         * profiler.h: (MonoGCEvent): Added start-stop the world events.
7136
7137 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
7138         *class.c: use_new_interface_vtable_code: renamed the env var to have
7139         a "MONO_" prefix, and fix the logic to enable it by default.
7140
7141 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
7142         *class.c:
7143         mono_class_setup_vtable_general: rewrote the way in which interface
7144         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
7145         makes the code more maintainable.
7146         For now the old code is still there, and can be activated setting
7147         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
7148
7149 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
7150
7151         * verify.c: guarded some debug functions around and #ifdef.
7152
7153         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
7154
7155 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
7156
7157         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
7158         changes for now since they seem to break too many things.
7159
7160 2008-02-05  Mark Probst  <mark.probst@gmail.com>
7161
7162         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
7163         mono_marshal_find_nonzero_bit_offset): Added macro and function
7164         for finding the byte- and bit-offset of a bitfield within a
7165         struct.
7166
7167 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
7168
7169         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
7170         (mono_marshal_get_struct_to_ptr): Ditto.
7171
7172         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
7173         cctor_signature.
7174
7175 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
7176
7177         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
7178         between methods for non-corlib types.
7179
7180 2008-02-02  Geoff Norton  <gnorton@novell.com>
7181
7182         * loader.c (mono_method_get_param_names): Populate the parameter name for 
7183         generic parameters as well. (Fixes #342536)
7184
7185 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
7186
7187         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
7188
7189         * verify.c (do_invoke_method): Fix for calling with byref structs.
7190
7191         * verify.c (do_cast): push a boxed value type based on the type token and not
7192         the type of stack.
7193
7194 2008-01-31  William Holmes  <billholmes54@gmail.com>
7195
7196         * process.c (process_module_string_read): Check the size returned form 
7197           VerQueryValue to avoid out of memory exception. 
7198
7199 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
7200
7201         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
7202         Handle properly modules which are not in the moduleref table. Fixes
7203         #356938.
7204
7205 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
7206
7207         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
7208         the dynamic case which is now in managed code.
7209         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
7210
7211         * marshal.c (mono_string_to_bstr): Fix a warning.
7212         (init_com_provider_ms): Ditto.
7213
7214         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
7215
7216         * exception.c (mono_get_exception_out_of_memory): New helper function.
7217
7218 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
7219
7220         * marshal.c: Add support for BSTR marshalling
7221         using other COM systems.
7222
7223         Code is contributed under MIT/X11 license.
7224
7225 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
7226
7227         * object.c (mono_runtime_invoke_array): reverted previous
7228         commit as it breaks the build.
7229
7230 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
7231
7232         * object.c (mono_runtime_invoke_array): Verify arguments for
7233         invalid types. Fixes #348522.
7234
7235 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
7236
7237         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
7238         non-final virtual calls using call. 
7239
7240         * verify.c (do_invoke): fixed some TODOs.
7241
7242         * verify.c (push_arg): set has_this_store for "ldarga 0".
7243
7244 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
7245
7246         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
7247         which belong to an inflated class. Fixes #356531.
7248
7249 2008-01-26  Robert Jordan  <robertj@gmx.net>
7250
7251         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
7252         which resort to FindFirstFile when a certain error condition
7253         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
7254         Code is contributed under MIT/X11 license.
7255
7256 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
7257
7258         * marshal.c (emit_marshal_string): Fix out string marshalling
7259         to use specified encoding. Fixes #323900.
7260
7261         Code is contributed under MIT/X11 license.
7262
7263 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
7264
7265         * class.c (mono_class_inflate_generic_method_full): Don't modify
7266         iresult->context after cache check.
7267
7268 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
7269
7270         * class.c (mono_class_inflate_generic_method_full): Change the
7271         struct assignments to memcpy for better visibility and add some comments.
7272
7273 2008-01-23  Dick Porter  <dick@ximian.com>
7274
7275         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
7276         procedure, and make it work on windows.
7277
7278 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
7279
7280         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
7281         a MonoReflectionTypeBuilder since it is always of that type.
7282
7283         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
7284
7285         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
7286
7287         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
7288         
7289         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
7290
7291         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
7292
7293         * reflection.c (mono_reflection_create_runtime_class): Remove already created
7294         instantiations from the type cache.
7295
7296 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7297
7298         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
7299
7300         * verify.c (do_unbox_value): push a controled mutability managed pointer.
7301
7302 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7303
7304         * verify.c (do_ldstr): added, verifies if the #US token is valid.
7305
7306         * verify.c (mono_method_verify): removed old TODO
7307
7308 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7309
7310         * verify.c (do_newobj): add visibility check.
7311
7312 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7313
7314         * verify.c (do_load_function_ptr): add visibility check.
7315
7316 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
7317         *class.c:
7318         mono_generic_class_get_class: hook profiler events.
7319         mono_field_get_offset: added to support heap-shot in the new profiler.
7320         *class.h: exported mono_field_get_offset.
7321         * reflection.c:
7322         mono_reflection_setup_internal_class: hook profiler events.
7323
7324 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
7325
7326         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
7327         argument here too and use it to avoid checking for pending exceptions if 
7328         possible.
7329
7330 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
7331
7332         * assembly.c (build_assembly_name): add arg for passing the assembly
7333         flags. Do not consider a PublicKey with value "null" valid.
7334         (mono_assembly_name_parse_full): added boolean argument that will be
7335         set if the assembly name contains a PublicKeyToken spec. Added support
7336         for the Retargetable spec for which only Yes or No are allowed as valid
7337         value. Consider assembly name invalid if Retargetable spec is set, but
7338         either version, culture or public key (token) are not specified.
7339         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
7340         with implementation in assembly.c.
7341         * icall.c (fill_reflection_assembly_name): also copy assembly flags
7342         from MonoAssemblyName.
7343         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
7344         introduced argument for mono_assembly_name_parse_full to know if the
7345         assembly name has a PublicKeyToken spec, and if it has instruct
7346         fill_reflection_assembly_name to use default value for keyToken (if
7347         PublicKeyToken is null).
7348
7349 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7350
7351         * verify.c (mono_method_verify): fixed ovf ops with
7352         float values. They are unverifiable now.
7353
7354 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7355
7356         * class.c (set_failure_from_loader_error): add BadImageException to the
7357         list of exceptions that can cause a type to fail to load.
7358
7359         * class.c (mono_class_get_exception_for_failure): same.
7360
7361 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
7362
7363         * verify.c (in_any_exception_block): added, check if offset
7364         is part of any exception handling clause.
7365
7366         * verify.c (get_stack_type): added VAR and MVAR types.
7367
7368         * verify.c (do_stobj): better error messages.
7369
7370         * verify.c (do_cpobj): added, check cpobj.
7371
7372         * verify.c (do_initobj): added, check initobj.
7373
7374         * verify.c (do_sizeof): added, check sizeof.
7375
7376         * verify.c (do_localloc): added, check localloc.
7377
7378         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
7379
7380 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
7381
7382         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
7383         save_lmf/restore_lmf opcodes.
7384
7385         * threads.c (mono_threads_install_notify_pending_exc): New function to
7386         install a callback notifying the JIT there is a pending exception on a thread.
7387         (mono_thread_request_interruption): Call the new callback.
7388         (mono_thread_get_and_clear_pending_exception): New function to return the
7389         exception pending on a thread.
7390
7391         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
7392         to turn off checking for pending exceptions.
7393         (mono_marshal_get_native_wrapper): Ditto.
7394
7395 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7396
7397         * threads-types.h: Get rid of the unnecessary extern declarations.
7398
7399 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
7400
7401         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
7402         return field from parent class if not private.
7403         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
7404         returns fields from parent class if they are not private.
7405         (method_nonpublic): added function to determine if a given method
7406         should be considered non-public. Returns false for private methods
7407         on parent class, and internal methods from parent on the 1.0 profile.
7408         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
7409         use method_nonpublic function to determine whether method should be
7410         returned.
7411         (property_accessor_public): use newly introduced method_nonpublic
7412         function to determine whether accessor is non-public. 
7413         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
7414         event from parent class if not private. Only return static event if
7415         Static flag is set, and only return static event from parent class if
7416         FlattenHierarchy flag is set.
7417         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
7418         include non-private events from parent class.
7419
7420 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7421
7422         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
7423         warning.
7424
7425 2008-01-16  Wade Berrier <wberrier@novell.com>
7426
7427         * security.c: Add assembly.h header to appease some warnings
7428
7429 2008-01-16  Dick Porter  <dick@ximian.com>
7430
7431         * process.c (process_module_string_read): Remove trailing null
7432         when saving string.
7433
7434 2008-01-16  Mark Probst  <mark.probst@gmail.com>
7435
7436         * class-internals.h: A new data structure describing the layout of
7437         a runtime generic context (MonoRuntimeGenericContextTemplate).
7438
7439         * metadata-internals.h: Added a hash table to MonoDomain that maps
7440         from open generic classes to their runtime generic context
7441         templates.
7442
7443         * object.c: Building of the runtime generic context, including
7444         proper handling of generic type arguments of superclasses.
7445         Building of the runtime generic context according to the template.
7446
7447 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
7448
7449         * class.c (mono_class_setup_fields): Set field.count for generic instances.
7450         Fixes #350856.
7451
7452         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
7453         mono_portability_find_file (). Fixes #325466.
7454         (mono_image_get_public_key): Fix a warning.
7455
7456 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
7457
7458         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
7459         Fixes #353550.
7460         (mono_class_from_name_case): Ditto.
7461
7462 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
7463
7464         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
7465           common storage for the tables used in the System/NumberFormatter class.
7466
7467 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
7468
7469         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
7470
7471 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
7472
7473         * verify.c (get_boxable_mono_type): check if the token is valid.
7474
7475         * verify.c (set_stack_value): changed to add an error if an
7476         invalid type is set on stack. Changed all callers due to signature change.
7477
7478         * verify.c (do_stobj): implement stobj validation.
7479
7480 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
7481
7482         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
7483         set container->is_method, it was set earlier.
7484
7485         * metadata.c (type_in_image): Handle MVARs which belong to not finished
7486         generic methods.
7487
7488         * reflection.c (mono_reflection_initialize_generic_parameter): Set
7489         is_method of the generic container to TRUE for methods.
7490
7491 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7492
7493         * metadata.c (type_in_image): Handle type parameters properly.
7494
7495         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
7496         memory ownership of this structure.
7497
7498 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
7499
7500         * verify.c (get_boxable_mono_type): make typedref types been just
7501         unverifiable. check for void type.
7502
7503         * verify.c (do_unbox_any): added, verify opcode unbox.any.
7504
7505         * verify.c (do_load_function_ptr): accept method spec tokens.
7506
7507 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7508
7509         * marshal.c (mono_class_native_size): Always set *align even if this is called
7510         recursively.
7511
7512 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
7513
7514         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
7515         out-of-date.
7516
7517 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
7518
7519         * verify.c: removed some old unused tables. A huge bunch of small fixes
7520         to things found while testing the verifier with mono basic.
7521
7522         * verify.c (dump_stack_value): dump null literal flag to.
7523
7524         * verify.c (verify_type_compatibility_full): fix comparison
7525         for types that have a generic super type.
7526
7527         * verify.c (verify_stack_type_compatibility): fix compatibility
7528         between null literals and reference types. fix compatibility between
7529         boxed valuetypes and object. fix corner case test for enums.
7530
7531         * verify.c (do_cmp_op): proper verification of cgt.un in case
7532         of reference types.
7533
7534         * verify.c (do_invoke_method): fix error message.
7535
7536         * verify.c (do_store_indirect
7537
7538         * verify.c (check_is_valid_type_for_field_ops): proper verification
7539         of managed pointers to valuetypes and boxed valuetypes. proper verification
7540         of null literals.
7541
7542         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
7543         allow token to be a reference type.
7544
7545         * verify.c (do_cast): proper handling of boxes valuetypes.
7546
7547         * verify.c (do_stelem): proper handling of storing a boxed valuetype
7548         in object[].
7549
7550         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
7551         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
7552         fixed the decoding of unbox_any
7553
7554 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
7555
7556         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
7557
7558 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
7559
7560         * verify.c (do_newobj): do delegate verification.
7561
7562         * verify.c (verify_delegate_compatibility): perform delegate
7563         verification.
7564
7565         * verify.c (verify_ldftn_delegate): perform tests related to
7566         ldftn delegates.
7567
7568         * verify.c (mono_delegate_signature_equal): perform the
7569         slightly diferent signature comparison required by delegates.
7570
7571         * metadata.c (mono_metadata_type_equal_full): added and exported
7572         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
7573         allows signature only comparison.
7574
7575         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
7576         as MONO_INTERNAL.
7577
7578 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
7579
7580         * verify.c: added a bunch of stack_slot_* functions to
7581         make access to stack slot type easier. This is required to
7582         allow optional flags, like null literal, boxed value and
7583         this pointer.
7584         All access paths to IlStackDesc::stype have been changed 
7585         to use these new funcions.
7586         Removed a bunch of unused functions and cleared all warnings.
7587         This patch introduces the usage of the this pointer and 
7588         boxed value flags.
7589
7590 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
7591
7592         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
7593
7594 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
7595
7596         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
7597         match managed version.
7598
7599         * appdomain.c: Bump corlib version.
7600         
7601         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
7602         argument.
7603
7604 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
7605
7606         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
7607         Set public key token to zero-length byte array if assembly is not
7608         strongnamed.
7609
7610 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7611
7612         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
7613         writing a vtype array elem.
7614
7615 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7616
7617         * assembly.c (build_assembly_name): return FALSE if length of token is
7618         not 16 (if not "null").
7619         (mono_assembly_name_parse_full): return FALSE if value of version,
7620         culture, token or key is 0.
7621         * icall.c (fill_reflection_assembly_name): add boolean arguments to
7622         specify whether public key and public key token must be set to default
7623         value (zero-length byte array) if not available. Set versioncompat to
7624         SameMachine. If public key is available or the default is set, then
7625         set PublicKey flag.
7626         (ves_icall_System_Reflection_Assembly_FillName): if no public key
7627         is available, use empty byte array as default value. On the 2.0
7628         profile, use default value for public key token if not set.
7629         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
7630         profile, use default value for public key if not set. On the 2.0
7631         profile, use default value for public key token if not set.
7632         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
7633         default values for public key and public key token.
7634
7635 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7636
7637         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
7638         field to keep it in synch with the managed object.
7639
7640         * marshal.c (emit_marshal_object): Add support for byref marshalling of
7641         delegates. Fixes #351520.
7642
7643         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
7644         contains defined memory.
7645         
7646         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
7647
7648         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
7649         
7650         * sgen-gc.c (check_consistency): New helper function to do a consistency check
7651         of the GC data structures.
7652
7653         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
7654
7655         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
7656         
7657         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
7658         barrier.
7659         (mono_array_clone_in_domain): Ditto.
7660         (mono_array_clone_in_domain): Ditto.
7661
7662         * threads.c (start_wrapper): Register the thread start argument as a GC root.
7663         (cache_culture): Use a write barrier.
7664
7665         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
7666         (ves_icall_get_property_info): Ditto.
7667
7668         * object.h (MONO_STRUCT_SETREF): New macro.
7669
7670         * class-internals.h (MonoStats): Add some GC statistics.
7671
7672         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
7673
7674 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
7675
7676         * exception.c (mono_exception_from_name_two_strings):
7677         Break from loop after method is found.
7678
7679 2008-01-04  Dick Porter  <dick@ximian.com>
7680
7681         * process.c (process_module_string_read): Rename variable to
7682         reflect correct usage, after fixing bug 345972.
7683
7684 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
7685
7686         * verify.c (mono_type_create_fnptr_from_mono_method): 
7687         created a MonoType function pointer instance to be used during
7688         verification. The verifier releases this memory at end.
7689
7690         * verify.c (mono_method_is_constructor): extracted repeated
7691         checks for constructor into a single class.
7692
7693         * verify.c (do_push_field): use new extracted method
7694         for constructor check.
7695
7696         * verify.c (do_newobj): same.
7697
7698         * verify.c (do_ldftn): renamed to do_load_function_ptr
7699         and make it verify ldvirtftn too.
7700
7701         * verify.c (mono_method_verify: proper verification
7702         of ldvirtftn. release created MonoMethod instances.
7703
7704 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
7705
7706         * verify.c (token_bounds_check): added.
7707
7708         * verify.c (do_ldftn): added.
7709
7710         * verify.c (mono_method_verify): proper verificartion of ldftn.
7711
7712 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
7713
7714         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
7715         than the table row count. It's the resposibility of the caller to
7716         make the bounds check and raise the correct error.
7717
7718         * metadata.c (mono_metadata_decode_row_col): Same.
7719
7720         * loader.c (mono_get_method_from_token): perform bounds check
7721         on token for methoddef table.
7722
7723 2007-12-29  Miguel de Icaza  <miguel@novell.com>
7724
7725         * icall.c
7726         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
7727         assert into a negative result, the managed code already coped with
7728         that.
7729
7730         Some folks on Windows reported this error. 
7731
7732 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
7733
7734         * appdomain.c: Bump corlib version.
7735         * icall.c:
7736         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
7737         CultureInfo.CreateCulture to create CultureInfo for name.
7738         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
7739         create CultureInfo for name. Fixes bug #347174.
7740
7741 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
7742
7743         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
7744         flags.
7745
7746         * verify.c (is_valid_branch_instruction): allow branching to the
7747         first instruction of the protected block.
7748
7749         * verify.c (is_valid_cmp_branch_instruction): same.
7750
7751         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
7752         avoid double initialization.
7753
7754         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
7755         detect which cases the eval stack should just be copied.
7756
7757         * verify.c (mono_method_verify): check if the eval stack
7758         is empty when entering a protected block.
7759
7760 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
7761
7762         * verify.c: added is_clause_in_range, is_clause_inside_range,
7763         is_clause_nested and verify_clause_relationship. They perform
7764         the verifications stated in P1 12.4.2.7.
7765
7766         * verify.c (mono_method_verify): remove some unused variables,
7767         add the new exception clause checks, add instruction border
7768         checks for protected block start/end, improved some error 
7769         messages and fixed a bug in the way invalid instruction access
7770         is detected.
7771
7772 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
7773
7774         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
7775         from GC 7.0 if available.
7776
7777         * object.c: Remove an unused define.
7778         
7779         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
7780
7781         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
7782
7783         * null-gc.c (mono_gc_make_descr_for_array): Implement.
7784
7785         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
7786
7787         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
7788         to take the same arguments as the other make_descr functions.
7789
7790         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
7791
7792         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
7793         directly.
7794
7795         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
7796         mini.c.
7797
7798         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
7799         call to boehm-gc.c.
7800
7801         * boehm-gc.c (mono_gc_register_root): Fix a warning.
7802
7803         * null-gc.c (mono_gc_register_root): Fix a warning.
7804
7805         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
7806
7807         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
7808         (mono_gc_base_init): Call GC_init ().
7809
7810         * null-gc.c: Define mono_gc_register_root () as a no-op.
7811
7812         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7813
7814 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
7815
7816         * verify.c: add prototype for merge_stacks at top
7817
7818         * verify.c (do_switch): added.
7819
7820         * verify.c (merge_stacks): on some cases the stack merging
7821         was not happening properly. Unequal stack sizes at merge
7822         points should be invalid.
7823
7824         * verify.c (mono_method_verify): added more debug info on stack state.
7825         verify switch properly.
7826
7827 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
7828
7829         * method-builder.h: New file, moved the mono_mb_ declarations here from 
7830         marshal.h.
7831
7832         * boehm-gc.c marshal.c: Include method-builder.h.
7833
7834         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
7835
7836         * marshal.c: Remove some code which is now in method-builder.c.
7837
7838 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
7839
7840         * method-builder.c: New file, extraction of the method builder functionality 
7841         from marshal.c.
7842
7843         * marshal.c: Move the mb functions into method-builder.c.
7844
7845         * marshal.h marshal.c: Export some mono_mb_... functions.
7846
7847         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
7848
7849         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
7850         the caller.
7851
7852         * class.c (mono_class_get_full): Check the token type in the dynamic case.
7853
7854         * loader.c (mono_field_from_token): Ditto.      
7855
7856         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
7857         type as well.
7858         
7859         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
7860         Fixes #342565.
7861
7862         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
7863         a helper function for setting it.
7864
7865         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
7866
7867         
7868         * assembly.c: Significally simplify code now that referenced assemblies are 
7869         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
7870
7871         * threads.h: Don't include  the internal threads-types.h header file. Fixes
7872         #349952.
7873
7874 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
7875
7876         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
7877         instructions that were target of branches or are at protected block boundaries.
7878
7879         * verify.c (in_same_block): handle filter clauses.
7880
7881         * verify.c (is_valid_branch_instruction): added. checks the target of
7882         instructions br or brtrue/false.
7883
7884         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
7885         binary branch instructions such as beq and bge.
7886
7887         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
7888         and made it pin the instruction as been part of the exception block.
7889
7890         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
7891         of in_same_block.
7892
7893         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
7894         of in_same_block.
7895
7896         * verify.c (do_ret): ret from a protected block is unverifiable and
7897         not invalid.
7898
7899         * verify.c (do_static_branch): verify br and br.s instructions.
7900
7901         * verify.c (merge_stacks): add extra param to support detection
7902         of branches in the middle of instructions.
7903         
7904         * verify.c (mono_method_verify): verify branches and exception blocks
7905         that target the middle of instructions. Proper verification of br and br.s.
7906
7907 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
7908
7909         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
7910         skip_visibility field.
7911         (reflection_methodbuilder_from_dynamic_method): Ditto.
7912
7913         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
7914         registrations. Fixes #348193.
7915
7916         * threads.h: Move the internal mono_thread_get_pending_exception () to
7917         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
7918
7919 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
7920
7921         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
7922         icall registration. Fixes #348193.
7923
7924         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
7925         for corlib classes into object. Fixes #349621.
7926
7927 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
7928
7929         * icall.c (property_accessor_nonpublic): new function to determine
7930         whether an accessor allows a property to be considered non-public.
7931         Returns false for private accessor(s) from parent class, and internal
7932         accessor(s) from parent on 2.0 profile (and higher).
7933         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
7934         to determine whether property should be included if NonPublic flag
7935         is set. Fixes bug #349078.
7936
7937 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
7938
7939         * verify.c (init_stack_with_value): added.
7940
7941         * verify.c (mono_method_verify): extracted common
7942         code for exception initialization into init_stack_with_value.
7943
7944         * verify.c (mono_method_verify): initialize the exception
7945         for handler clauses as well.
7946
7947         * verify.c (mono_method_verify): fix the exception clause
7948         ordering rules, it should use handler end offset and not
7949         start offset.
7950
7951 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
7952
7953         * rawbuffer.c: remove useless warning.
7954
7955 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
7956
7957         * threads.h, threads-types.h: move functions to the correct header
7958         (fixes bug#349952).
7959
7960 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7961
7962         * verify.c (mono_method_verify): proper verification
7963         of exception handling clauses ranges and fallthru in
7964         and out of protected blocks.
7965
7966 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7967
7968         * verify.c (mono_method_verify): fixed compilation issue.
7969
7970 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
7971
7972         * verify.c (mono_method_verify): a printf slipped in, changed
7973         to use verifier debug macro.
7974
7975 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
7976
7977         * verify.c (is_correct_leave): check for filter clauses.
7978
7979         * verify.c (do_filter): added.
7980
7981         * verify.c (mono_method_verify): property verification of leave.
7982
7983
7984 2007-12-18  Mark Probst  <mark.probst@gmail.com>
7985
7986         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
7987         Win32 build, until we figure out how to do the proper thing on
7988         Win32.
7989
7990 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
7991
7992         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
7993         by the previous patch.
7994         
7995         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
7996         the assembly resolve handler for refonly assemblies.
7997
7998 2007-12-17  Mark Probst  <mark.probst@gmail.com>
7999
8000         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
8001         Make sure only one thread is allowed to commence shutdown, and
8002         don't allow new threads to be started once shutdown is in
8003         progress.
8004
8005 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
8006
8007         * verify.c (is_correct_endfilter): added.
8008
8009         * verify.c (is_unverifiable_endfilter): added.
8010
8011         * verify.c (do_endfilter): added.
8012
8013         * verify.c (mono_method_verify): property verification of endfilter
8014         and fixed a corner case or endfinally.
8015
8016 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
8017
8018         * verify.h: new flags to support fail fast of unverifiable code and
8019         do non-strict verification. Non-strict verification is required to
8020         have MS runtime compatibility. There are a huge amount of unverifiable
8021         code that it accepts as verifiable. The strict mode verifies the code
8022         as the specs says.
8023         Non-strict mode will be required in cases where code needs to be
8024         accepted as verifiable but fails under strict mode.
8025
8026         * pedump.c: added support to fail fast and non-strict verification.
8027
8028         * verify.c: added support for both fail fast and non-strict verification.
8029
8030 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
8031
8032         * verify.c (is_correct_endfinally): added.
8033
8034         * verify.c (mono_method_verify): property verification of endfinally.
8035
8036 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
8037
8038         * verify.c (in_any_block): check for filter clauses.
8039
8040         * verify.c (is_correct_rethrow): added.
8041
8042         * verify.c (mono_method_verify): property verification of rethrow.
8043
8044         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
8045
8046 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
8047
8048         * verify.c (do_throw): added.
8049
8050         * verify.c (mono_method_verify): property verification of throw
8051
8052 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
8053
8054         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
8055         assemblies. Fixes #346425.
8056
8057 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
8058
8059         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
8060         FieldBuilders.
8061
8062         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
8063
8064         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
8065         prevent asserts when this is called with a token which might not be valid.
8066
8067         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
8068         lookup_dynamic_token_class with valid_token == FALSE.
8069
8070         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
8071
8072         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
8073
8074         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
8075         
8076 2007-12-10  Mark Probst  <mark.probst@gmail.com>
8077
8078         * gc.c: Don't delay threadpool thread finalization unless Mono is
8079         shutting down.
8080
8081 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8082
8083         * threads.c: turn an assert into a non-fatal warning.
8084
8085 2007-12-09  Robert Jordan  <robertj@gmx.net>
8086
8087         * icall.c (GetVirtualMethod): Add missing argument validation.
8088
8089 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
8090
8091         * verify.c (do_cast): added.
8092
8093         * verify.c (mono_method_verify): property verification of castclass and isinst.
8094
8095
8096 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
8097
8098         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
8099
8100         * verify.c (do_stelem): added.
8101
8102         * verify.c (mono_method_verify): property verification of stelem.X.
8103
8104 2007-12-07  Mark Probst  <mark.probst@gmail.com>
8105
8106         * class.c, class-internals.h: Introduce an environment variable
8107         (MONO_GENERIC_SHARING) through which the extent of generic code
8108         sharing can be controlled (share all classes, share only corlib
8109         classes, or share nothing).
8110
8111         * object.c: Only create runtime generic context for classes for
8112         which sharing is enabled.
8113
8114 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
8115
8116         * verify.c (do_ldelem): refactor it to work with ldelem.any.
8117
8118         * verify.c (mono_method_verify): property verification of ldelem.any.
8119
8120 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
8121
8122         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
8123         added ldelem.X opcodes.
8124
8125         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
8126
8127         * verify.c: proper verification of ldelem.X 
8128
8129 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
8130
8131         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
8132
8133 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
8134
8135         * verify.c (mono_method_verify): null literal requires special handling,
8136         the value pushed on stack need to be flagged as so.
8137
8138         * verify.c (do_ldelema): Verify ldelema properly.
8139
8140 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
8141
8142         * verify.c: Verify ldlen properly.
8143
8144 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
8145
8146         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
8147         to the target object's type. Fixes #346160.
8148
8149 2007-12-05  Dick Porter  <dick@ximian.com>
8150
8151         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
8152         Solaris needs the same workaround as BSD-derived systems.  Fixes
8153         bug 323524, patch by Burkhard Linke
8154         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
8155
8156 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
8157
8158         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
8159         handle to use when error dialog is shown; otherwise, update mask
8160         to show no error dialog when an error occurs.
8161
8162 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
8163
8164         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
8165
8166         * class.c (mono_class_get_field_default_value): New helper function to initialize
8167         field->def_type and field->data.
8168
8169 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
8170
8171         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
8172         the general one.
8173
8174         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
8175
8176         * marshal.c: Avoid depending on delegate->method_info being set.
8177
8178         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
8179         
8180         * object.c (mono_delegate_ctor): Set delegate->method.
8181
8182         * object-internals.h (struct _MonoDelegate): Add 'method' field.
8183
8184         * appdomain.c: Bump corlib version.
8185
8186 2007-11-27  Raja R Harinath  <harinath@gmail.com>
8187
8188         * metadata.c (mono_generic_inst_equal_full): Short-circuit
8189         equality check if we're comparing canonicalized MonoGenericInsts.
8190
8191 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
8192
8193         * class.c (generic_array_methods): Call mono_class_setup_methods () before
8194         accessing class->methods.
8195
8196 2007-11-22  Dick Porter  <dick@ximian.com>
8197
8198         * threads.c: Ensure that the synch_cs is set before trying to use
8199         it.
8200
8201 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
8202
8203         * profiler.c: r89126 broke the statistial profiler, unbreak.
8204
8205 2007-11-22  Martin Baulig  <martin@ximian.com>
8206
8207         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
8208
8209         * mono-debug.c
8210         (mono_debug_debugger_version): Bump to 3.
8211         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
8212         -> mono_debugger_class_initialized().
8213
8214         * mono-debug-debugger.c
8215         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
8216
8217         * class.c
8218         (mono_debugger_start_class_init_func): Removed.
8219         (mono_debugger_class_loaded_methods_func): Added.
8220         (mono_class_setup_methods): Call it here.
8221
8222 2007-11-22  Martin Baulig  <martin@ximian.com>
8223
8224         * mono-debug.c
8225         (mono_debug_add_delegate_trampoline): New public method.
8226         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
8227
8228         * mono-debug.h
8229         (MonoSymbolTable): Added `global_data_table'.
8230         (MonoDebuggerTypeKind): Removed.
8231
8232 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
8233
8234         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
8235         these methods.
8236
8237         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8238         
8239 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8240
8241         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
8242
8243 2007-11-20  Martin Baulig  <martin@ximian.com>
8244
8245         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
8246
8247         * mono-debug-debugger.c
8248         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
8249         (mono_debugger_remove_breakpoint): Likewise.
8250         (mono_debugger_check_breakpoints): Likewise.
8251         (mono_debugger_register_class_init_callback): New public method.
8252         (mono_debugger_remove_class_init_callback): Likewise.
8253         (mono_debugger_add_type): Likewise.
8254
8255         * mono-debug-debugger.h
8256         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
8257
8258 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
8259
8260         * class.c: more interface implementations needed for the
8261         array enumerator (fixes bug #341112).
8262
8263 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
8264
8265         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
8266         fix ParamName of ArgumentNullExceptions.
8267
8268 2007-11-17  Miguel de Icaza  <miguel@novell.com>
8269
8270         * reflection.c (mono_reflection_encode_sighelper): Generate the
8271         modopts and modreqs.   I have a useless test that crashes monodis,
8272         but that shows the code working.
8273
8274 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
8275
8276         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
8277         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
8278
8279 2007-11-15  Dick Porter  <dick@ximian.com>
8280
8281         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
8282         When joining a thread, it's the thread that's calling Join that
8283         gets WaitSleepJoin state not the target.  Fixes the standalone
8284         test case in bug 334740, and hopefully the whole bug too.
8285
8286 2007-11-15  Dick Porter  <dick@ximian.com>
8287
8288         * process.c: Read file version info from the files pointed at by
8289         process modules, not the current process.  Fixes bug 315969.
8290
8291         Use windows typedef names in some places to fix warnings on the
8292         windows build.
8293
8294 2007-11-15  Mark Probst  <mark.probst@gmail.com>
8295
8296         * image.c, metadata-internals.h: Added a generic_class_cache hash
8297         to MonoImage for looking up generic classes when sharing generics.
8298
8299 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8300
8301         * sgen-gc.c: warning cleanups.
8302
8303 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
8304
8305         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
8306         inherited properties.
8307
8308 2007-11-14  Mark Probst  <mark.probst@gmail.com>
8309
8310         * object.c, class-internals.h: Added more information to the
8311         runtime generic context.
8312
8313 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
8314
8315         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
8316         instead of just the target method. Generalize the abstract method handling to
8317         handle any non-static method.
8318
8319         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
8320         mono_marshal_get_delegate_invoke () signature change.
8321
8322 2007-11-13  Mark Probst  <mark.probst@gmail.com>
8323
8324         * class.c, class-internals.h: Made
8325         mono_type_get_basic_type_from_generic () public.  Fixed member
8326         access check for shared generics.
8327
8328         * loader.c: Don't insert field into field cache if it's part of a
8329         non-inflated generic class.
8330
8331         * domain.c, domain-internals.h: The generic sharing context is now
8332         part of the jit info data structure.  Added two accessor
8333         functions.
8334
8335 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
8336
8337         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
8338         the array Get/Set/Address methods, since the JIT inlines them.
8339
8340         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
8341
8342         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
8343         (mono_image_init): Initialize runtime_invoke_direct_cache.      
8344
8345         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
8346         mono_marshal_get_delegate_invoke signature change.
8347
8348         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
8349         an additional argument. Add support for invoking abstract methods.
8350
8351         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
8352
8353         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
8354
8355 2007-11-09  Mark Probst  <mark.probst@gmail.com>
8356
8357         * class.c: Do field layout for open generic classes as well.
8358
8359 2007-11-09  Mark Probst  <mark.probst@gmail.com>
8360
8361         * gc.c, gc-internal.h: Don't finalize threadpool threads with
8362         other objects, because the threadpool is still around.  Put them
8363         in a list instead and after finalizing all other objects in the
8364         root domain shut down the thread pool and then finalize the
8365         threads.  Fixes bug #337383.
8366
8367         * threads.c, thread-types.h: New mono_thread_create_internal()
8368         function for marking a thread with the threadpool flag before it
8369         started.  Set synch_cs to NULL after freeing it.
8370
8371         * threadpool.c: Mark threadpool threads before they start.
8372
8373 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8374
8375         * reflection.h, reflection.c: don't export random functions
8376         and lazy load dbnull and missing objects.
8377
8378 2007-11-07  Jonathan Chambers <joncham@gmail.com>
8379
8380         * class.c: Initialize COM types if COM interfaces
8381         are present (not just COM classes).
8382         
8383         Code is contributed under MIT/X11 license.
8384
8385 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8386         * reflection.c:
8387         create_dynamic_mono_image: hook module profiler events (dynamic case).
8388         mono_image_basic_init: hook assembly profiler events (dynamic case).
8389
8390 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8391         * profiler.c:
8392         simple_appdomain_unload: completely terminate the profiler
8393         instead of only processing the statistical samples.
8394         simple_shutdown: make sure this is really called exactly once,
8395         even in multithreaded applications, and always listen to
8396         appdomain events.
8397         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
8398         here, the "[un]load" functions will do it.
8399         Fixes bugs #333791 and #325261.
8400
8401 2007-11-07  Geoff Norton  <gnorton@novell.com>
8402
8403         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
8404         rather than depend on __APPLE__.
8405
8406 2007-11-07  Mark Probst  <mark.probst@gmail.com>
8407
8408         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
8409
8410 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
8411
8412         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
8413         UTF16 MonoString. Fix the crash from bug #335488
8414
8415 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
8416
8417         * marshal.c: Correct (for non-Win32 OS) length != size in 
8418         mono_string_from_bstr. Fix #339530.
8419
8420 2007-11-06  Geoff Norton  <gnorton@novell.com>
8421
8422         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
8423         to succeed
8424
8425 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
8426
8427         * process.c: Added run-time GetProcessId API detection for Windows.
8428
8429 2007-11-04  Miguel de Icaza  <miguel@novell.com>
8430
8431         * reflection.c  (mono_param_get_objects): If a parameter has the
8432         attribute [System.Runtime.InteropServices.Optional] we should
8433         set the DefaultValue of the ParameterInfo to be
8434         System.Reflection.Missing instead of DBNull.
8435
8436         See bug #339013.
8437
8438         (mono_get_reflection_missing_object): New method,
8439         returns the System.Reflection.Missing.Value singleton instance.
8440
8441 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
8442
8443         * culture-info-table.h : regenerated.
8444
8445 2007-11-02  Jonathan Chambers <joncham@gmail.com>
8446
8447         * icall.c: Use GetEnvironmentStrings on windows
8448         so we are using the same environment block as 
8449         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
8450         #333740.
8451         
8452         Code is contributed under MIT/X11 license.
8453
8454 2007-10-31  Martin Baulig  <martin@ximian.com>
8455
8456         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
8457
8458         * mono-debug-debugger.h
8459         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
8460
8461 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
8462
8463         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
8464         classes.
8465
8466 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
8467
8468         * culture-info-table.h : regenerated.
8469
8470 2007-10-30  Robert Jordan  <robertj@gmx.net>
8471
8472         * icall-def.h, icall.c:
8473         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
8474
8475         Code is contributed under MIT/X11 license.
8476
8477 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
8478
8479         * class.c (mono_class_setup_vtable): Find the inflated methods in the
8480         inflated class instead of inflating them again.
8481         
8482         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
8483         dynamic case.
8484
8485         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
8486         Call setup_supertypes () after klass->parent is set.
8487         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
8488
8489         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
8490         for inflated instances of not yet created dynamic generic classes.
8491         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
8492         times from inflated_method.
8493         (methodbuilder_to_mono_method): Ditto.
8494
8495 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8496
8497         * gc.c: code cleanup and removed old untested option of not creating the
8498         finalizer thread.
8499
8500 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
8501
8502         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
8503         creating a jump trampoline for dynamic methods.
8504
8505 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
8506
8507         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
8508         generic TypeBuilders when called from another method of the same type (bug #335131).
8509
8510
8511 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
8512
8513         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
8514         doesn't seem to work perfectly.
8515         
8516         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
8517         called multiple times.
8518         (methodbuilder_to_mono_method): Ditto.
8519         (resolve_object): Inflate FieldBuilder's.
8520
8521 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8522
8523         * string-icalls.c, string-icalls.h, appdomain.c: patch from
8524         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
8525         RemoveEmptyEntries in the string.Split implementation (bug #322375).
8526
8527 2007-10-26  Dick Porter  <dick@ximian.com>
8528
8529         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
8530         Thread initialisation changes
8531
8532 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
8533
8534         * verify.c: fix compatibility check between arrays and System.Array
8535
8536 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
8537
8538         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
8539         too. Fixes #336999.
8540
8541 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
8542
8543         * object.c (mono_value_box): Use typed allocation here.
8544
8545 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
8546
8547         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
8548         trampoline instead of compiling the method right away.
8549
8550         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
8551
8552 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
8553
8554         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
8555         related fields for dynamic classes. Fixes #334493.
8556
8557 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
8558
8559         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
8560         
8561         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
8562
8563         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
8564         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
8565
8566         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
8567
8568         * reflection.c (create_generic_typespec): Initialize klass->generic_container
8569         if needed.
8570         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
8571
8572 2007-10-18  Jonathan Chambers <joncham@gmail.com>
8573
8574         * marshal.c: Use correct key when removing item
8575         from ccw_hash.
8576         
8577         Code is contributed under MIT/X11 license.
8578
8579 2007-10-17  William Holmes  <billholmes54@gmail.com>
8580
8581         *marshal.c: Adding a case to marshal booleans to U1
8582
8583         Code is contributed under MIT/X11 license.
8584
8585 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
8586
8587         * class.c (mono_class_from_name): Search the modules compromising dynamic
8588         assemblies. Fixes #331601.
8589
8590 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
8591
8592         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
8593         exception if the type name contains an assembly component. Fixes #334203.
8594
8595         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
8596         modules inside dynamic assemblies. Fixes #334200.
8597         
8598         * reflection.c: Set image->public_key and image->public_key_length;
8599
8600         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
8601         fields.
8602
8603         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
8604         
8605 2007-10-16  Mark Probst  <mark.probst@gmail.com>
8606
8607         * metadata.c: Implemented correct comparing of generic classes.
8608         An inflated generic class can be equal to a non-inflated one if it
8609         is inflated with generic type variables as type arguments.  Fixes
8610         bug #333798.
8611
8612 2007-10-15  Dick Porter  <dick@ximian.com>
8613
8614         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
8615         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
8616         81646.
8617
8618         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
8619         instead of a monitor lock.  This means that monitor_try_enter and
8620         co can set the thread state safely.
8621         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
8622         thread_interrupt_requested, so interrupt actually works.
8623
8624         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
8625         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
8626         state accessor function
8627
8628 2007-10-15  Martin Baulig  <martin@ximian.com>
8629
8630         * mono-debug.h
8631         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
8632         the debugger with the current runtime.
8633
8634 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
8635
8636         * object.c, object-internals.h: added the ability to set a single
8637         trampoline for all the slots in a vtable.
8638
8639 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8640
8641         * marshal.c: deal with a possible race condition during multicast
8642         delegate invocation.
8643
8644 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8645
8646         * class.c: ensure value type methods don't have the synchronized
8647         flag set.
8648
8649 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8650
8651         * string-icalls.c, string-icalls.h: reverted unapproved patch that
8652         breaks the build.
8653
8654 2007-10-11  Joel Reed  <joelwreed@comcast.com>
8655
8656         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
8657         to take an options parameter so that empty entries can be removed during
8658         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
8659
8660 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8661
8662         * marshal.c: make sure we don't store the signature from a dynamic
8663         method into the runtime invoke cache (bug #327189).
8664
8665 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8666
8667         * marshal.c: make sure the wrapper methods are properly initialized.
8668
8669 2007-10-11  Mark Probst  <mark.probst@gmail.com>
8670
8671         * metadata.c, metadata-internals.h: Generalized
8672         mono_type_stack_size() to mono_type_stack_size_internal() which
8673         takes an additional argument specifying whether it allows open
8674         types.
8675
8676 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8677
8678         * verify.c (do_invoke_method): handle typedbyref params
8679         correctly and check for unverifiable return values.
8680
8681         * verify.c (do_newobj): fix a warning.
8682
8683 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8684
8685         * verify.c: don't tread typedbyref as allways unverifable,
8686         so uses, like (ld/st)loc.0 are valid. verify for the cases
8687         that it matters, like boxing related operations.
8688
8689 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8690
8691         * verify.c: add verification of the newobj opcode. verification
8692         of delegate instantation still missing due ldftn and virldftn not
8693         pushing the function type on stack
8694
8695 2007-10-08  Mark Probst  <mark.probst@gmail.com>
8696
8697         * class-internals.h: Runtime generic context data structure
8698         definition.
8699
8700         * object.c: Initialization of runtime generic context at runtime
8701         vtable creation time.
8702
8703 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
8704         * class.c (mono_class_create_from_typedef,
8705         mono_class_from_generic_parameter, mono_ptr_class_get,
8706         mono_fnptr_class_get, mono_bounded_array_class_get)
8707         * domain.c (mono_domain_create, mono_domain_free)
8708         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
8709         * image.c (do_mono_image_load, mono_image_close):
8710         Hooked up load-unload profiler events.
8711
8712 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8713
8714         * domain.c: track statistics about the actual amount of native code
8715         allocated.
8716
8717 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8718
8719         * class.c: the valuetype enumerators don't have the additional
8720         supertypes interfaces.
8721
8722 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8723
8724         * class.c: need more interfaces setup for the IEnumerator<T>
8725         object created for arrays (tests/ienumerator-interfaces.2.cs).
8726
8727 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
8728
8729         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
8730
8731 2007-10-05  Alp Toker  <alp@atoker.com>
8732
8733         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8734         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8735         #315863.
8736
8737 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
8738
8739         * verify.c (verify_type_compatibility_full): verification of
8740         compatibility improved, validates correctly non-strict checks between
8741         native int and I4 types different than (unsigned)int32.
8742
8743         * verify.c (do_store_indirect): added, do all verification of
8744         ldind.X opcodes. 
8745
8746         * verify.c (get_load_indirect_mono_type): renamed to
8747         get_indirect_op_mono_type, as it now returns the MonoType for 
8748         ldind.X and stind.X opcodes.
8749
8750 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
8751
8752         * reflection.c: Fix the encoding of generic type definition for
8753         TypeBuilders.
8754
8755         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
8756         mono_image_typedef_or_ref but allows to specify if typespec lookups should
8757         be made. Typespec check is done prior to typeref cache lookup.
8758
8759         * reflection.c (mono_image_typedef_or_ref): now just delegate to
8760         mono_image_typedef_or_ref_full.
8761
8762         * reflection.c (encode_generic_class): encode the generic class
8763         directly instead of calling encode_type.
8764
8765         * reflection.c (encode_type): encode the generic type definition
8766         MonoClass as a generic instantiation.
8767
8768         * reflection.c (create_typespec): cache typespec tokens in
8769         the assembly->typespec cache. Don't create typespec for a generic
8770         instance MonoClass. Create typespec for the generic type defintion.
8771
8772         * reflection.c (create_generic_typespec): encode the generic
8773         class directly instead of calling encode_type.
8774
8775         * reflection.c (mono_image_create_token): encode the generic
8776         type definition not using a typespec for MonoType instances.
8777
8778
8779 2007-10-04  Raja R Harinath  <rharinath@novell.com>
8780
8781         Fix #328812
8782         * class.c (mono_image_init_name_cache): Don't return nested
8783         'protected internal' classes.
8784         (mono_class_from_name_case): Likewise.
8785
8786 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
8787
8788         * icall-def.h, icall.c : get_bundled_machine_config() is now the
8789           common function used by both DefaultConfig in System.dll and
8790           InternalConfigurationHost in System.Configuration.dll.
8791
8792 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8793
8794         * class.c: automatically add to vectors only a few essential explicit
8795         generic interfaces. The rest of the interfaces that arrays should
8796         provide are currently implicitly added (but still not lazily, see the
8797         design in the discussion of bug#325495 for the details of what is
8798         needed for that). Additionally, implicit interfaces are assigned the
8799         same vtable slot as the explicit interfaces (as they are compatible):
8800         this enables huge memory savings since we don't need to instantiate
8801         as many memthods and as large vtables anymore. Also, Since
8802         GetEnumerator<T> returns an instance of a type that is required to
8803         support a similarly large set of interfaces as arrays, we add
8804         implicit interfaces and interface offset sharing support to those
8805         types, too. This change adds all the required interfaces so that
8806         the anonarray.cs test case in the bug report works (we don't add
8807         all the interfaces to arrays of arrays 3-level deep and more because
8808         of the memory requirements explained in the bug and since they are much
8809         less common: the lazy-loading support will enabled them to work, too).
8810
8811 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
8812
8813         * verify.c (merge_stacks): major clean up, all type compatibility
8814         checks are done by verify_type_compatibility. This fix my earlier lack
8815         of understanding of the CLR type system and merge_stacks no longer looks
8816         scary.
8817
8818         * verify.c: fixed some bad spelling.
8819
8820 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
8821
8822         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
8823         a given stack slock.
8824         
8825         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
8826         verify_type_compatibility_full. This removed a near indentical function and fixed
8827         handling of Int32 and IntPtr across all opcodes.
8828
8829 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8830
8831         * class.c: only vectors have the additional generic interfaces.
8832
8833 2007-10-01  Jonathan Chambers <joncham@gmail.com>
8834
8835         * mono-config.c: Use g_strcasecmp instead of
8836         strcasecmp like everywhere else to fix
8837         compilation with MSVC.
8838         
8839         Code is contributed under MIT/X11 license.
8840
8841 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8842
8843         * object.c, object-internals.h: refactored the IMT code to enable
8844         building a single slot at a time and lazily creating the IMT trampolines
8845         and thunks.
8846
8847 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
8848
8849         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
8850
8851         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
8852         Fixes #328501.
8853         
8854 2007-09-29  Raja R Harinath  <harinath@gmail.com>
8855
8856         * loader.c (method_from_methodspec): Rearrange to avoid
8857         un-necessary exposition.  Don't assert out if the method's
8858         declaring type is a generic type definition.
8859
8860 2007-09-28  Martin Baulig  <martin@ximian.com>
8861
8862         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
8863
8864 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
8865
8866         * class-internals.h: optimize field layout of MonoClass to
8867         requires less cachelines at runtime and save a few bytes on 64 bit
8868         systems.
8869
8870 2007-09-28  Jb Evain  <jbevain@novell.com>
8871
8872         * reflection.c: when encoding type names in custom attributes,
8873         if the type is a closed generic type, its generic arguments
8874         have to be serialized as AssemblyQualifiedName, so that when
8875         they are deserialized, it's possible to re-create them properly.
8876         Fixes #329450.
8877
8878
8879 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8880
8881         * object.c, class-internals.h: added delegate-creation counter.
8882
8883 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8884
8885         * class.c: cleanup of the code that synthetizes interfaces for
8886         arrays in 2.0: saves quit a bit of corlib mempool memory.
8887         Code to fix bug #325495 ifdeffed out for now until the issues
8888         with memory usage and O(n^2) behaviour are fixed.
8889
8890 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8891
8892         * marshal.c: when possible, do not duplicate the name of the methods
8893         in the method builder and in the generated MonoMethod.
8894
8895 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
8896         * verify.c: added support for type checking ldind_* opcodes.
8897
8898 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
8899
8900         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
8901         which is used to distinguish the fully open instantiation of a TypeBuilder
8902         with the rest. This temporary hack is required to restore the property that
8903         the fully open instantiation is the same type of the generic type definition.
8904
8905         * class-internals.h (mono_generic_class_is_generic_type_definition):
8906         new function as part of the internal API.
8907
8908         * class.c (inflate_generic_type): return NULL when the generic inst is
8909         fully open. The fully open generic type is now the same as the generic type
8910         definition for non TypeBuilder types.
8911
8912         * class.c (mono_generic_class_get_class): removed assert since it is
8913         no longer valid, gklass->cached_class can point to the generic type definition.
8914
8915         * class.c (mono_generic_class_is_generic_type_definition): new.
8916
8917         * metadata.c (mono_generic_class_hash): added is_tb_open field
8918         to the hash calculation.
8919
8920         * metadata.c (free_generic_class): if the generic class is associated
8921         with the generic type definition, its field will come from the mempool and
8922         must not be freed.
8923
8924         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
8925         new, this function identifies the corner case of a TypeBuilder fully open
8926         instantiation.
8927
8928         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
8929         for lookup. Set gclass->cached_class to be the container class in case of
8930         the fully open instantiation of non TypeBuilder types.
8931
8932         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
8933         to compare generic classes.
8934
8935         * reflection.c (method_encode_methodspec): remove assert that
8936         no longer is valid.
8937
8938         * reflection.c (mono_reflection_generic_class_initialize): add
8939         an aditional assert to ensure the proper type is used.
8940
8941 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
8942
8943         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
8944         to enjoy it.
8945
8946 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
8947
8948         * verify.c (push_arg): Fixed support for ldarga
8949         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
8950         MonoType used as first arg in case of instance calls.
8951
8952 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
8953
8954         * verify.c: Support for verifying VAR and MVAR types, 
8955
8956 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
8957
8958         * icall.c (ves_icall_get_property_info): Set the reflected type of the
8959         accessors correctly.
8960
8961 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
8962
8963         * threads.c: support OSX and other systems in
8964         mono_thread_get_stack_bounds (bug #328026).
8965
8966 2007-09-25  Martin Baulig  <martin@ximian.com>
8967
8968         * mono-debug.h
8969         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
8970
8971 2007-09-24  Martin Baulig  <martin@ximian.com>
8972
8973         * mono-debug.h
8974         (MonoDebugClassEntry): Moved the definition of this struct into
8975         mono-debug.c to make it private.
8976
8977         * mono-debug.c
8978         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
8979         type table per symbol file, we don't need to store the symfile id
8980         any longer.
8981
8982 2007-09-24  Martin Baulig  <martin@ximian.com>
8983
8984         Create one type table per symbol file, since a `MonoClass *' gets
8985         invalid when its image is unloaded.
8986
8987         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
8988         (MonoDebugHandle): Added `type_table'.
8989
8990 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
8991
8992         * mempool.c, mempool.h: added mono_mempool_new_size () API
8993         to be able to specify a smaller initial size for the pool.
8994         Adjusted the code to slowly increase pool size before using
8995         the previous default size.
8996         * image.c: use a small initial size for image mempools.
8997
8998 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
8999
9000         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
9001         Fixes ##320990.
9002
9003         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
9004         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
9005
9006 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
9007
9008         * metadata.c (mono_type_create_from_typespec): Remove an invalid
9009         free. Fixes #327438.
9010
9011 2007-09-21  Raja R Harinath  <harinath@gmail.com>
9012
9013         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
9014         generic instantiations, etc.
9015         <MONO_TYPE_ARRAY>: Likewise.
9016
9017 2007-09-21  Martin Baulig  <martin@ximian.com>
9018
9019         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
9020         these structs were never defined.
9021         (MonoDebugHandle): Removed the `_priv' field, it was never used.
9022
9023 2007-09-21  Martin Baulig  <martin@ximian.com>
9024
9025         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
9026
9027 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
9028
9029         * image.c: removed the guid hash tables: we can get the same info
9030         without the additional memory usage hit (partially fixes also bug #327052).
9031
9032 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
9033
9034         * profiler.h, profiler-private.h, profiler.c: add a new profiler
9035         event to handle unloading methods. After the event is called, the
9036         corresponding MonoMethod* must be considered invalid.
9037         * loader.c (mono_free_method): call the new mono_profiler_method_free
9038         event.
9039
9040 2007-09-20  Mark Probst  <mark.probst@gmail.com>
9041
9042         * domain-internals.h: New flag in MonoJitInfo which marks shared
9043         generic methods.  New hash table (shared_generics_hash) in
9044         MonoDomain to keep track of shared generic methods.  Prototypes
9045         for functions to register and lookup shared generic methods.
9046
9047         * domain.c: Support for registering and looking up shared generic
9048         methods via a hash table (shared_generics_hash) in MonoDomain.
9049
9050         * class-internals.h: New exception to signal failure of shared
9051         compilation of a generic method.  New counters for generics
9052         sharing in MonoStats.
9053
9054 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
9055
9056         * image.c, metadata-internals.h: don't keep a file descriptor open
9057         for loaded assemblies (bug#325988).
9058
9059 2007-09-19  Raja R Harinath  <rharinath@novell.com>
9060
9061         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
9062         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
9063         use the corresponding datatypes.
9064         (type_in_image): Update to changes.
9065         (CleanForImageUserData): Simplify.
9066         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
9067         Avoid quadratic behaviour in handling the "stolen" list by
9068         separating the filter predicate out, and by prepending the stolen
9069         items rather than appending them.
9070         (steal_ginst_in_image): Likewise.
9071         (mono_metadata_clean_for_image): Update to changes.
9072
9073 2007-09-19  Martin Baulig  <martin@ximian.com>
9074
9075         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
9076
9077 2007-09-19  Martin Baulig  <martin@ximian.com>
9078
9079         * mono-debug.c (mono_debug_cleanup): Don't call
9080         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
9081
9082 2007-09-19  Raja R Harinath  <harinath@gmail.com>
9083
9084         Fix crash on 'make run-test' in mcs/errors
9085         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
9086         Avoid more potential allocations in mono_class_from_mono_type.
9087         (ginst_in_image): Update to changes.
9088         (gclass_in_image): Rearrange slightly.
9089
9090 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
9091
9092         * class.c (mono_class_init): Move the code that sets up class->methods to 
9093         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
9094
9095         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
9096         canonical instance of an inflated generic signature.
9097         (mono_type_create_from_typespec): Remove an invalid free.
9098
9099         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
9100
9101 2007-09-18  Marek Habersack  <mhabersack@novell.com>
9102
9103         * domain-internals.h: added a declaration of the
9104         mono_assembly_load_full_nosearch internal function.
9105
9106         * assembly.c (mono_assembly_load_with_partial_name): use
9107         mono_try_assembly_resolve return value properly.
9108         (mono_assembly_load_full_nosearch): copied the function body from
9109         mono_assembly_load_full, without the code to invoke assembly
9110         search hooks.
9111         (mono_assembly_load_full): calls the above new function and if the
9112         assembly is not resolved, invokes the search hooks.
9113
9114         * appdomain.c (mono_runtime_init): restore the global postload
9115         assembly search handlers.
9116
9117 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
9118
9119         * class.c (mono_class_init): Make sure class->methods and class->properties
9120         are never NULL in the generics case.
9121
9122         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
9123
9124 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
9125
9126         * metadata.c (free_generic_class): Disable some code to fix the build.
9127
9128         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
9129
9130         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
9131         from the image mempool.
9132
9133         * metadata.c (free_generic_class): Free more data from the inflated class.
9134
9135         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
9136
9137         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
9138         mempool.
9139         (mono_type_create_from_typespec): Ditto.
9140
9141         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
9142         MonoImage to the caller.
9143         (mono_init_internal): Save the opened image in a global variable.
9144         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
9145
9146         * reflection.c (resolve_object): Fix a leak.
9147
9148         * metadata.c: Fix the freeing of data in the generics caches.
9149         
9150         * metadata.c (free_generic_inst): Comment this out to fix the build.
9151         (free_generic_class): Ditto.
9152
9153         * metadata.c: Free cached generic methods, instantinations and classes when
9154         they are removed from the caches.
9155         (mono_metadata_free_type): Free the type itself.
9156
9157         * class.c: Free the result of mono_class_inflate_generic_type () in a few
9158         places.
9159
9160 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
9161
9162         * boehm-gc.c: restrict managed allocs to __thread supporting
9163         architectures.
9164
9165 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
9166
9167         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
9168         (mono_generic_class_get_class): Fix a leak.
9169
9170         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
9171         mono_metadata_free_type ().
9172         (mono_metadata_inflate_generic_inst): Fix a leak.
9173
9174 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
9175
9176         * mono-debug.c (free_header_data): Fix a leak missed earlier.
9177
9178         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
9179         mempool.
9180
9181         * mono-debug.c (mono_debug_close_image): Fix call to 
9182         g_hash_table_remove ().
9183
9184 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
9185
9186         * icall-def.h: redirect all the string ctor to the managed
9187         CreateString () methods.
9188         * string-icalls.c, string-icalls.h: removed dead code for string
9189         ctors and icalls.
9190
9191 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
9192
9193         * mono-debug.c: Fix memory leaks.
9194
9195 2007-09-14  Jonathan Chambers <joncham@gmail.com>
9196
9197         * threads-types.h: Implement mono_hazard_pointer_set and 
9198         mono_hazard_pointer_clear macros using do/while(0) to fix
9199         compilation with MSVC.
9200         
9201         Code is contributed under MIT/X11 license.
9202
9203 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
9204
9205         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
9206         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
9207
9208 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
9209
9210         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
9211         icalls.
9212
9213 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
9214
9215         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
9216         managed-code allocated as well.
9217
9218 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
9219
9220         * class.c (mono_class_is_assignable_from): Add support for generic variance.
9221
9222 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
9223
9224         * boehm-gc.c: fixed the build after the AOT changes.
9225
9226 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
9227
9228         * wrapper-types.h: Add an ALLOC wrapper type.
9229
9230         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
9231         reference managed allocator methods.
9232
9233 2007-09-12  Marek Safar  <marek.safar@gmail.com>
9234
9235         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
9236         of Type array and not MonoType, a fix suggested by Hari.
9237         
9238 2007-09-12  Jonathan Chambers <joncham@gmail.com>
9239
9240         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
9241         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
9242         
9243         Code is contributed under MIT/X11 license.
9244
9245 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
9246
9247         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
9248
9249 2007-09-12  Marek Habersack  <mhabersack@novell.com>
9250
9251         * image.c (do_mono_image_open): if assembly file fails to open and
9252         MONO_IOMAP is in effect, try to find the path in a
9253         case-insensitive way.
9254
9255         * appdomain.c (mono_runtime_init): do not install postload hooks -
9256         tests show that MS.NET doesn't use anything of that sort to
9257         trigger the AppDomain.AssemblyResolve event.
9258         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
9259         made non-static.
9260         (mono_runtime_init): init portability helpers here.
9261
9262         * assembly.c (mono_assembly_load_with_partial_name): if other   
9263         attempts fail, trigger the AppDomain.AssemblyResolve event handler
9264         to resolve the assembly.
9265
9266         * domain-internals.h: added mono_try_assembly_resolve and marked
9267         it as internal.
9268
9269 2007-09-11  Jb Evain  <jbevain@novell.com>
9270
9271         * object-internals.h (MonoReflectionDynamicMethod): add
9272         a `MonoReflectionType *owner` field. The owner is used
9273         * reflection.c:
9274         (mono_reflection_create_dynamic_method): use the owner of the dynamic
9275         method as the class declaring the dynamic method.
9276         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
9277         dynamic method to the declaring type of the methodbuilder.
9278
9279 2007-09-11  Mark Probst  <mark.probst@gmail.com>
9280
9281         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
9282         rules for calling methods via reflection.
9283
9284 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
9285
9286         * reflection.c (resolve_object): Add support for MonoGenericClass. 
9287         Inflate MonoType's.
9288
9289 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9290
9291         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
9292         provide a managed method that does fast allocations without needing
9293         a managed->unmanaged transition. Boehm GC implementation currently
9294         enabled for ptrfree objects on sane architectures.
9295
9296 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
9297
9298         * marshal.c, marshal.h: exported a couple of useful functions and
9299         added mono_mb_get_label () to easily handle backward branches.
9300
9301 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
9302
9303         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
9304
9305 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
9306
9307         * loader.c (find_method): Fixed the regression introduced while
9308         fixing bug #81466.
9309
9310 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
9311
9312         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
9313         well.
9314         
9315         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
9316         icall.c reflection.c: Pass a MonoGenericContext argument to 
9317         mono_lookup_dynamic_token ().
9318
9319         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
9320         #82744.
9321         
9322 2007-09-09  Robert Jordan  <robertj@gmx.net>
9323
9324         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
9325         for generic methods.
9326
9327         * object.c (mono_object_get_virtual_method): Handle generic methods.
9328         Fixes bug #78882.
9329
9330         Code is contributed under MIT/X11 license.
9331
9332 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
9333
9334         * image.c: fix locking in mono_image_load_file_for_image ().
9335
9336 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
9337
9338         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
9339         used only as a cache: added an icall to fill it.
9340
9341 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
9342
9343         * reflection.h: exposed mono_reflection_free_type_info
9344         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
9345         since mono_reflection_bind_generic_parameters makes a copy of it.
9346         * reflection.c (free_type_info): subinfos should be freed.
9347         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
9348         made non static.
9349         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
9350         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
9351         this fixes #82695 and #81726.
9352    
9353
9354 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
9355
9356         * process.h, process.c:  added support for user profile/info in
9357           ProcessStartInfo. For now only Windows works.
9358
9359 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9360
9361         * metadata.c: consider the generic arguments when comparing
9362         signatures (bug #82614).
9363
9364 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
9365
9366         * cil-coff.h, image.c: updated assembly loader to cope with the
9367         PE32+ 64 bit file format.
9368
9369 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
9370
9371         * assembly.c, class.c, domain.c, loader.c: remove useless
9372         inclusion of cil-coff.h.
9373
9374 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
9375
9376         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
9377         if interface is marked with CoClassAttribute. 
9378    
9379         Code is contributed under MIT/X11 license.
9380
9381 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
9382
9383         * sgen-gc.c: ensure no object from the to space is copied again or finalized
9384         if it's seen twice in major collections.
9385
9386 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
9387
9388         * sgen-gc.c: big objects are not copied to the gray area, but they
9389         need to be considered for scanning, too, if they are brought alive
9390         by an object ready for finalizations or a survived one.
9391
9392 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
9393
9394         * sgen-gc.c: properly account the number of disappearing links when
9395         they are nullified.
9396
9397 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
9398
9399         * sgen-gc.c: share the code to scan the registered roots between the
9400         different types of collections.
9401
9402 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
9403
9404         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
9405
9406 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
9407
9408         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
9409         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
9410
9411 2007-08-28  Mark Probst  <mark.probst@gmail.com>
9412
9413         * security-manager.c (mono_security_manager_get_methods):
9414         LinkDemandSecurityException now has 2 arguments instead of 3.
9415
9416 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
9417
9418         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
9419         platforms which need it.
9420
9421 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9422
9423         * sgen-gc.c: unregister thread data structures with a pthread_key_t
9424         dtor.
9425
9426 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
9427
9428         * threads.c: free the thread static data on thread exit.
9429
9430 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
9431
9432         * class.c: walk the hierarchy to find the generic definition for
9433         a class (fixes runtime part of bug #82498).
9434
9435 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
9436
9437         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
9438         ...
9439
9440         * image.c (mono_image_close): Here. Hopefully fixes #82510.
9441
9442 2007-08-24  Mark Probst  <mark.probst@gmail.com>
9443
9444         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
9445
9446 2007-08-24  Robert Jordan  <robertj@gmx.net>
9447
9448         * appdomain.c: don't perform the ':'->';' substitution on Win32.
9449
9450 2007-08-24  Jb Evain  <jbevain@novell.com>
9451
9452         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
9453         for byref types.
9454
9455 2007-08-24  Mark Probst  <mark.probst@gmail.com>
9456
9457         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
9458         #82286.
9459
9460 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
9461
9462         * assembly.c: Fix a warning.
9463         
9464 2007-08-23  Marek Habersack  <mhabersack@novell.com>
9465
9466         * appdomain.c: parse the <runtime> section looking for the probing
9467         element with the 'privatePath' attribute, which sets additional
9468         directories in which the runtime should look for assemblies.
9469
9470 2007-08-23  Robert Jordan  <robertj@gmx.net>
9471
9472         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
9473         Fixes #82499.
9474
9475 2007-08-23  Martin Baulig  <martin@ximian.com>
9476
9477         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
9478         _mono_debug_init_corlib() and remove it from the header file.
9479
9480 2007-08-23  Martin Baulig  <martin@ximian.com>
9481
9482         * mono-debug-debugger.c
9483         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
9484         don't notify the debugger about it.
9485
9486         * mono-debug-debugger.h
9487         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
9488
9489 2007-08-23  Robert Jordan  <robertj@gmx.net>
9490
9491         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
9492         Code is contributed under MIT/X11 license.
9493
9494 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9495
9496         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
9497
9498 2007-08-22  Martin Baulig  <martin@ximian.com>
9499
9500         * mono-debug.c: Store debugging info on a per-domain basis and
9501         free it on domain unload.  Add support for unloading symbol files.
9502
9503         * mono-debug.h
9504         (MonoDebugList): New typedef.
9505         (MonoSymbolTable):
9506         - add `data_tables and `type_table'.
9507         - replace 'symbol_files' and `num_symbol_files' with a
9508           `MonoDebugList *'.
9509         (mono_debug_data_table): Removed.
9510         (mono_debug_list_add): New public function.
9511         (mono_debug_list_remove): New public function.
9512         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
9513         (mono_debug_init_2_memory): Renamed into
9514         mono_debug_open_image_from_memory().
9515         (mono_debug_close_image): New public function.
9516         (mono_debug_domain_create): Likewise.
9517         (mono_debug_domain_unload): Likewise.
9518         (MONO_DEBUGGER_VERSION): Bump to 60.
9519
9520         * mono-debug-debugger.h
9521         (MonoDebuggerEvent):
9522         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
9523         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
9524         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
9525         - rename `THREAD_CREATED' and `THREAD_EXITED' into
9526           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
9527         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
9528           meaning.
9529         (mono_debugger_add_symbol_file): Removed.
9530         (mono_debugger_add_type): Removed.
9531         (mono_debugger_lookup_type): Removed.
9532         (mono_debugger_lookup_assembly): Removed.
9533
9534         * domain.c
9535         (mono_domain_create): Call mono_debug_domain_create().
9536         (mono_init_internal): Call mono_debug_init_corlib().
9537
9538         * assembly.c
9539         (mono_assembly_close): Call mono_debug_close_image().
9540
9541 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
9542
9543         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
9544         mmap call.
9545
9546 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
9547
9548         * sgen-gc.c: ensure section->pin_queue_end is initialized
9549         correctly when non pinning objects in the section have been found.
9550
9551 2007-08-22  Marek Habersack  <mhabersack@novell.com>
9552
9553         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
9554         containing a list of directories separated by ':'. MSDN docs say
9555         the directories should be separated with ';'. Part of a bugfix for
9556         bug #81446
9557
9558 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
9559
9560         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
9561         it should MonoType and not MonoClass.
9562
9563 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
9564
9565         * culture-info-table.h : regenerated.
9566
9567 2007-08-20  William Holmes  <billholmes54@gmail.com>
9568
9569         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
9570          to call ReplaceFile Kernel32 on windows or in io-layer.
9571         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
9572         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
9573          as an internal call.
9574
9575         Code is contributed under MIT/X11 license.
9576
9577 2007-08-20  Jb Evain  <jbevain@novell.com>
9578
9579         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
9580         and MONO_EXCEPTION_FIELD_ACCESS.
9581
9582         * debug-helpers.[c|h]: new mono_field_full_name function.
9583
9584 2007-08-20  Mark Probst  <mark.probst@gmail.com>
9585
9586         * class.c: Removed class_security_level() and moved it to
9587         security-core-clr.c.
9588
9589         * security-core-clr.c, security-core-clr.h: class_security_level()
9590         is now public and renamed to mono_security_core_clr_class_level().
9591         It also looks for security attributes in the classes a class is
9592         nested in.
9593
9594 2007-08-20  Mark Probst  <mark.probst@gmail.com>
9595
9596         * security-core-clr.c, security-core-clr.h: CoreCLR security
9597         utility functions.
9598
9599         * Makefile.am: Added security-core-clr.[ch].
9600
9601         * security-manager.c, security-manager.h: Functions and enum for
9602         setting and getting the security mode.
9603
9604         * class.c: CoreCLR security checks.
9605
9606 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
9607
9608         * icall-def.h, process.c, process.h: implemented icall to get
9609         user/system processor times.
9610
9611 2007-08-17  Mark Probst  <mark.probst@gmail.com>
9612
9613         * domain.c, threads.c, class-internals.h, domain-internals.h: New
9614         reader-lock-free jit_info_table.
9615
9616 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
9617
9618         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
9619
9620         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
9621
9622         * object-internals.h (MonoException): Add missing _data member.
9623
9624 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
9625
9626         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
9627         checking that only methods with matching qname or fqname are picked
9628         from implemented interfaces.
9629
9630 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9631
9632         * verify.c (do_newarr):added, do type verification of
9633         newarr ops, push the right value on the eval stack.
9634         * verify.c (mono_method_verify): use do_newarr
9635
9636
9637 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9638
9639         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
9640         factored the common code into get_boxable_mono_type, which
9641         is now using mono_type_get_full, this fixed byref related tests.
9642
9643 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9644
9645         * class.c: added mono_type_get_full, this function has the same
9646         behavior of mono_class_get_full but the returned MonoType has
9647         all metadata of the associated token in case of a typespec token.
9648         * class.c: added mono_type_retrieve_from_typespec, used by 
9649         mono_type_get_full to retrieve the token type.
9650         * class.c (mono_class_create_from_typespec): changed to use
9651         mono_type_retrieve_from_typespec.
9652         * class.c (mono_ldtoken): changed to use mono_type_get_full
9653         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
9654         * class-internals.h: exported mono_type_get_full for internal use.
9655
9656 2007-08-16  Jb Evain  <jbevain@novell.com>
9657
9658         * domain.c (supported_runtimes): add entry for
9659         the 'moonlight' runtime version.
9660
9661 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9662
9663         * verify.c (mono_method_verify): small typo sliped in.  
9664
9665 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9666
9667         * verify.c (do_unbox_value): added, do type verification of
9668         unboxing ops
9669         * verify.c (mono_method_verify): use do_unbox_value
9670
9671
9672 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9673
9674         * verify.c (dump_stack_value): fixed typo, was printing string
9675         instead of object on stack.
9676         * verify.c (do_box_value): moved the byref check up as it leads
9677         to invalid code and should be done earlier.
9678         * verify.c: improved error messages for and ldobj
9679
9680 2007-08-15  William Holmes  <billholmes54@gmail.com>
9681
9682         * marshal.c (emit_marshal_custom): Omit the call to 
9683           marshal_native_to_managed when calling native to managed 
9684           and the argument is specified as an out argument.
9685
9686         Code is contributed under MIT/X11 license.
9687
9688 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9689
9690         * verify.c: fixed the type checks for generics, function pointers and vectors.
9691         Added type verification for ldobj and ldtoken. The verifier
9692         would segfault if header or signature of a method contained references
9693         to non-existant types.
9694
9695 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
9696
9697         * marshal.c (cominterop_get_ccw): Patch from
9698         Bill Holmes to no walk up interface hierarchy. 
9699         All parent methods should be present in the interface for COM.
9700    
9701         Code is contributed under MIT/X11 license.
9702
9703 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
9704
9705         * marshal.c (emit_marshal_com_interface): Patch from
9706         Bill Holmes to handle COM Interfaces as return values
9707         for native->managed calls.
9708    
9709         Code is contributed under MIT/X11 license.
9710
9711 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
9712
9713         * marshal.c (cominterop_get_idispatch_for_object): Implement
9714         for runtime callable wrappers.
9715    
9716         Code is contributed under MIT/X11 license.
9717
9718 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
9719
9720         * pedump.c (main): changed from mono_init to mono_init_from_assembly
9721         so 2.0 types are accessible
9722
9723
9724 2007-08-13  Miguel de Icaza  <miguel@novell.com>
9725
9726         * domain.c (mono_init_internal): Call mono_assembly_load_friends
9727         once we load mscorlib.   Due to the order in which we initialize,
9728         the mono_assembly_load_full routine that loads mscorlib did not
9729         load friends.   We now load it once we load the
9730         mono_defaults.internals_visible_class class. 
9731
9732         * assembly.c: Expose the mono_load_friend_assemblies method.
9733
9734 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
9735
9736         * verify.c: improved the handling of boxing, better
9737         type checking for unary ops and conversion. Fix bug
9738         regarding managed pointer compatibility checking
9739
9740 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
9741
9742         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
9743
9744         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
9745
9746 2007-08-09  Raja R Harinath  <rharinath@novell.com>
9747
9748         * reflection.c (dup_type): Remove.
9749         * class.c (dup_type): Remove.
9750         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
9751         instead of the dodgy 'dup_type'.
9752         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
9753         handle the case where 'dup_type' needed the second argument.
9754
9755 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
9756
9757         * domain.c: Fix a warning.
9758
9759 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
9760
9761         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
9762         checking that methods with the same fqname are not overridden
9763         with a method from an ancestor.
9764
9765 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
9766
9767         * threads.c (free_thread_static_data_helper): Avoid a crash if
9768         thread->static_data is not yet set.
9769
9770 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
9771
9772         * marshal.c: Use correct image when emitting
9773         native wrapper for COM calls.
9774    
9775         Code is contributed under MIT/X11 license.
9776
9777 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
9778
9779         * icall-def.h, security.c, security.h :
9780           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
9781
9782 2007-08-07  Martin Baulig  <martin@ximian.com>
9783
9784         * mono-debug-debugger.h
9785         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
9786
9787         * domain.c (mono_domain_free): Call
9788         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
9789
9790 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
9791
9792         * verify.c (check_underflow, check_overflow): error message now returns IL offset
9793         * verify.c (in_same_block): code should test if either offset is inside the clauses
9794         * verify.c (mono_method_verify): push the exception into the eval stack of exception
9795         and filter blocks
9796
9797 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
9798
9799         * image.c (mono_image_close): Fix a leak.
9800
9801         * object.c (mono_runtime_invoke_array): Avoid using alloca.
9802
9803         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
9804
9805 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9806
9807         * domain.c, threads.c, threads-types.h: fix memory retention issue
9808         with thread static variables not being cleared on domain unload.
9809         Reuse thread static slots after domain unload.
9810
9811 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
9812
9813         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
9814         nullable type.
9815
9816         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
9817         now done in mono_runtime_invoke_array.
9818
9819         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
9820         receiver is a nullable type.
9821
9822         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
9823         generic parameter.
9824
9825 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
9826
9827         * marshal.c: Implement COM Objects as return type for 
9828         managed->unmanaged calls. Added Release calls for COM Object
9829         out/return values in managed->unmanaged calls.
9830
9831         Code is contributed under MIT/X11 license.
9832
9833 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
9834
9835         * threads.h, threads-type.h: move the hazard pointer declarations
9836         to the private header.
9837
9838 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9839
9840         * file-io.c, appdomain.c: memory leak fixes.
9841
9842 2007-08-02  Dick Porter  <dick@ximian.com>
9843
9844         * socket-io.c
9845         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
9846         SO_REUSEADDR setting into io-layer/sockets.c.
9847
9848 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
9849
9850         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
9851         from Object when called on a generic parameter. Fixes #82211.
9852
9853 2007-08-01  Dick Porter  <dick@ximian.com>
9854
9855         * file-io.c (convert_share): Test FileShare values bit-by-bit.
9856         Fixes bug 79250 yet again.
9857
9858 2007-07-30  Martin Baulig  <martin@ximian.com>
9859
9860         Merged the `debugger-dublin' branch.
9861
9862         * mono-debug.h
9863         (MonoDebugDataTable): New typedef.
9864         (MonoDebugMethodAddressList): New typedef.
9865         (MonoDebugWrapperData): Removed.
9866         (MonoDebugSymbolTable): Removed `current_data_table',
9867         `current_data_table_size', `current_data_table_offset'.
9868         (MonoDebugDataItemType): Moved into mono-debug.c.
9869         (MonoDebugMethodJitInfo): Remove `address'.
9870         (mono_debug_data_table): New global variable.
9871         (mono_debug_lookup_method_addresses): New public function.
9872         (mono_debug_find_method): Take a `MonoMethod *', not a
9873         `MonoDebugMethodInfo *'.
9874
9875         * mono-debug.c: Drop support for the old symbol tables.
9876
9877 2007-06-28  Martin Baulig  <martin@ximian.com>
9878
9879         * mono-debug.c (mono_debug_debugger_version): New public variable.
9880
9881 2007-07-31  William Holmes  <billholmes54@gmail.com>
9882
9883         * metadata.c Changed mono_type_create_from_typespec to not insert
9884           the type into the hash map until after
9885           do_mono_metadata_parse_type has completed.
9886         Fixes Bug #82194
9887         Code is contributed under MIT/X11 license.
9888
9889 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
9890
9891         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
9892         generic parameter. Fixes #82211.
9893
9894 2007-07-27  Jb Evain  <jbevain@novell.com>
9895
9896         * pedump.c (dump_metadata, dump_metadata_header): dump
9897         versions contained in the metadata header.
9898
9899 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
9900
9901         * threads.c: register small_id_table with the GC.
9902
9903 2007-07-27  Mark Probst  <mark.probst@gmail.com>
9904
9905         * threads.c, threads.h, class-internals.h, object-internals.h:
9906         Hazard pointers, to be used by lock-free parallel algorithms.
9907
9908 2007-07-26  Dick Porter  <dick@ximian.com>
9909
9910         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
9911         routine on non-windows platforms, as I've not managed to think of
9912         a non-kludgy way of doing this.  Finishes off bug 78739.
9913
9914 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
9915
9916         * object.c: properly setup interface_bitmap in proxy vtables.
9917
9918 2007-07-25  Marek Habersack  <mhabersack@novell.com>
9919
9920         * appdomain.c (get_shadow_assembly_location): do not use TickCount
9921         to create unique shadow copy target directories, use the domain's
9922         serial number instead. Each domain gets a unique target directory
9923         that way.
9924
9925         * domain.c (mono_domain_create): added code to increment domain
9926         shadow copy serial number and cache the value in the current
9927         domain structure.
9928
9929         * domain-internals.h (struct _MonoDomain): added a new field -
9930         shadow_serial to hold the serial number used in generation of
9931         shadow-copy directories. This is to make sure that the directory
9932         name is unique for each and every domain created. We avoid a race
9933         condition with overriding assemblies already in use by other app
9934         domains.
9935
9936 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
9937
9938         * class.c (mono_bounded_array_class_get): fixed memory leak when 
9939         binding generic parameters.
9940
9941 2007-07-24  Raja R Harinath  <rharinath@novell.com>
9942
9943         * metadata.c (do_mono_metadata_parse_generic_class): Use
9944         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
9945         error.
9946
9947 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
9948
9949         * loader.c, class-internals.h, reflection.c: removed the per-method
9950         generics hashtable: we use the global one through the call of
9951         mono_class_inflate_generic_method ().
9952
9953 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
9954
9955         * class.c, metadata.c, class-internals.h: introduce yet another
9956         generics global cache for inflated methods (fixes 98% of the perf
9957         issue in bug #81806).
9958
9959 2007-07-23  Raja R Harinath  <rharinath@novell.com>
9960
9961         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
9962         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
9963         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
9964         return a MonoGenericInst containing (a copy) of those types.
9965         (mono_metadata_inflate_generic_inst): Update to changes.
9966         (mono_metadata_parse_generic_inst): Likewise.
9967         (mono_get_shared_generic_inst): Likewise.
9968         * reflection.c (mono_class_bind_generic_parameters): Likewise.
9969         (mono_reflection_bind_generic_method_parameters): Likewise.
9970         * metadata-internals.h: Likewise.
9971         * icall.c (free_generic_context): Kill.
9972         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
9973
9974         * reflection.c (reflection_methodbuilder_to_mono_method): Use
9975         mono_metadata_type_dup.
9976         * marshal.c (mono_mb_create_method): Likewise.
9977
9978         * metadata.c (mono_metadata_type_dup): Rename from
9979         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
9980         MonoImage.  Handle a few more cases, esp. when no mempool is given.
9981         * marshal.c, metadata-internals.h: Update to changes.
9982
9983 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
9984
9985         * class.c: fixed a small leak for array classes and removed warning.
9986
9987 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
9988
9989         * loader.c (mono_method_get_param_token): Make this work on generic methods.
9990         Return 0x8000000 for return parameters. Fixes #82161.
9991
9992 2007-07-21  Marek Habersack  <grendello@gmail.com>
9993
9994         * appdomain.c (get_shadow_assembly_location): append the current
9995         ticks value to the path. Avoids overwriting the same assemblies by
9996         several threads at the same time.
9997
9998 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
9999         and Raja R Harinath  <rharinath@novell.com>
10000
10001         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
10002         Simplify slightly.
10003         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
10004         property for testing if a method is a generic method definition.
10005
10006 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
10007
10008         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
10009
10010 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10011
10012         * verify.c: used function from private branch, reverted to the one in class.h 
10013
10014 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10015
10016         * verify.c: a typo slipped in and the code wont compile
10017
10018 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10019
10020         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
10021         disabled box instruction as it is doing the wrong thing
10022         improved stack dump messages, now it is easier to debug type related issues
10023
10024
10025 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
10026
10027         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
10028
10029 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10030
10031         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
10032         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
10033         grouped with class and valuetype. This change will simply 
10034         the code as it should be handled just like unmanaged pointers.
10035
10036 2007-07-19  Mark Probst  <mark.probst@gmail.com>
10037
10038         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
10039
10040 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10041
10042         * verify.c: several stack merge issues fixed, reference comparisons now
10043         check the type size. strict type check now works correctly.
10044         added more uses of IS_MANAGED_POINTER macro.
10045         fixed issues pointed by running the test suite against .net.
10046         
10047
10048 2007-07-19  Mark Probst  <mark.probst@gmail.com>
10049
10050         * class.c, loader.c, class-internals.h: Removed the
10051         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
10052         defines.
10053
10054         * icall.c: Better error checking in some internal reflection
10055         methods.
10056
10057 2007-07-18  William Holmes  <billholmes54@gmail.com>
10058
10059         * filewatcher.c : removed unused variable 'filename' in 
10060           ves_icall_System_IO_FSW_SupportsFSW
10061
10062 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
10063
10064         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
10065         obsolete, removed.
10066
10067 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
10068
10069         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
10070         
10071         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
10072
10073 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
10074
10075         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10076         Implement generics support.
10077         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
10078
10079         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
10080         type_args and method_args arguments.
10081         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
10082         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
10083         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
10084
10085 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
10086
10087         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
10088           It adds a rootimage parameter to mono_reflection_get_type_internal,
10089           adds new function mono_reflection_get_type_with_rootimage and use
10090           the rootimage to resolve the types instead of the current image
10091
10092 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10093
10094         * culture-info-table.h: Forgot to update after r78304.
10095
10096 2007-07-13  Raja R Harinath  <rharinath@novell.com>
10097
10098         * class.c (mono_class_is_open_constructed_type)
10099         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
10100
10101 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
10102
10103         * class.c (mono_bounded_array_class_get):  method fails if used with
10104         an incomplete TypeBuilder enum (no basetype field), fixed it by 
10105         avoiding calculating the size for such array as it cannot be instantiated.
10106         Fix bug #82015
10107
10108 2007-07-12  Raja R Harinath  <rharinath@novell.com>
10109
10110         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
10111         field.
10112         * metadata.c, reflection.c: Update to changes.
10113
10114 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
10115
10116         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
10117         mono_class_is_valid_enum, they are used to valide a enum when loading.
10118         * reflection.c: used new functions to throw TypeLoadException when and
10119         invalid enum is build with TypeBuilder. Fixes #82018
10120   
10121 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
10122
10123         * object.c: forgot commit of mono_class_setup_methods () to access
10124         iface->methods.
10125         * object-internals.h: added a few more handy fields to
10126         MonoIMTCheckItem.
10127
10128 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
10129
10130         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
10131         iface->methods.
10132
10133 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
10134
10135         * class-internals.h, object-internals.h, object.c: IMT-based
10136         interface invocation core from Massimiliano Mantione
10137         (massi@ximian.com) with a reworked arch-specific interface,
10138         bsearch implementation and a few bugfixes and memory savings by me.
10139
10140 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
10141
10142         * class.c (mono_class_create_from_typedef): mono would segfault if 
10143         an enum did not have a __value field. It now throws a TypeLoadException
10144         for such cases. Fix bug #82022
10145
10146 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
10147
10148         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
10149
10150 2007-07-09  Mark Probst  <mark.probst@gmail.com>
10151
10152         * class.c (mono_class_init): If a class is already inited but has
10153         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
10154
10155 2007-07-09  Mark Probst  <mark.probst@gmail.com>
10156
10157         * class.c: Properly handle the case of an unimplemented interface
10158         method.  Fixes: 81673.
10159
10160 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
10161
10162         * class-internals.h, object.c: cleanup patch from massi: use
10163         MonoVTable->interface_bitmap since the vtable interfaces offset array
10164         is going away.
10165
10166 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
10167
10168         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
10169         GetMDStreamVersion icall instead.
10170
10171 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
10172
10173         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
10174         not use mono_dl_build_path() with a full library name: makes
10175         fallbacks to libgaim and libfam work.
10176
10177 2007-07-06  William Holmes  <billholmes54@gmail.com>
10178
10179         * assembly.c: Added a continue statement in probe_for_partial_name when
10180          parse_assembly_directory_name fails.  Fixes : 82002
10181
10182 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
10183
10184         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
10185         and added a verification  for TYPEDBYREF.
10186         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
10187         make native int interchangeable with int32 and some small cleanup and formating.
10188         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
10189         handle byref of byref.
10190         * verify.c (push_local): handle byref of byref.
10191         * verify.c (do_binop): invalid mix of values is unverifiable
10192         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
10193         added visibility checks
10194         * verify.c (field related method): added visibility checks
10195         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
10196
10197 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
10198
10199         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
10200         string.
10201
10202 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
10203
10204         * profiler.c (mono_profiler_load): Fix an off-by-one error.
10205
10206         * marshal.c (emit_marshal_string): When returning a string from managed code,
10207         allways make a copy even for unicode strings. Fixes #81990.
10208
10209 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
10210
10211         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
10212         of byref generic inst types (bug #81997).
10213
10214 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
10215
10216         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
10217         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
10218
10219 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
10220
10221         * marshal.c (emit_marshal_string): Add support for unicode strings in
10222         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
10223
10224 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
10225
10226         * verify.c: field load/store are now verified, missing only access checks now
10227
10228 2007-06-28  Martin Baulig  <martin@ximian.com>
10229
10230         * mono-debug.c (mono_debug_debugger_version): New public variable.
10231
10232 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
10233
10234         * locales.c: When constructing DateTimeFormat or NumberFormat for
10235         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
10236         MonoCultureInfo contructed from the current locale is always
10237         read-only and has UseUserOverride set to true. All MonoCultureInfo
10238         instances returned for GetCultures have both IsReadOnly and
10239         UseUserOverride set to true. Fixes part of bug #81930.
10240
10241 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
10242
10243        * icall-def.h: Update System.__ComObject icalls
10244        * marshal.c: Avoid managed transition (and object creation)
10245        when looking up COM interface in RCW.
10246        * marshal.h: Ditto.
10247        
10248        Code is contributed under MIT/X11 license.
10249
10250 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
10251
10252         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
10253         to avoid crashes during assembly unloading.
10254
10255 2007-06-22  Raja R Harinath  <rharinath@novell.com>
10256
10257         Fix MethodInfo.IsGenericMethodDefinition
10258         * reflection.c (mono_reflection_bind_generic_method_parameters):
10259         Rearrange code to ensure we always uses a generic method definition.
10260         * class.c (mono_class_inflate_generic_method_full): Set
10261         'generic_container' field only for generic method definitions.
10262         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
10263         Use presense of 'generic_container' field as indication of being a
10264         generic method definition.
10265
10266 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
10267
10268         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10269
10270         * object-internals.h: Reflect changes in the layout of the managed Delegate
10271         class.
10272         
10273         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
10274         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
10275         runtime memory used by the dynamic method. Fixes #77146.
10276
10277 2007-06-21  Dick Porter  <dick@ximian.com>
10278
10279         * file-io.h: 
10280         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
10281         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
10282         81767.
10283
10284 2007-06-21  Raja R Harinath  <rharinath@novell.com>
10285
10286         * reflection.c (method_encode_methodspec): Add a tripwire.
10287         * class.c (inflate_generic_type): The fully open generic type is
10288         not the same as the generic type definition.
10289
10290 2007-06-21  Martin Baulig  <martin@ximian.com>
10291
10292         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
10293
10294         * mono-debug-debugger.h
10295         (MonoDebuggerBreakpointInfo): Removed.
10296         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
10297         (mono_debugger_remove_breakpoint): Likewise.
10298         (mono_debugger_breakpoint_callback): Likewise.
10299         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
10300
10301 2007-06-21  Raja R Harinath  <rharinath@novell.com>
10302
10303         * metadata.c (mono_metadata_lookup_generic_class): The fully open
10304         generic type is not the same as the generic type definition.
10305         * class.c (mono_generic_class_get_class): Likewise.
10306
10307 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
10308
10309         * icall.c: The second argument to 
10310         System.Reflection.MethodBase.GetMethodFromHandleInternalType
10311         is a MonoType not a MonoClass.
10312
10313 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
10314
10315         * verify.c: support for function pointers in the verifier
10316
10317 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
10318
10319         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
10320
10321 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
10322
10323         * assembly.c: removed Mono.Data.SqliteClient from the list of
10324         forward-compatible assemblies as it breaks the ABI (bug #81899).
10325
10326 2007-06-19  Raja R Harinath  <rharinath@novell.com>
10327
10328         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
10329         lookup/update with the loader lock.
10330         * reflection.c (mono_class_bind_generic_parameters): No need to
10331         protect mono_metadata_lookup_* with the loader lock.
10332         * class.c (inflate_generic_type): Likewise.
10333         
10334         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
10335         on a generic instantiated type.
10336
10337 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
10338
10339         *verify.c: produce meanfull error messages on verification error
10340         *verify.c: fixed some cases of verification errors reported as validation errors
10341         *pedump.c: fixed the error name array, now it shows validation errors properly
10342         *verify.h: fixed the contant that should be used for verification errors
10343
10344 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
10345
10346         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
10347         for bug #77596, 81858 and 80743 (generics data structures on domain
10348         unload).
10349
10350 2007-06-15  Raja R Harinath  <rharinath@novell.com>
10351
10352         Avoid allocating 'MonoGenericContext' on the heap.
10353         * class-internals (_MonoMethodInflated::context): Make field
10354         inline, not a pointer.
10355         * loader.c (method_from_methodspec): Allocate 'new_context' on the
10356         stack.  Use the context embedded within the inflated method as the
10357         hash key, rather than 'new_context'.
10358         * class.c (inflate_generic_context): Simplify.  Return a struct
10359         rather than allocating on the heap.
10360         (mono_class_inflate_generic_method_full): Update to changes.  Now,
10361         doesn't salt away a copy of the context -- simplifying the
10362         lifetime rules of a 'MonoGenericContext *'.
10363         (mono_method_get_context): Return pointer to embedded context.
10364         (setup_generic_array_ifaces): Allocate temporary context on stack.
10365         * reflection.c (inflate_mono_method): Likewise.
10366         (mono_reflection_bind_generic_method_parameters): Likewise.
10367         Use the context embedded within the inflated method as the hash key.
10368
10369         Avoid a source of allocation of 'MonoGenericContext'.
10370         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
10371         and 'cached_context' fields into embedded 'MonoGenericContext' field.
10372         * class.c: Update to changes.
10373         (mono_generic_class_get_context): Simplify drastically.  Now just
10374         returns a pointer to the field.
10375         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
10376         argument as a const pointer.
10377         (mono_metadata_generic_context_equal): Likewise.
10378         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
10379         Update to changes.
10380
10381 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
10382
10383         * verify.c improved the handling of brtrue/brfalse, factored out common code
10384
10385 2007-06-14  Raja R Harinath  <rharinath@novell.com>
10386
10387         Kill MonoGenericMethod.
10388         * class-internals.h (MonoGenericContext::method_inst): Rename from
10389         'gmethod' and convert to a MonoGenericInst.
10390         (MonoGenericMethod): Remove.
10391         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
10392         * loader.c (method_from_methodspec): Update to changes.  Use a
10393         MonoGenericContext as the key to the hashtable.
10394         * metadata.c (mono_metadata_generic_context_equal): Rename from 
10395         'mono_metadata_generic_method_equal' and take MonoGenericContext.
10396         (mono_metadata_generic_context_hash): Likewise from
10397         'mono_metadata_generic_method_hash'.  Change hash function.
10398         (mono_metadata_load_generic_params): Update to changes.
10399         (mono_get_shared_generic_method): Remove.
10400         * metadata-internals.h (mono_get_shared_generic_method): Remove.
10401         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
10402         (inflate_generic_context): Likewise.
10403         (mono_class_inflate_generic_method_full): Likewise.
10404         (setup_generic_array_ifaces): Likewise.
10405         (mono_class_create_from_typespec): Likewise.
10406         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
10407         (method_encode_methodspec): Update callsite.
10408         (reflection_methodbuilder_to_mono_method): Update to changes.
10409         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
10410         MonoGenericContext as the key to the hashtable.
10411         (inflate_mono_method): Update to changes.
10412
10413         * class-internals.h (MonoGenericMethod::container): Remove.
10414         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
10415
10416 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
10417
10418         * profiler-private.h, profiler.c, profiler.h: added API to profile
10419         exception events.
10420
10421 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
10422
10423         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
10424
10425 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
10426
10427         * verify.c: method invocation is now validated, now we verify parameter types on stack.
10428         Fixed overflow and underflow not aborting the verification process.
10429
10430 2007-06-13  Mark Probst  <mark.probst@gmail.com>
10431
10432         * class-internals.h (MonoStats): Added stats entries for dynamic
10433         code allocations.
10434
10435 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
10436
10437         * loader.c (mono_free_method): Free header->locals and header->clauses.
10438
10439         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
10440         dynamic case.
10441
10442         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
10443
10444         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
10445
10446 2007-06-12  Raja R Harinath  <rharinath@novell.com>
10447
10448         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
10449         the tables.
10450
10451 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10452
10453         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
10454
10455 2007-06-11  Raja R Harinath  <harinath@gmail.com>
10456
10457         MonoGenericMethod on a diet
10458         * class-internals.h (_MonoMethodInflated::reflection_info): Move
10459         here ...
10460         (_MonoGenericMethod::reflection_info): ... from here.
10461         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10462         Update to changes.
10463         * reflection.c (inflate_mono_method): Likewise.
10464         (mono_reflection_bind_generic_method_parameters): Likewise.
10465
10466 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10467
10468         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
10469         *verify.c: factored long ldarg forms to share code with short forms
10470
10471 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10472
10473         *verify.c: fixed code formating factored some duplicate code
10474         into a new function
10475
10476         *verify.h: fixed binary incompatibility introduced earlier
10477
10478         *pedump.c: fixed formating
10479
10480 2007-06-11  Raja R Harinath  <harinath@gmail.com>
10481
10482         Fix assertion when disassembling Mono.C5.dll
10483         * loader.c (method_from_methodspec): Avoid inflating a method
10484         twice with the same context.  If the methodref is inflated, use
10485         the declaring method instead.
10486
10487         * class.c (mono_class_from_generic_parameter): Fix case similar to
10488         bug #81830 handled below, but for method containers.
10489
10490 2007-06-10  Raja R Harinath  <harinath@gmail.com>
10491
10492         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
10493         get_shared_generic_class.  Directly inflate the instance.
10494         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
10495         (inflate_generic_class): Delete.
10496         (get_shared_generic_class): Delete.  Move setting of
10497         'cached_class' and 'cached_context' ...
10498         * metadata.c (mono_metadata_lookup_generic_class): ... here.
10499
10500         * metadata.c (mono_metadata_lookup_generic_class): Change
10501         signature to take the components of a MonoGenericClass rather than
10502         an allocated MonoGenericClass.  Change semantics to be intern-like.
10503         * reflection.c (mono_class_bind_generic_parameters): Update to
10504         changes.  Make locking region tighter.
10505         * class.c (inflate_generic_class): Update to changes.
10506         (get_shared_generic_class): Likewise.
10507         * metadata-internals.h: Likewise.
10508
10509         * reflection.c (mono_class_bind_generic_parameters): Take and
10510         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
10511         (mono_reflection_bind_generic_parameters): Use
10512         'mono_class_bind_generic_parameters' rather than duplicate the code.
10513         * class.c (mono_bounded_array_class_get): Update to changes.
10514         * object-internals.h: Likewise.
10515
10516         * reflection.c (mono_class_bind_generic_parameters): Only support
10517         parameterizing generic type definitions.  Remove support for other
10518         open types.
10519
10520 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
10521
10522         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
10523
10524         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
10525         in the dynamic case.
10526
10527 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
10528
10529         * threads.c: When cleaning up thread, reset the Background bit.
10530         Fixes bug #81720.
10531
10532 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
10533
10534        * metadata.c: Move variable declarations to top of scope.
10535        * verify.c: Move variable declarations to top of scope.
10536
10537        Code is contributed under MIT/X11 license.
10538
10539 2007-06-08  Raja R Harinath  <rharinath@novell.com>
10540
10541         * reflection.c (mono_class_bind_generic_parameters): Replace
10542         open-coded loop with mono_metadata_inflate_generic_inst.
10543
10544         * class.c (get_shared_generic_class): Don't call
10545         mono_get_shared_generic_inst.  Use the container's own
10546         'class_inst'.
10547
10548         * metadata.c (mono_metadata_load_generic_params): Move
10549         initialization of 'context' field here from ...
10550         * class.c (mono_class_create_from_typedef): ... here, and ...
10551         * loader.c (mono_get_method_from_token): ... here.
10552
10553         * class.c (get_shared_generic_class): Rename from
10554         mono_get_shared_generic_class and make static.
10555         (mono_get_shared_generic_inst): Move to metadata.c.
10556         * loader.c (mono_get_shared_generic_method): Likewise.
10557         * class-internals.h, metadata-internals.h: Update to changes.
10558
10559         Fix #81830
10560         * class.c (mono_class_from_generic_parameter): Don't assume a
10561         generic container owner exists.  Generic containers from monodis
10562         don't have any.
10563
10564 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
10565
10566         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
10567         * verify.h: new typedefs to returns the non-verifiable status
10568         * verify.c: initial implementation of generics, stack merging and object compatibility check
10569
10570 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10571
10572         * class.c, image.c, class-internals.h (MonoImage): class_cache is
10573         a MonoInternalHashTable again (fixed bug in internal hash table
10574         code).
10575
10576 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10577
10578         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
10579         MonoInternalHashTable again (fixed bug in internal hash table
10580         code).
10581
10582 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10583
10584         * class.c, image.c, class-internals.h, domain.c,
10585         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
10586         changes.  Have to figure out what makes them break the SWF
10587         regression.
10588
10589 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10590
10591         * class.c, image.c, class-internals.h (MonoImage): class_cache is
10592         a MonoInternalHashTable now.
10593
10594 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10595
10596         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
10597         MonoInternalHashTable now.
10598
10599 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
10600
10601         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
10602         invoke_impl code.
10603
10604         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
10605
10606         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
10607         dependent trampoline.
10608
10609         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10610
10611         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
10612
10613 2007-05-29  Robert Jordan  <robertj@gmx.net>
10614
10615         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
10616
10617 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
10618
10619         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
10620
10621 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
10622
10623        * marshal.c: Fix interface lookup loops for
10624        cominterop_get_com_slot_for_method and 
10625        cominterop_get_method_interface. Only need to lookup
10626        if type is a class, else use interface type method is on.
10627
10628        Code is contributed under MIT/X11 license.
10629
10630 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
10631
10632         * reflection.c: HasSecurity can be present even if no specially 
10633         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
10634         SecurityAttribute). Fix CAS regression tests on buildbot.
10635
10636 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
10637
10638        * appdomain.c: Add configure checks for header files.
10639        * image.c: Add configure checks for header files.
10640        * file-io.c: Add configure checks for header files.
10641        * debug-mono-symfile.c: Add configure checks for header files.
10642        * threadpool.c: Add configure checks for header files.
10643        * console-io.c: Add configure checks for header files.
10644        * profiler.c: Add configure checks for header files.
10645        * rawbuffer.c: Add configure checks for header files.
10646        * icall.c: Add configure checks for header files.
10647        * rand.c: Add configure checks for header files.
10648        * socket-io.c: Add configure checks for header files.
10649
10650        Code is contributed under MIT/X11 license.
10651
10652 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
10653
10654         * reflection.c (mono_custom_attrs_from_builders): Remove the 
10655         assertion as it breaks the build.
10656         
10657         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
10658
10659         * reflection.c (lookup_custom_attr): Make a copy here too.
10660
10661         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
10662         dynamic images.
10663
10664         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
10665         images.
10666
10667         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
10668         info.
10669
10670 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
10671
10672         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
10673         (load_cattr_value): Ditto.
10674
10675 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
10676
10677         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
10678
10679 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
10680
10681         * threads.c: In "start_wrapper", set apartment_state to MTA if
10682         apartment_state is Unknown and we're running on 2.0 profile or
10683         higher.
10684         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
10685         to main method, then set apartment_state to Unknown on 1.0 profile,
10686         and MTA on 2.0 profile.
10687
10688 2007-05-16  Jb Evain  <jb@nurv.fr>
10689
10690         * class-internals.h (MonoDefaults): Add an attribute_class and
10691           customattribute_data_class.
10692         * domain.c (mono_init_internal): Populate them.
10693         * reflection.c: Use them to remove duplicates. Make a vew
10694         MonoClass variables `static'.
10695
10696 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
10697
10698         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
10699         step in implementing IMT, so that all isinst checks now can go
10700         through the bitmap.
10701         This was needed because vtables for TransparentProxy need to look
10702         like the vtable of the "target" class, so they need to point to
10703         its interface bitmap directly.
10704
10705         * object.c: inside "mono_class_create_runtime_vtable" and
10706         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
10707
10708 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10709
10710         * object-internals.h
10711           culture-info.h : added territory field in MonoCulture and
10712           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
10713         * locales.c : fill territory field above too.
10714         * culture-info-table.h : regenerated.
10715
10716 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
10717
10718         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
10719         Fixes #81599.
10720
10721 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
10722
10723         * object.c: Always initialize apartment, even if 
10724         there is no custom attributes on entry point.
10725         
10726         Code is contributed under MIT/X11 license.
10727
10728 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
10729
10730         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
10731         * metadata.c: If no encoding is set, check for unicode
10732         on class.
10733         
10734         Code is contributed under MIT/X11 license.
10735
10736 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
10737
10738         * threads.c: Handle if mono_thread_current returns NULL 
10739         
10740         Code is contributed under MIT/X11 license.
10741
10742 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
10743
10744         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
10745         in start_wrapper. Added mono_thread_init_apartment_state and
10746         mono_thread_cleanup_apartment_state.
10747         * object.c: Initialize thread apartment state on main thread
10748         by checking for STAThreadAttribute on entry point.
10749         * object-internals.h: Add apartment_state field to MonoThread.
10750         * threads-types.h: Add unmanaged definition of 
10751         System.Threading.ApartmentState, MonoThreadApartmentState.
10752         
10753         Code is contributed under MIT/X11 license.
10754         
10755 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
10756
10757         * class.c: Fix windows build.
10758         * class-internals.h: Fix windows build.
10759         
10760         Code is contributed under MIT/X11 license.
10761
10762 2007-05-08  Robert Jordan  <robertj@gmx.net>
10763
10764         * process.c (CreateProcess_internal):
10765         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
10766         .CreateNoWindow was specified. Fixes #81496.
10767
10768 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
10769
10770         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
10771         step in implementing IMT, replaced it with two compact arrays
10772         (interfaces_packed and interface_offsets_packed) and a bitmap that
10773         is used for isinst checks (interface_bitmap).
10774
10775         * class.c: (compare_interface_ids): compare function to pass to
10776         bsearch when looking for an interface with a given id.
10777         (mono_class_interface_offset): reimplemented using bsearch on
10778         interfaces_packed, getting the offset from interface_offsets_packed.
10779         (print_implemented_interfaces): utility debugging function.
10780         (setup_interface_offsets): reworked to initialize interfaces_packed,
10781         interface_offsets_packed and interface_bitmap.
10782
10783         * object.c: replaced all accesses to "MonoClass.interface_offsets"
10784         with uses of interfaces_packed and interface_offsets_packed.
10785
10786 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
10787
10788         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
10789         mono_class_interface_offset prototype to wrap all accesses to
10790         "MonoClass.interface_offsets".
10791
10792         * class.c: Implemented mono_class_interface_offset, and wrapped all
10793         accesses to "MonoClass.interface_offsets".
10794
10795         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
10796         "MonoClass.interface_offsets".
10797
10798 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
10799
10800         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
10801         GetMethodFromHandle overloads (bug #78637).
10802
10803 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
10804
10805         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
10806         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
10807
10808 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
10809
10810         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
10811         #81498.
10812
10813         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
10814         gracefully.
10815         (mono_custom_attrs_from_index): Ditto.
10816
10817         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
10818         Fixes #81501.
10819
10820 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
10821
10822         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
10823         is now allocated from a mempool.
10824
10825 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
10826
10827         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
10828         caller holds threads_lock, leading to deadlocks. Fixes #81476.
10829
10830 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
10831
10832         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
10833         mono_loader_clear_error () too late. Fixes #81463.
10834
10835 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
10836
10837         * culture-info-table.h : regenerated.
10838
10839 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
10840
10841         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
10842         is missing.
10843
10844 2007-04-25  Dick Porter  <dick@ximian.com>
10845
10846         * Makefile.am: Put the mingw enforced-optimisation back into the
10847         PLATFORM_WIN32 section.
10848
10849 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
10850
10851         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
10852         patch.
10853
10854         * image.c (mono_image_load_module): New API function to load a module reference.
10855
10856         * image.c (load_modules): Load modules lazily. Fixes #80812.
10857
10858         * class.c (mono_class_from_typeref): Use mono_image_load_module.
10859         
10860         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
10861
10862         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
10863         to mono_image_load_module_dynamic.
10864
10865 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
10866
10867         * marshal.c: Fix calling convention for CCW on non-windows
10868         platforms. STDCALL on windows, CDECL everywhere else to work 
10869         with XPCOM and MainWin COM.
10870         
10871         Code is contributed under MIT/X11 license.
10872
10873 2007-04-23  Martin Baulig  <martin@ximian.com>
10874
10875         Fix #80969.
10876
10877         * loader.c
10878         (method_from_memberref): Added `gboolean *used_context' argument.
10879         (mono_get_method_from_token): Likewise.
10880         (mono_get_method_full): Don't insert the method in the cache when
10881         `used_context' is true.
10882
10883 2007-04-23  Raja R Harinath  <rharinath@novell.com>
10884
10885         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
10886
10887         * reflection.c (mono_reflection_bind_generic_parameters): Don't
10888         create new MonoTypes for returned types.
10889         * class.c (mono_generic_class_get_class): Export mono-internal.
10890         * class-internals.h: Update to changes.
10891
10892 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
10893
10894         * threadpool.c, threadpool.h, icall-def.h: patch from
10895         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
10896
10897 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
10898
10899         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
10900         
10901         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
10902
10903         * threads.c (mono_thread_get_stack_bounds): New helper function.
10904
10905         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
10906         Correctly compute stack bounds when attaching. Fixes #81394.
10907
10908 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
10909
10910         * reflection.c: fix handling of doubles in custom attributes
10911         for the arm-fpa format (bug #81368).
10912
10913 2007-04-18  Raja R Harinath  <rharinath@novell.com>
10914
10915         * reflection.c (assembly_add_win32_resources): Mildly relax an
10916         bounds check to let the end pointer point just past the end of the
10917         allocated buffer.  (may fix #81384)
10918
10919 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
10920
10921         * culture-info-table.h : regenerated.
10922
10923 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
10924
10925         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
10926         the thread is aborted early.
10927
10928 2007-04-05  Dick Porter  <dick@ximian.com>
10929
10930         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
10931         FindFirstFile()/FindNextFile() to find entries.  This lets the
10932         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
10933         81038.
10934
10935         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
10936         the parameters of
10937         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
10938
10939 2007-04-04  Martin Baulig  <martin@ximian.com>
10940
10941         * debug-helpers.c
10942         (mono_method_desc_full_match): Add support for nested classes.
10943
10944 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
10945
10946         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
10947
10948 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
10949
10950         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
10951         waiting for too many threads.
10952
10953 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
10954
10955         * environment.c: Fix return value check on uname so we can get the 
10956         executing version on Solaris operating systems.
10957
10958 2007-03-28  Jb Evain  <jbevain@gmail.com>
10959
10960         * class.c (mono_type_get_name_recurse): Complete the
10961         fix for the creation of assembly qualified names for
10962         pointer types. Fixes #81208.
10963
10964 2007-03-27  Dick Porter  <dick@ximian.com>
10965
10966         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
10967         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
10968         changed.
10969
10970         * threads.c
10971         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
10972         the value of ReleaseMutex().
10973
10974 2007-03-27  Dick Porter  <dick@ximian.com>
10975
10976         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
10977         in little-endian order, not network endian, so must be converted
10978         to host endian here.  Fixes bug 80593.
10979
10980 2007-03-22  Jb Evain  <jbevain@gmail.com>
10981
10982         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
10983         qualified names for pointer types. Fixes #81208.
10984
10985 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
10986
10987         * marshal.c: Add support for PreserveSigAttribute. 
10988         
10989         Code is contributed under MIT/X11 license.
10990
10991 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
10992
10993         * process.c: Fix endianness issues. Fixes #81126.
10994
10995         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
10996         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
10997
10998         * image.c (mono_image_lookup_resource): Make this work on big-endian
10999         machines.Change API contract so the caller needs to free the return value.
11000         
11001         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
11002         API change.
11003         
11004 2007-03-14  Martin Baulig  <martin@ximian.com>
11005
11006         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
11007         mono_type_get_desc() as well.
11008
11009 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
11010
11011         * icall.c:  Fix environ access in VS.  
11012         
11013 2007-03-13  Alp Toker  <alp@atoker.com>
11014
11015         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
11016         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
11017         #63841.
11018
11019 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
11020
11021         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
11022         circular references among dynamic methods. Fixes #81091.
11023
11024         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
11025
11026 2007-03-09  Martin Baulig  <martin@ximian.com>
11027
11028         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
11029
11030 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
11031
11032         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
11033         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
11034         
11035         Code is contributed under MIT/X11 license.
11036         
11037 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
11038
11039         * loader.c: Reapply patch for bug #79424.
11040
11041 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
11042
11043         * metadata.c (mono_type_to_unmanaged): Only convert object to
11044         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
11045
11046 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
11047
11048         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
11049         (and incorrectly set) is_reference field from MonoGenericInst.
11050
11051 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
11052
11053         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
11054         a little earlier.
11055
11056         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
11057
11058         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
11059
11060 2007-03-05  Miguel de Icaza  <miguel@novell.com>
11061
11062         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
11063         FileOptions.1 value to mean "temporary", map that to
11064         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
11065
11066         Fixes 80688
11067
11068 2007-03-03  Marek Habersack  <mhabersack@novell.com>
11069
11070         * appdomain.c: implement MS .Net style shadow copying. Copies of
11071         the assemblies are made in a subdirectory of the dynamic base
11072         directory, the assembly names are preserved.
11073         Copy .mdb and .config files along with the assemblies being shadowed.
11074
11075 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
11076
11077         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
11078         (emit_marshal_handleref): Ditto.
11079
11080         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
11081         on Visual C++. Fixes #80671.
11082
11083 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
11084
11085         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
11086         for clone operations.
11087
11088 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
11089
11090         * marshal.c: Fix warnings.
11091
11092 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
11093
11094         * loader.c: allow case-insensitive matching of the dll name
11095         in dllmap handling when prefixed with "i:".
11096
11097 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
11098
11099         * threads.c: Fix #ifdef for dummy_apc function for VS.
11100
11101 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
11102
11103         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
11104
11105 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
11106         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
11107         giving precedence to the methods with a fully qualified name
11108         (InterfaceName.MethodName) when building the interface sections
11109         of the vtable.
11110
11111 2007-02-16  Dick Porter  <dick@ximian.com>
11112
11113         * threadpool.c (append_job): Fix fast-path array handling, so it's
11114         less likely the array will grow exponentially when the load is
11115         heavy.
11116
11117 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11118
11119         * metadata-internals.h, loader.c: fix dllmap lookup order
11120         for non-function maps, too, and prepare for fallback code.
11121
11122 2007-02-12  Robert Jordan  <robertj@gmx.net>
11123
11124         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
11125         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
11126         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
11127         GlobalFree. Fixes a part of bug #77075.
11128
11129 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
11130
11131         * loader.c: implemented typedef parent in field memberref.
11132
11133 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
11134
11135         * marshal.c: Fix warnings and remember to call Release on
11136         IUnknown of RCW.
11137         
11138         Code is contributed under MIT/X11 license.
11139
11140 2007-02-10  Miguel de Icaza  <miguel@novell.com>
11141
11142         * class-internals.h: Add MonoHandleRef definition, and
11143         handleref_class to mono_defaults. 
11144
11145         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
11146         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
11147
11148         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
11149         (do nothing on this stage)
11150         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
11151         (emit_marshal_handleref): New method, used for argument handling
11152         of HandleRefs. 
11153
11154 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
11155
11156         * class.c (mono_class_setup_parent): Lazily init com types.
11157         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
11158         init com types.
11159         * object.c (mono_remote_class_vtable): Lazily init com types.
11160         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
11161         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
11162         * domain-internals.h: Expose mono_init_com_types.
11163         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
11164         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
11165         Add support for COM Callable Wrapper marshalling.
11166         * marshal.h: Add icall definitions.
11167         * gc.c: Handle freeing of CCWs in finalizer code.
11168         
11169         Code is contributed under MIT/X11 license.
11170
11171 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
11172
11173         * reflection.c: changed all the signature encoding code to use
11174         a variable-sized buffer.
11175
11176 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11177
11178         * marshal.c: locking fixes: never take the loader lock
11179         or other runtime locks when holding the marshal lock
11180         (fixes bug#80664).
11181
11182 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
11183
11184         * marshal.c: make the delegate function pointer mapping
11185         work for the moving GC.
11186
11187 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
11188
11189         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
11190         for bug #80618.
11191
11192 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11193
11194         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
11195         gmodule.
11196
11197 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
11198
11199         * threadpool.c: made the code moving-GC safe.
11200
11201 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11202
11203         * assembly.c, boehm-gc.c, class-internals.h, class.c,
11204         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
11205         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
11206         warning cleanup.
11207         * reflection.c: warning cleanup, some threading and moving GC fixes.
11208
11209 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
11210
11211         * class.c, loader.c: create the needed Set/Get/Address array methods
11212         as well as the .ctors in mono_class_init (), fixes bug #80567.
11213
11214 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
11215
11216         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
11217         we doesn't decrease its alignment. Should fix the sparc build.
11218
11219 2007-01-24  Dick Porter  <dick@ximian.com>
11220
11221         * socket-io.c
11222         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11223         Create the returned object if we need to ignore an unsupported
11224         socket option.  Fixes a segfault reported by Atsushi.
11225
11226 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11227
11228         * class.c, object.c: restrict GC-tracked fields to
11229         UIntPtr fields used inside corlib, so we provide better
11230         type info to the GC and also allow broken packing as in
11231         bug #80580.
11232
11233 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
11234
11235         * sgen-gc.c: removed duplicated function.
11236
11237 2007-01-19  Miguel de Icaza  <miguel@novell.com>
11238
11239         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
11240         value that means that the value is not supported, but that we
11241         should not return a failure, but instead report this as a
11242         successful operation.
11243
11244 2007-01-19  Raja R Harinath  <rharinath@novell.com>
11245
11246         Fix tests/bug79956.2.il
11247         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
11248         (mono_generic_class_get_class): If the generic definition in an
11249         enum, copy over other fields related to it.
11250
11251 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
11252
11253         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
11254         genericinst enums (bug #79215).
11255
11256 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
11257         * class.c: Fix bug 80307.
11258
11259 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
11260
11261         * image.c: if the file table is not present, try to load
11262         all the modules, since we don't have info about them
11263         having or not metadata (bug #80517).
11264         * assembly.c: allow mono_assembly_load_references () to
11265         work for netmodules.
11266
11267 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11268
11269         * image.c, metadata-internals.h, object.c: execute module
11270         cctors when running on the 2 runtime if present (bug #80487).
11271
11272 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11273
11274         * icall.c: optimized InitializeArray() on bigendian.
11275
11276 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
11277
11278         * icall.c: fix for the broken ARM FPA double format.
11279
11280 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
11281
11282         * icall.c: handle endian issues for r4 and r8 types, too, in
11283         the InitializeArray() icall.
11284
11285 2007-01-15  Miguel de Icaza  <miguel@novell.com>
11286
11287         * loader.c (mono_loader_error_prepare_exception): Clear the error
11288         once we have extracted the information from it, do this before we
11289         call into the JIT's class loading mechanisms.
11290
11291         * object.c (mono_class_create_runtime_vtable): Do not clear the
11292         loader error before calling mono_class_get_exception_for_failure
11293         as the loader error is needed inside
11294         mono_class_get_exception_for_failure to throw the error (thinko).
11295
11296         Fixes #80521
11297         
11298 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
11299
11300         * reflection.c: align fields rva data so it's faster to load at
11301         runtime.
11302
11303 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11304
11305         Prepare to simplify GenericMethod handling.
11306         * class-internals.h (mono_method_get_context): New accessor function.
11307         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
11308         rather than directly accessing '->context' field.
11309
11310         * class-internals.h (_MonoGenericParam.method): Move ...
11311         (_MonoGenericContainer): ... here.  Add into union with klass field.
11312         * class.c, icall.c, loader.c, metadata.c, reflection.c:
11313         Update to changes.
11314
11315 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
11316
11317         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
11318         the wrapper type enum and reduce relocations.
11319
11320 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11321
11322         * reflection.c (inflate_mono_method): Reuse method instantiation
11323         from the generic method, if available.
11324
11325 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11326
11327         * marshal.c (emit_marshal_variant): Fix conv_arg
11328         type in last commit, based on whether parameter is byref.
11329         
11330 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11331
11332         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
11333         marshalling.
11334         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
11335         MONO_TYPE_OBJECT back for VARIANT support.
11336
11337 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11338
11339         * marshal.c, marshal.h, icall-def.h: Implement 
11340         Marshal.ReAllocCoTaskMem.
11341
11342 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
11343
11344         * marshal.c: memory retention fixes: use the proper
11345         image cache for runtime_invoke method lookups.
11346
11347 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
11348
11349         * mempool.c: added code to help debug mempool allocations.
11350
11351 2007-01-11  Dick Porter  <dick@ximian.com>
11352
11353         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
11354         support (experimenting with faking it with IP_MTU_DISCOVER for
11355         systems that don't have IP_DONTFRAGMENT.)
11356         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
11357         icall.
11358
11359         * icall-def.h: new System.Net.Sockets.Disconnect icall.
11360
11361         * socket-io.h: Add new fields to MonoSocketAsyncResult
11362         corresponding to the new ones in Socket.cs.
11363
11364 2007-01-11  Raja R Harinath  <rharinath@novell.com>
11365
11366         Fix IronPython regression mentioned in #80249
11367         * metadata.c (do_mono_metadata_parse_generic_class): Clear
11368         'cached_context' field, since it may have been initialized as a
11369         side-effect of metadata parsing.
11370
11371         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
11372         (_MonoGenericClass.cached_class): Move here and rename from lone
11373         remaining field of ...
11374         (_MonoInflatedGenericClass): ... this.  Remove.
11375         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
11376         to changes.
11377
11378         Fix mcs/tests/test-128.cs regression.
11379         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
11380         2007-01-10 change below.
11381         [MONO_TYPE_OBJECT]: Recurse into array case.
11382
11383 2007-01-11  Raja R Harinath  <harinath@gmail.com>
11384
11385         * class-internals.h (mono_get_inflated_generic_class): Remove.
11386         * class.c (mono_get_inflated_generic_class): Remove.
11387         (mono_generic_class_get_class): Rename from
11388         mono_class_create_generic.
11389         (mono_class_from_mono_type) [GENERICINST]: Use it.
11390         * reflection.c, metadata.c: Update to changes.  Use
11391         'mono_class_from_mono_type'.
11392
11393 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
11394
11395         * reflection.c: use passed type when encoding an array element
11396         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
11397
11398 2007-01-09  Robert Jordan  <robertj@gmx.net>
11399
11400         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
11401         result arguments (someDelegate.EndInvoke (unrelatedAres)).
11402         Fixes bug #80392.
11403
11404 2007-01-09  Raja R Harinath  <rharinath@novell.com>
11405
11406         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
11407
11408         * object.c (set_value): Avoid aliasing between type->data.klass
11409         and type->data.generic_class.
11410
11411         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
11412
11413 2007-01-08  Raja R Harinath  <rharinath@novell.com>
11414
11415         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
11416         between type->data.klass and type->data.generic_class.
11417
11418 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
11419
11420         * marshal.c: In MS.NET, StringBuilder objects are not copied by
11421         value in out parameters.
11422
11423 2007-01-08  Raja R Harinath  <rharinath@novell.com>
11424
11425         Simplify invariant for MonoGenericClass::klass field.
11426         * class.c (mono_class_create_generic): Verify 'klass' is null.
11427         * metadata.c (do_mono_metadata_parse_generic_class): Don't
11428         initialize 'klass' field.
11429
11430 2007-01-05  Raja R Harinath  <rharinath@novell.com>
11431
11432         Ongoing work to avoid redundant data and simplify invariants.
11433         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
11434         'generic_class', and change type to a GenericInst.
11435         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
11436         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
11437
11438 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
11439
11440         * class.c : skip io-layer under PLATFORM_WIN32.
11441
11442 2007-01-03  Tor Lillqvist  <tml@novell.com>
11443
11444         Fix #80305: In a bundled executable, look in the bundled exe
11445         assembly to determine the runtime version. Add the possibility to
11446         bundle also the machine.config file.
11447         
11448         * assembly.c (mono_assembly_open_from_bundle): Make
11449         non-static. Allow being called even if we have no bundled
11450         assemblies, and return NULL right away in that case.
11451
11452         * domain-internals.h: Declare mono_assembly_open_from_bundle()
11453         here.
11454
11455         * domain.c (app_config_parse): Take an assembly exe file name as
11456         parameter instead of a config file name. Check for a bundled
11457         config file for that assembly by calling
11458         mono_config_string_for_assembly_file() (see below) before looking
11459         for one in the file system.
11460         (get_runtimes_from_exe): Corrsponding change to call of
11461         app_config_parse().
11462         (get_runtimes_from_exe): Check for bundled assembly exe file first
11463         by calling mono_assembly_open_from_bundle(). If no bundled
11464         assembly exe file is found, call mono_image_open() as before to
11465         look it up in the file system.
11466
11467         * mono-config.c: Add variable bundled_machinec_onfig.
11468         (mono_config_string_for_assembly_file): New function.
11469         (mono_config_for_assembly): Move code snippet that looks for a
11470         bundled assembly .config file into the above new function. Call
11471         it.
11472         (mono_register_machine_config, mono_get_machine_config): New
11473         functions to set and retrieve
11474
11475         * assembly.h: Declare mono_register_machine_config().
11476
11477         * mono-config.h: Declare mono_get_machine_config() and
11478         mono_config_string_for_assembly_file().
11479
11480         * icall.c: No declaration of environ necessary on Win32. It is
11481         declared (as a macro expanding to a function call) in stdlib.h.
11482         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
11483         New internal mono function. Returns the value of
11484         mono_get_machine_config() as a Mono string.
11485
11486         * icall-def.h: Add get_bundled_machine_config().
11487
11488 2007-01-04  Raja R Harinath  <rharinath@novell.com>
11489
11490         Remove redundant field
11491         * class-internals.h (_MonoGenericContext.container): Remove field.
11492         * loader.c (mono_method_get_signature_full): Don't parse a
11493         "container" for a signature parse when the signature is inflated
11494         immediately.
11495         (method_from_methodspec): Likewise, for a generic_inst.
11496         * class.c, metadata.c, reflection.c: Update to changes.
11497
11498 2006-01-04  Raja R Harinath  <rharinath@novell.com>
11499
11500         * class-internals.h (_MonoGenericClass): Rename 'context' field to
11501         'cached_context', and change semantics -- it starts off NULL, and
11502         is initialized on demand.
11503         * class.c (mono_generic_class_get_context): New accessor to
11504         replace 'context' field accesses.
11505         (mono_class_get_context): New helper.
11506         (*): Update to changes.
11507         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
11508
11509 2007-01-03  Miguel de Icaza  <miguel@novell.com>
11510
11511         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
11512         before the memcpy.   Fixes Marshal2 regression.
11513
11514 2007-01-02  Jb Evain  <jbevain@gmail.com>
11515
11516         * blob.h: add a MONO_TYPE_ENUM definition
11517         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
11518         fix the encoding of arrays of enums in custom attributes.
11519
11520         Fixes #79666.
11521
11522 2007-01-01  Miguel de Icaza  <miguel@novell.com>
11523
11524         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
11525         string is null terminated, but only cut the string short if it
11526         overflows the buffer.   
11527         
11528         (mono_string_to_byvalstr): Also fix this routine.   The code here
11529         was not properly terminating a string (it was only terminated
11530         because of the previous catch-all memset). 
11531
11532         I left the memset, because I do not know if applications expect
11533         the runtime to clear this region. 
11534
11535         Fixes #79944.
11536
11537         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
11538         Clear the error before returning to unmanaged code to prevent the
11539         runtime from being confused later on (fixes  80420).
11540         (ves_icall_type_from_name): Always call mono_loader_clear_error
11541         after parsing a type that could have failed.
11542         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
11543
11544         * loader.c (mono_loader_clear_error): Fix indentation.
11545
11546 2006-12-28  Martin Baulig  <martin@ximian.com>
11547
11548         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
11549
11550 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11551
11552         * reflection.c: patch from Rolf Bjarne Kvinge to fix
11553         getting a token for an EnumBuilder.
11554
11555 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
11556
11557         * reflection.c: be more careful in case resource generation
11558         fails to create the data array.
11559
11560 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11561
11562         * sgen-gc.c: write barrier for clone and fix unregister handles.
11563
11564 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11565
11566         * reflection.c: some fixes needed in the generics code for the moving GC.
11567
11568 2006-12-22  Robert Jordan  <robertj@gmx.net>
11569
11570         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
11571         account. Fixes bug #80299.
11572
11573 2006-12-21  Raja R Harinath  <rharinath@novell.com>
11574
11575         Fix WaitHandle usage in delegates.
11576         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
11577         * object.c (mono_wait_handle_new): Use the property set method to
11578         initialize the handle.
11579         (mono_wait_handle_get_handle): New.
11580         * threadpool.c (mono_async_invoke): Use it.
11581         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
11582         Likewise.
11583         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
11584
11585 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
11586
11587         * marshal.c (emit_marshal): Call emit_marshal_variant and
11588         emit_marshal_com_interface when applicable.
11589         (emit_marshal_variant, emit_marshal_com_interface): Add
11590         methods for this case and remove if's from emit_marshal_object.
11591         
11592 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
11593
11594         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
11595
11596 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
11597
11598         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
11599         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
11600         and GlobalFree on Windows. Remove FIXME.
11601
11602 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11603
11604         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
11605         implementation for managed objects.
11606
11607 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
11608
11609         * object.c: implemented code to be used for checking
11610         that no reference field overlaps with non-references.
11611
11612 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11613
11614         * threadpool.c: fix queue code to be compatible with the
11615         moving GC.
11616
11617 2006-12-18  Miguel de Icaza  <miguel@novell.com>
11618
11619         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
11620         in structures by throwing ArgumentNullException.
11621
11622         (emit_marshal_safehandle): Also when they are null parameters.
11623
11624         (emit_marshal_safehandle): Add support for ref
11625         SafeHandles parameters
11626
11627 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11628
11629         * profiler.c: updated to use the mono-dl API instead of
11630         gmodule.
11631
11632 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11633
11634         * profiler.c: updated to use the mono-dl dynamic loading
11635         API instead of gmodule.
11636
11637 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11638
11639         * profiler.c: use readlink, older versions of glib don't have
11640         g_file_read_link ().
11641
11642 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11643
11644         * profiler.c: try to detect the path to mono if libc fails to provide
11645         a useful name (bug #80286).
11646
11647 2006-12-16  Raja R Harinath  <rharinath@novell.com>
11648
11649         Fix #80242
11650         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
11651         instance, use the generic type definition instead.
11652         (ves_icall_Type_GetNestedTypes): Likewise.
11653         * class.c (mono_class_create_generic): Always set the
11654         nested_classes of a generic instance to NULL, even if the generic
11655         type definition has nested types.
11656
11657 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
11658
11659         * marshal.c (mono_string_from_bstr): Revert previous Windows change
11660         and fix on Linux.
11661         
11662 2006-12-15  Miguel de Icaza  <miguel@novell.com>
11663
11664         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
11665         my arguments were in the wrong order.   I also fixed the Windows
11666         version which seems to have had the same issue.
11667
11668         (mono_free_bstr): On Unix, this is g_free.
11669         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
11670         conversions (for the tests in corlib to pass).
11671
11672 2006-12-14  Miguel de Icaza  <miguel@novell.com>
11673
11674         * marshal.c (emit_ptr_to_object_conv): For now, ignore
11675         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
11676         exception if a ref SafeHandle in a struct has changed).
11677         
11678         (emit_struct_conv): Do not perform layout checks for classes
11679         derived from SafeHandle, as those are specially handled. 
11680
11681         (emit_object_to_ptr_conv): Add support for
11682         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
11683
11684         (emit_marshal_safehandle): Implement conversion of return values
11685         of safehandles (MARSHAL_ACTION_CONV_RESULT).
11686         
11687         * threads.c: WaitHandle now is compiled with two different handles
11688         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
11689         for 2.0.
11690         
11691         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
11692         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
11693         these routines to cope with both kinds of fields.
11694
11695 2006-12-12  Miguel de Icaza  <miguel@novell.com>
11696
11697         * metadata.c (mono_type_to_unmanaged): Handle the case where
11698         type->data.klass is a SafeHandle, and in that case, return the
11699         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
11700         MONO_MARSHAL_CONV_SAFEHANDLE. 
11701
11702 2006-12-11  Miguel de Icaza  <miguel@novell.com>
11703
11704         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
11705         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
11706         calling emit_marshal_object.
11707
11708         (emit_marshal_safehandle): Implement marshalling of
11709         SafeHandle parameters (no ref support yet).
11710
11711         (MarshalAction): Document the defines as I implement
11712         them for SafeHandle.
11713
11714         (emit_marshal_object): indentation police.
11715
11716         * class-internals.h: Define MonoSafeHandle.
11717         Add safehandle_class to MonoDefaults type.
11718
11719         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
11720         list of classes to check for fields. 
11721
11722         * domain.c (mono_init_internal): Add SafeHandle to the list of
11723         mono_defaults loaded.
11724
11725 2006-12-15  Raja R Harinath  <rharinath@novell.com>
11726
11727         Fix #80253
11728         * reflection.c (mono_reflection_bind_generic_parameters): If the
11729         generic type definition is a type builder, ensure that it is fully
11730         initialized before instantiating it.  Kill some dead code.
11731
11732 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11733
11734         * object.c: clear the loader_error () before loading
11735         more metadata stuff (bug #80258).
11736
11737 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
11738
11739         * icall.c, icall-defs.h: type modifiers icalls for
11740         parameters and properties.
11741
11742 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
11743
11744         * object.c, icall.c: fixed warnings.
11745
11746 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11747
11748         * marshal.c: fixed a couple of leaks and coding style in a few places.
11749
11750 2006-12-08  Dick Porter  <dick@ximian.com>
11751
11752         * process.c: Cope with NULL ProcessStartInfo arguments on windows
11753         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
11754         80173.
11755
11756 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11757
11758         * process.c: ProcessStartInfo may have only filename set and
11759         arguments can be NULL.
11760
11761 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11762
11763         * icall.c: fix leak found by Robert Jordan.
11764
11765 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11766
11767         * marshal.c, marshal.h: generate managed method to access an element
11768         of a multi-dimensional array.
11769
11770 2006-11-30  Paolo Molaro (lupus@ximian.com)
11771
11772         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
11773
11774 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11775
11776         * icall.c: back out GetFields () fix until the serialization code is
11777         fixed to not depend on the incorrect behaviour.
11778
11779 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11780
11781         * profiler.c: provide defaults if none are set.
11782
11783 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11784
11785         * Makefile.am, attrdefs.h: new public header file with
11786         constants for attributes for use by embedders.
11787
11788 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11789
11790         * icall.c: GetFields () fix for bug #80064.
11791
11792 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
11793
11794         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
11795         removed long unused icalls.
11796
11797 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
11798   
11799         * marshal.c: 
11800                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
11801                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
11802                 can be generated without a delegate class.
11803                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
11804         
11805         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
11806
11807 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11808
11809         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
11810         #80069.
11811
11812 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11813
11814         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
11815         icall-def.h: added icalls needed by System.GC.
11816
11817 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
11818
11819         * loader.c: ensure the class in catch clauses is handled
11820         correctly for generics methods (fixes bug#79980).
11821
11822 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
11823
11824         * monitor.h, monitor.c: added mono_locks_dump () function
11825         to help debug deadlocks involving managed locks.
11826
11827 2006-11-13  Dick Porter  <dick@ximian.com>
11828
11829         * file-io.c (get_file_attributes): If the file is a symlink try
11830         and get the stat data for the target, but also add the
11831         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
11832         the specs for the windows symlink support, but will probably have
11833         to be reworked when I have test data from a vista machine.  Fixes
11834         bug 79887.
11835
11836 2006-11-13  Dick Porter  <dick@ximian.com>
11837
11838         * gc.c (mono_domain_finalize): 
11839         * marshal.c (mono_delegate_begin_invoke): 
11840         * threadpool.c (socket_io_init, mono_thread_pool_init)
11841         (mono_thread_pool_finish): 
11842         * monitor.c (mono_monitor_try_enter_internal): 
11843         * threads.c (mono_thread_resume, mono_thread_init)
11844         (mono_thread_suspend_all_other_threads)
11845         (mono_thread_execute_interruption): 
11846         * appdomain.c (mono_domain_unload): Check for NULL error returns
11847         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
11848         75733.
11849
11850 2006-11-11  Miguel de Icaza  <miguel@novell.com>
11851
11852         * process.c
11853         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
11854         Only close the handle if the value of the handle is not
11855         INVALID_HANDLE_VALUE.  This just makes the process a bit more
11856         robust.
11857
11858         Improvement for #75733, so that we do not run into this problem. 
11859
11860         
11861         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
11862         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
11863         internal variables.  Fixes #79462 
11864         
11865
11866 2006-11-09  Dick Porter  <dick@ximian.com>
11867
11868         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
11869         Use poll() not select().  Fixes bug 79397.
11870
11871 2006-11-09  Raja R Harinath  <rharinath@novell.com>
11872
11873         Fix #79872
11874         * assembly.c (mono_assembly_load_from_full): Check that the given
11875         image has an assembly manifest.
11876
11877 2006-11-09  Ankit Jain  <jankit@novell.com>
11878
11879         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
11880         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
11881         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
11882
11883 2006-11-07  Dick Porter  <dick@ximian.com>
11884
11885         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
11886         Put the old resolver behaviour back for pre-2.0 profiles.
11887
11888 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11889
11890         * threadpool.c: precise GC and locking fixes.
11891
11892 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11893
11894         * class.c: don't load types that have an explicit unaligned
11895         managed reference. Provide better info in the TypeLoad exception.
11896         Part of the fix for bug #79744.
11897         * object.c: use the correct check for class type load issues.
11898
11899 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11900
11901         * class.c: enforce alignment of fields with managed references
11902         even when Pack=1 is forced by the user (bug #77788).
11903
11904 2006-11-03  Dick Porter  <dick@ximian.com>
11905
11906         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
11907         If the address reverse lookup fails, return it as the hostname
11908         anyway.  Fixes bug 79721.
11909
11910 2006-11-03  Dick Porter  <dick@ximian.com>
11911
11912         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
11913         Fix build on Windows.
11914
11915 2006-11-02  Dick Porter  <dick@ximian.com>
11916
11917         * icall-def.h: 
11918         * object-internals.h: 
11919         * exception.c (mono_get_exception_thread_interrupted): 
11920         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
11921         Fixes bug 74525.
11922
11923         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
11924         Check for pending Thread.Interrupt.
11925
11926 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
11927         * loader.c: Fixed bug 79684.
11928
11929 2006-10-27  Dick Porter  <dick@ximian.com>
11930
11931         * file-io.c (get_file_attributes): Force symlinks to directories
11932         to be returned as a regular file.  Fixes bug 79733.
11933 2006-10-26  Dick Porter  <dick@ximian.com>
11934
11935         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
11936         CreateFile to open a directory then we need to set the
11937         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
11938
11939 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
11940
11941         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
11942         friends.
11943
11944 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
11945
11946         * sgengc.c: small cleanup of timer code.
11947
11948 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
11949
11950         * sgen-gc.c: fix some warnings and start adding support for
11951         complete object removal on domain unload.
11952
11953 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
11954
11955         * assembly.c: build_assembly_name should not consider a version
11956         number without build or revision number invalid. Fixes bug #79715.
11957
11958 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
11959
11960         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
11961         call kernel32 function OutputDebugString directly.
11962         
11963         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
11964         
11965 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
11966
11967         * reflection.c: small cleanup, using a function to insert a MonoString
11968         in the string heap.
11969
11970 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
11971
11972         * reflection.c: moving GC fixes.
11973
11974 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
11975
11976         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
11977         all the objects with finalizers belonging to an unloading appdomain.
11978
11979 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
11980
11981         * sgen-gc.c: added ability to allocate even when the nursery is fully
11982         pinned and fixed a couple of bugs.
11983
11984 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
11985
11986         * threads.h: Revert the last change for now.
11987
11988         * threads.h (mono_thread_get_pending_exception): Rename this to
11989         mono_thread_get_undeniable_exception ().
11990
11991 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
11992
11993         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
11994         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
11995         when fname does not refer to valid assembly. This result in a more
11996         meaningful error message.
11997         * exception.c: added mono_get_exception_bad_image_format2 which 
11998         constructs a BadImageFormatException using the ctor taking a custom
11999         message and the file name. Passing in a NULL msg results in a default
12000         message.
12001         * exception.h: define mono_get_exception_bad_image_format2 function.
12002         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
12003         when file name pointed to an invalid IL image. Use 
12004         mono_get_exception_file_not_found2 to construct FileNotFoundException,
12005         as this results in a more meaningful error message.
12006
12007 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
12008
12009         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
12010         #79465.
12011
12012 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
12013
12014         * metadata.c (mono_type_size): Change the align parameter to guint32 for
12015         consistency with the other _size functions.
12016         (mono_type_stack_size): Ditto.
12017
12018         * class.c object.c icall.c: Fix warnings caused by the above change.
12019
12020         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
12021
12022         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
12023
12024         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
12025
12026 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
12027
12028         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
12029         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
12030         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
12031         threadpool.h, threads-types.h: mark more internal functions.
12032
12033 2006-10-11  Dick Porter  <dick@ximian.com>
12034
12035         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
12036         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
12037         reproduce the bug even before applying the fix.)
12038
12039 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
12040
12041         * reflection.c: allow retrieving attributes for arguments in generic
12042         methods (bug #79241).
12043
12044 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
12045
12046         * debug-mono-symfile.c: properly check fopen () result (found by
12047         coverity).
12048
12049 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
12050
12051         * reflection.c: make error message clearer and fixed two
12052         issuelets found by Coverity.
12053
12054 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
12055
12056         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
12057
12058 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
12059
12060         * object-internals.h, gc-internal.h, profiler-private.h:
12061         mark internal functions.
12062
12063 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
12064
12065         * reflection.c: put data in the text section.
12066         * icall.c: recognize more types in type_from_typename ().
12067         * process.c, marshal.c: added some GC FIXMEs.
12068
12069 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
12070
12071         * loader.c: check for NULL before initializing.
12072
12073 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
12074
12075         * gc.c (finalizer_thread): Use a non-alertable wait here.
12076
12077         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
12078         until the correct solution is found.
12079
12080 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
12081
12082         * reflection.c (mono_module_get_object): Avoid an assert when operating on
12083         modules with no metadata. Fixes #79596.
12084
12085         * image.c (load_metadata_ptrs): Put back the error message when
12086         the #- heap is encountered since the support is not complete yet.
12087
12088 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
12089
12090         * gc.c: do not allow the user to SuppressFinalize () a
12091         delegate because it would leak the trampoline if present.
12092
12093 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
12094
12095         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
12096         PropertyPtr table.
12097
12098 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
12099
12100         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
12101
12102         * metadata.c (mono_metadata_get_param_attrs): Ditto.
12103
12104         * row-indexes.h: Add definitions for *Ptr tables.
12105
12106         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
12107
12108         * metadata.c (mono_metadata_translate_token_index): New helper function to
12109         translate table indexes used in uncompressed metadata.
12110         (mono_metadata_decode_table_row): Ditto.
12111         (mono_metadata_decode_table_row_col): Ditto.
12112
12113         * metadata.c: Add table schema for *Ptr tables.
12114
12115         * class.c loader.c: Use the new helper function to access the affected metadata
12116         tables.
12117         
12118         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
12119         #38532.
12120         
12121 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
12122
12123         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
12124         sequences which can be unbounded in size. Fixes #79583.
12125
12126 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
12127
12128         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
12129         static initialization.
12130
12131         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
12132
12133         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
12134
12135         * domain.c (mono_domain_free): Free up type_init_exception_hash.
12136
12137         * object.c (mono_runtime_class_init): Implement correct semantics when a static
12138         ctor fails, i.e. throw the same exception on subsequent accesses.
12139         
12140 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
12141
12142         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
12143         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
12144         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
12145         Handle marshalling of interfaces and VARIANTs contained in structs.
12146         
12147         Code is contributed under MIT/X11 license.
12148         
12149 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
12150
12151         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
12152         
12153         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
12154         mempool.
12155
12156 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12157
12158         * console-io.c: ignore previous SIGINT handler.
12159
12160 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
12161
12162         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
12163         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
12164         #79460, #79461, #79485.
12165
12166         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
12167
12168         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
12169         #79217.
12170
12171 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
12172
12173         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
12174         could be generated from it.
12175
12176 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
12177
12178         * rand.c: fix read loop to correctly handle EINTR.
12179
12180 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
12181
12182         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
12183         internal calls are defined to keep methods closer to the declaring
12184         type and allow a significant reduction in runtime relocations and
12185         memory usage.
12186
12187 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
12188
12189         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
12190         exception message to have FileNotFoundException use the default
12191         assembly load error message. Fixes bug #79426.
12192         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
12193
12194 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12195
12196         * threadpool.c: (start_thread_or_queue) use the root domain when
12197         creating the thread instead of the async object one.
12198
12199 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
12200
12201         * class.c, object.c, class-internals.h, reflection.c:
12202         for arrays, store element_size inside MonoClass (speedup
12203         for array object creation).
12204
12205 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
12206
12207         * icall.c: fixed CodeBase to use the file name and not the module
12208         name (bug #79365).
12209
12210 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
12211
12212         * mono-debug.c, mono-debug.h: export find_method as
12213         mono_debug_find_method ().
12214
12215 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
12216
12217         * debug-helpers.c, class-internals.h: added a few functions useful
12218         when debugging under gdb.
12219
12220 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12221
12222         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
12223         characters that need special handling.
12224
12225 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
12226
12227         * mono-config.c: make the os/cpu specification more flexible,
12228         allowing lists and negation.
12229
12230 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
12231
12232         * marshal.c: COM Interop fixes. Handle case where method->klass.
12233         is interface. Handle BSTR/MonoString when null. Use CDECL as 
12234         calling convention on non-windows platforms. This is for
12235         compatibility with XPCOM and MainWin COM.
12236         
12237         Code is contributed under MIT/X11 license.
12238         
12239
12240 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
12241
12242         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
12243         correctly. Fixes #79217.
12244
12245         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
12246
12247 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
12248
12249         * mono-config.c: allow both an os and cpu attribute for dllmap
12250         and dllentry elemnets to enable a single config file to be used
12251         for multiple architectures.
12252
12253 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
12254
12255         * loader.c: MonoLoaderError was cleared too soon on load failure.
12256         Fixes bug #79424.
12257
12258 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
12259
12260         * icall.c: use the defining class vtable when accessing a
12261         static field, not a pobblibly derived class.
12262
12263 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
12264
12265         * icall.c string-icalls.c: Remove references to unicode.h.
12266
12267         * unicode.h unicode.c Makefile.am: Remove these unused source files.
12268
12269         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
12270
12271         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
12272         indicating the image where custom marshaller types should be looked up.
12273         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
12274         custom marshallers, instead of corlib. Fixes #79425.
12275
12276 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
12277
12278         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
12279
12280 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
12281
12282         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
12283         Implement Environment.ProcessorCount.
12284         
12285         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
12286         Implement Environment.ProcessorCount.
12287         
12288         * icall.c: 
12289         Add Environment.ProcessorCount icall.
12290         
12291         Patch by Jason McFall.
12292
12293 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12294
12295         * assembly.c: don't append .exe/.dll when the filename already contains
12296         one of those extensions.
12297
12298 2006-09-12  Martin Baulig  <martin@ximian.com>
12299
12300         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
12301         to array interfaces.
12302
12303 2006-09-11  Martin Baulig  <martin@ximian.com>
12304
12305         * reflection.c (mono_image_build_metadata): Create the
12306         MethodImpl's after emitting all types and methods, so we don't
12307         need another fixup pass for them.
12308
12309 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
12310
12311         * class.c (mono_class_from_name_case): Fix regression introduced by the last
12312         change.
12313
12314 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
12315
12316         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
12317         unload.
12318
12319 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
12320
12321         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
12322         args is not set. Fixes #78926.
12323
12324 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
12325
12326         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
12327
12328         * image.c (load_class_names): Move this to class.c, and rename it to 
12329         'mono_image_init_name_cache'.
12330         (load_modules): Fix a warning.
12331
12332         * class.c icall.c image.c: Initialize image->name_cache lazily.
12333
12334         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
12335         on its name using information in the AOT file.
12336
12337         * class.c (mono_class_from_name): Use the new hook function.
12338
12339 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
12340
12341         * reflection.c (mono_param_get_objects): Handle enum default parameter values
12342         correctly.
12343
12344         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
12345         Fixes #79289.
12346         
12347 2006-09-06  Martin Baulig  <martin@ximian.com>
12348
12349         * icall.c (mono_lookup_internal_call): Small fix.
12350
12351 2006-09-05  Raja R Harinath  <rharinath@novell.com>
12352
12353         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
12354         double g_free.
12355
12356 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
12357
12358         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
12359         when --debug is specified.
12360
12361 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
12362
12363         * class.c (setup_generic_array_ifaces): Fix a warning.
12364
12365 2006-09-04  Miguel de Icaza  <miguel@novell.com>
12366
12367         * Temporarily remove the patch to assemly.c that checks the
12368         assembly versions as it breaks our gacutil.
12369
12370 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
12371
12372         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
12373
12374         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
12375         a net 1.0 runtime.
12376
12377         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
12378         created using the default ctor. Fixes #79152.
12379         (mono_string_builder_to_utf16): Ditto.
12380
12381 2006-09-01  Martin Baulig  <martin@ximian.com>
12382
12383         Fix handling of the generic array interfaces.
12384
12385         * class-internals.h
12386         (MonoDefaults): Removed `generic_array_class' and added
12387         `generic_ilist' class.
12388
12389         * class.c
12390         (mono_bounded_array_class_get): Add the new generic array interfaces.
12391         (setup_generic_array_ifaces): New static method; create vtable
12392         entries for each method in the generic array interfaces.
12393
12394         * metadata.c
12395         (select_container): Allow "parent-less" generic methods.
12396
12397         * marshal.c
12398         (mono_marshal_get_generic_array_helper): New public method.
12399
12400         * icall.c
12401         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
12402         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
12403         moved the interncall into System.Array.
12404
12405 2006-09-01  Raja R Harinath  <rharinath@novell.com>
12406
12407         A few more cases of avoiding work on types with ->byref set.
12408         Has the real fix for #79238
12409         * icall.c (is_generic_parameter): New helper.
12410         (ves_icall_Type_GetGenericParameterPosition): Use it.
12411         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
12412         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
12413         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
12414         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
12415         reference types.
12416         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
12417         reference types.
12418         (ves_icall_Type_get_IsGenericInstance): Likewise.
12419         (ves_icall_Type_get_IsGenericType): Likewise.
12420
12421 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
12422
12423         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
12424         class if possible.
12425
12426         * mempool.h (mono_mempool_get_allocated): New helper function.
12427
12428         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
12429         change.
12430
12431         * mempool.c: Fix warnings and the calculation of stats.
12432
12433         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
12434
12435         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
12436
12437         * loader.c (mono_get_method_from_token): Update method_count stat.
12438
12439         * class-internals.h (MonoStats): Add some stats.
12440
12441 2006-08-31 Robert Jordan  <robertj@gmx.net>
12442
12443         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
12444         with managed variants.
12445         All code is contributed under the MIT/X11 license.
12446         
12447 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
12448
12449         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
12450         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
12451
12452         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
12453
12454         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
12455         with cycles in classes.
12456
12457         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
12458
12459         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
12460         missing a [MarshalAs] directive. Fixes #79203.
12461
12462         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
12463         klass->marshal_info. Fixes #79217.
12464
12465 2006-08-30  Martin Baulig  <martin@ximian.com>
12466
12467         Committing a patch from Joachim Ante <joe@otee.dk>:
12468         Add support for binary data symbol stores.
12469
12470         * debug-mono-symfile.c
12471         (mono_debug_open_mono_symbol_file): Renamed into
12472         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
12473         arguments.
12474
12475         * mono-debug.c
12476         (mono_debug_open_image): Added `raw_contents' and `size' args.
12477         (mono_debug_init_2_memory): New public function.
12478
12479 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
12480
12481         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
12482
12483 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12484
12485         * appdomain.c: implement support for ShadowCopyFiles.
12486
12487 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
12488
12489         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
12490         when value is NULL (and should remove CID #51).
12491
12492 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12493
12494         * image.c: moved 2 functions to ../utils.
12495
12496 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
12497
12498         * gc.c: cope with the target object of a GC handle being NULL
12499         (bug #78877).
12500
12501 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
12502
12503         * class.c: recursively check parent's explicit implementations
12504         of interface methods (fixes bug #79125).
12505
12506 2006-08-19  Miguel de Icaza  <miguel@novell.com>
12507
12508         * filewatcher.c: Avoid warnings when building, do not redefine
12509         constants that are defined.
12510
12511         Remove warnings.
12512
12513 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12514
12515         * image.c: don't fail when the link points to an absolute path.
12516
12517 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
12518
12519         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
12520         Fix CID #3.
12521
12522 2006-08-17  Miguel de Icaza  <miguel@novell.com>
12523
12524         * image.c (full_path): A new method used to obtain the actual path
12525         of an assembly even in the presence of symbolic links.  
12526
12527         This is necessary for the case where we are running a binary that
12528         has been GACed, but we are using the "published" path name
12529         ($prefix/mono/1.0/blah.exe) which happens to point to the real
12530         file in the GAC.
12531
12532         This was the source of the failure for the `xsp' command with the
12533         recent AppDomain changes, as far as the runtime was concerned,
12534         there were two different assemblies: $prefix/mono/1.0/blah.exe and
12535         $prefix/mono/gac/blah/version/blah.exe.
12536
12537         (do_mono_image_open): use full path
12538
12539 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12540
12541         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
12542
12543 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
12544
12545         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
12546         domain_id is supplied. Fix CID #241 and corlib's unit tests.
12547
12548 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12549
12550         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
12551         small structures. Fixes #78990.
12552
12553 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12554
12555         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
12556
12557         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
12558
12559 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12560
12561         * appdomain.c:
12562         * marshal.c: don't load all the assemblies from a domain into newly
12563         created ones. The new domains might have different rules and load
12564         assemblies from different locations. Fixes bug #76757.
12565
12566         Patch by Lluis. Conflicts resolved by Brian Crowell.
12567
12568 2006-08-16  Alp Toker  <alp@atoker.com>
12569
12570         * socket-io.c: First half of the fix for #79084.
12571         Set sa_size to the length of the content, not that of the struct.
12572         Don't add NULL suffix to the content, this should be done in
12573         managed code if needed.
12574
12575 2006-08-14  Raja R Harinath  <rharinath@novell.com>
12576
12577         Fix part of #79012
12578         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
12579         mono_metadata_parse_type returns NULL.
12580
12581 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
12582
12583         * normalization-tables.h : new file for string normalization data.
12584         * locales.c, locales.h, icall.c :
12585           added load_normalization_resource() for string normalization,
12586           and icall as well.
12587         * Makefile.am : added normalization-tables.h to the sources.
12588
12589 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
12590
12591         * marshal.c: Add more helper functions to reduce code duplication and use them
12592         everywhere.
12593
12594 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
12595
12596         * marshal.c: Fix non-x86 stdcall warnings.
12597         
12598         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
12599         them everywhere.
12600
12601 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
12602
12603         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
12604         type check on multi-dimensional arrays. Fixes #79000.
12605
12606 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
12607
12608         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
12609         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
12610         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
12611         * class-internals.h: add is_com_object to class structure.
12612         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
12613         null checks to COM object marshalling. Fix .ctor call on RCW.
12614         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
12615         
12616         All code is contributed under the MIT/X11 license.
12617
12618 2006-08-09  Dick Porter  <dick@ximian.com>
12619
12620         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
12621         racing mono_monitor_allocator_lock() somewhere, so don't delete
12622         the critical section for now.  Found by running and exiting
12623         monodevelop.
12624
12625 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
12626
12627         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
12628         (ves_icall_System_ComObject_FindInterface): Ditto.
12629         (ves_icall_System_ComObject_CacheInterface): Ditto.
12630
12631         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
12632         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
12633
12634 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12635
12636         * threadpool.c: treat pipes from process asynchronous reads as sockets
12637         when reading from them, so we get select/poll or epoll to wait for
12638         data.
12639
12640 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
12641
12642         * loader.c: Fix a typo (CID #233) in the null check.
12643
12644 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
12645
12646         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
12647         Hopefully fixes #78949.
12648         
12649         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
12650         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
12651         bytes. Fixes #78972.
12652
12653 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12654
12655         * filewatcher.c: we need to set errno here.
12656
12657 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12658
12659         * filewatcher.c: let Win32Exception get the error value.
12660
12661 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12662
12663         * filewatcher.c: translate errno into win32 errors for Win32Exception
12664         to know what happened.
12665
12666 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
12667
12668         * threadpool.c: Fix more warnings.
12669
12670         * assembly.c (search_loaded): Fix warnings.
12671
12672         * threadpool.c (mono_thread_pool_finish): Fix warnings.
12673         (mono_async_invoke): Ditto.
12674
12675 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
12676
12677         * object.c (mono_remote_class_vtable): Need to create proxy vtable
12678         entries for __ComObject type in addition to ComImport types.
12679         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
12680         about hash table.
12681         
12682         All code is contributed under the MIT/X11 license.
12683
12684 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
12685
12686         * image.c: avoid tentative loading of modulerefs that contain
12687         no metadata (P/Invoke library names).
12688
12689 2006-07-28  Dick Porter  <dick@ximian.com>
12690
12691         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
12692         mono_loader_lock() somewhere, so don't delete the critical section
12693         for now.  Found by running and exiting monodevelop.
12694
12695 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12696
12697         * filewatcher.c: define the inotify syscalls when we're building on
12698         linux and have sys/syscall.h. The build system might not have support
12699         for inotify but the target system might have it.
12700
12701 2006-07-26  Miguel de Icaza  <miguel@novell.com>
12702
12703         * domain.c: Documentation updates.
12704
12705         * loader.c (mono_free_method): Do not release the method
12706         information if we are being profiled, as profilers will use this
12707         information at shut down to present some data to the user.
12708
12709         This is needed so that the profiler does not crash, as the
12710         profiler tends to keep MonoMethods around, and they might become
12711         invalid if we free these.
12712
12713         (mono_get_method_constrained): Return the original CIL stream
12714         method as well, so verification can be performed against it.
12715
12716 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12717
12718         * filewatcher.[ch]: support for inotify file system watcher.
12719         * icall.c: add new internal calls for the inotify file system watcher.
12720
12721 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12722
12723         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
12724         #78888.
12725
12726 2006-07-20  Dick Porter  <dick@ximian.com>
12727
12728         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
12729         warning.
12730
12731 2006-07-20  Dick Porter  <dick@ximian.com>
12732
12733         * threads.c (start_wrapper): Do the thread cleanup while we still
12734         hold a reference to its object.  Fixes bug 78123.
12735
12736 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
12737
12738         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
12739         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
12740           "managed-to-managed".
12741         * icall.c: Redirect string constructors that take sbyte* to
12742           ves_icall_System_String_ctor_RedirectToCreateString.
12743         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
12744           to CreateString () methods with matching signature.
12745         * reflection.c: Use original security informations for
12746           MONO_WRAPPER_MANAGED_TO_MANAGED.
12747         * security-manager.c: Use original security informations for
12748           MONO_WRAPPER_MANAGED_TO_MANAGED.
12749         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
12750           that is a placeholder and only its address should be used.
12751         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
12752           that is a placeholder and only its address should be used.
12753
12754 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
12755
12756         Begin implementing COM Interop.
12757         * appdomain.c: Increment corlib version.
12758         * class.c: Set ComImport classes' parent to __ComObject.
12759         * loader.c: Mark cominterop methods as such.
12760         * domain.c: Add __ComObject class to MonoDefaults structure.
12761         * image.c: Add 2 hashtables to the image for COM Interop related methods
12762         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
12763         using the mempool allocator
12764         
12765         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
12766         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
12767         declaration for mono_metadata_type_dup_mp.
12768         
12769         * debug-helpers.c: Added strings for two additional wrapper types
12770         * object.c: Create proxy objects for ComImport classes
12771         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
12772         and added __ComObject class to MonoDefaults structure.
12773         
12774         * object-internals.h: Finish MonoRealProxy definition, and add definition of
12775         MonoComInteropProxy and MonoComObject.
12776         
12777         * marshal.c: Added support for COM Interop
12778         (signature_cominterop): Converts managed signature to corresponding
12779         unmanaged COM signature.
12780         (cominterop_get_function_pointer): gets unmanaged function pointer via
12781         COM object vtable
12782         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
12783         (cominterop_get_method_interface): returns interface type that method is defined on
12784         (mono_mb_emit_cominterop_call): emits native call to function pointer
12785         gotten from vtable
12786         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
12787         that matches signature of unmanaged function.
12788         (cominterop_get_native_wrapper): wrapper around adjusted method call.
12789         (cominterop_get_invoke): forwards call from proxy to __ComObject
12790         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
12791         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
12792         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
12793         
12794         * marshal.h: Added Marshal icall declarations.
12795         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
12796         so we can access them in finalizer
12797         
12798 2006-07-14  Dick Porter  <dick@ximian.com>
12799
12800         * object.c (mono_type_initialization_cleanup): Fix a race
12801         condition by temporarily commenting out the critical section
12802         deletion.
12803
12804 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
12805
12806         * reflection.c (create_custom_attr): Fix some warnings.
12807         (create_custom_attr_data): Ditto.
12808         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
12809         types. Fixes #78855.
12810
12811 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
12812
12813         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
12814
12815         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
12816
12817 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
12818
12819         * reflection.c (resolve_object): Add support for DynamicMethod.
12820
12821         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
12822         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
12823
12824 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
12825
12826         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
12827         don't leak GPtrArray's pdata has we have no use (nor free) for it.
12828
12829 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
12830
12831         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
12832         Fixes #77888.
12833
12834 2006-06-30  Raja R Harinath  <rharinath@novell.com>
12835
12836         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
12837         slightly: remove a shadow local variable.
12838
12839 2006-06-29  Raja R Harinath  <rharinath@novell.com>
12840
12841         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
12842         definition that introduces the virtual function slot.
12843         Also fix Coverity #105.
12844
12845 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
12846
12847         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
12848         for dynamic assemblies. Fixes #78724.
12849
12850 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
12851
12852         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
12853         Fixes #78722.
12854
12855 2006-06-21  Martin Baulig  <martin@ximian.com>
12856
12857         * reflection.c
12858         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
12859         fixes #76484.
12860
12861 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
12862
12863         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
12864
12865 2006-06-20  Raja R Harinath  <rharinath@novell.com>
12866
12867         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
12868         nor TYPEREFs.
12869         * class.c (mono_class_create_from_typespec): Add 'context' argument.
12870         Inflate result if necessary.
12871         (mono_class_get_full): Remove old version.  Rename from
12872         'mono_class_get' and add 'context' argument.  Pass it to
12873         ..._create_from_typespec.
12874         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
12875         (mono_ldtoken): Revert change below.
12876
12877 2006-06-20  Martin Baulig  <martin@ximian.com>
12878
12879         * class.c (mono_ldtoken): Don't pass the generic context to
12880         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
12881
12882 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
12883
12884         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
12885         and later freeing it. Fixes #78638.
12886
12887 2006-06-15  Miguel de Icaza  <miguel@novell.com>
12888
12889         * icall.c (mono_class_get_throw): Revert over-zealous error
12890         throwing, the caller for mono_class_get_throw will cope with
12891         errors when classes are not properly initialized already.
12892
12893         The code still copes with loader exceptions though.
12894
12895         Fixes the regression in reftype1 and reftype3 from the CAS tests.
12896         
12897 2006-06-14  Miguel de Icaza  <miguel@novell.com>
12898
12899         Fixes the `make run1' version of RuntimeAbort (to be commited,
12900         source is in Bugzilla).
12901         
12902         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
12903         FALSE on class loading failure instead of returning true.
12904
12905         * class.c (mono_class_create_from_typedef): It is possible for
12906         mono_metadata_interfaces_from_typedef_full to fail if a class is
12907         not found, cope with this.
12908         
12909
12910 2006-06-14  Dick Porter  <dick@ximian.com>
12911
12912         * socket-io.c: 
12913         * process.c: Fix a bunch of signed/unsigned warnings from gcc
12914         4.1.1
12915
12916 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
12917
12918         * culture-info-table.h : oops, forgot to make it nsync with r61548.
12919
12920 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12921
12922         * icall.c: Another fix for building mono in Visual Studio.
12923
12924 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12925
12926         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
12927         
12928 2006-06-09  Martin Baulig  <martin@ximian.com>
12929
12930         * debug-mono-symfile.c: Put this back and really fix it this
12931         time. Sorry for all the trouble.
12932
12933 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
12934
12935         * icall.c (mono_class_get_throw): Fix a warning.
12936         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
12937         ReflectionTypeLoadException if needed. Fixes #78606.
12938
12939         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
12940         (mono_class_init): Ditto.
12941
12942         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
12943         ref_only exceptions.
12944         (mono_loader_clear_error): Make this work even if there is no error.
12945
12946 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
12947
12948         * object-internals.h marshal.c marshal.h icall.c: Implement method 
12949         Marshal.GetComSlotForMethodInfo using internal call.
12950
12951 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
12952
12953         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
12954         a function for signalling it.
12955
12956         * class.c (mono_class_from_typeref): Use the new kind of loader error when
12957         a referenced assembly is not found.
12958
12959         * loader.c (mono_loader_error_prepare_exception): Add support for 
12960         LOADER_ERROR_ASSEMBLY. Fix formatting.
12961
12962 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
12963
12964         * domain.c appdomain.c class-internals.h marshal.c: Add support 
12965         for VARIANT marshalling on windows and increment corlib version
12966         since Variant struct was added.
12967
12968 2006-06-03  Miguel de Icaza  <miguel@novell.com>
12969
12970         * debug-mono-symfile.c: Revert Martin's previous patch which broke
12971         stack trace line information:
12972
12973         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
12974         (Martin) when looking up B which is between A and C, return A not C.
12975
12976         Bug is #78573.
12977
12978         Thanks to Alexander Olk for tracking this down.
12979
12980 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
12981
12982         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
12983         
12984         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
12985         avoid clobbering its value.
12986         (mono_string_to_lpstr): Fix a warning on windows.
12987
12988 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
12989
12990         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
12991
12992         * reflection.c loader.c: Removed references to 'dummy' flag.
12993
12994         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
12995
12996         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
12997         it gets GC tracking.
12998
12999         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
13000         GC tracking.
13001         
13002         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
13003
13004         * marshal.c threadpool.c: Update callers of mono_async_result_new.
13005
13006         * appdomain.c: Bump corlib version.
13007
13008 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
13009
13010         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
13011         CEE_STIND_REF when working with object references.
13012
13013 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
13014
13015         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
13016         Fixes #78539.
13017
13018 2006-05-30  Miguel de Icaza  <miguel@novell.com>
13019
13020         * loader.c (method_from_memberref): Fix argument value for
13021         mono_loader_set_error_method_load (I was passing the MonoClass
13022         instead of the class name char *).
13023
13024 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
13025
13026         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
13027         CEE_STIND_REF when working with object references.
13028
13029 2006-05-30  Martin Baulig  <martin@ximian.com>
13030
13031         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
13032         mono_method_full_name() change and replace the ':' with a '.'
13033         here.
13034
13035 2006-05-30  Martin Baulig  <martin@ximian.com>
13036
13037         * debug-mono-symfile.c
13038         (mono_debug_symfile_lookup_location): Fix the algorithm:
13039         when looking up B which is between A and C, return A not C.
13040
13041 2006-05-29  Martin Baulig  <martin@ximian.com>
13042
13043         * mono-debug.h
13044         (MonoDebugMethodInfo): Make the typedef public.
13045         (MonoDebugSourceLocation): New public struct.
13046
13047         * mono-debug.c
13048         (mono_debug_source_location_from_address): Removed.
13049         (mono_debug_source_location_from_il_offset): Removed.
13050         (mono_debug_il_offset_from_address): Removed.
13051         (mono_debug_address_from_il_offset): Removed.
13052         (mono_debug_lookup_method): New public function.
13053         (mono_debug_lookup_source_location): New public function; replaces
13054         the old mono_debug_source_location_from_*() functions; see the
13055         inline documentation.
13056         (mono_debug_free_source_location): New public function.
13057         (mono_debug_print_stack_frame): New public function; see the
13058         inline documentation.
13059
13060         * debug-mono-symfile.c
13061         (mono_debug_find_source_location): Renamed into
13062         mono_debug_symfile_lookup_location(); only take a
13063         `MonoDebugMethodInfo *' and an `offset' argument; added inline
13064         documentation.
13065         (mono_debug_find_method): Renamed into
13066         mono_debug_symfile_lookup_method().
13067
13068 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
13069
13070         * assembly.c (mono_assembly_open_full): Dont overwrite the status
13071         returned by mono_image_open_full ().
13072
13073         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
13074         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
13075         #78517.
13076
13077         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
13078         #78518.
13079
13080 2006-05-27  Miguel de Icaza  <miguel@novell.com>
13081
13082         * class.c (mono_class_from_typeref): handle missing images
13083         earlier, deals with bug #78418.   Refactor code; 
13084
13085         Fix a warning introduced in my previous commit (some stale code
13086         from before I revisited my patch).
13087
13088         * class.c (mono_class_create_from_typedef): On failure, remove the
13089         class from the MonoImage->class_cache as the class is not
13090         initialized;   Fixes the leak pointed out by Paolo.
13091
13092 2006-05-25  Dick Porter  <dick@ximian.com>
13093
13094         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
13095         DeleteCriticalSections until I figure out which one may still be
13096         sometimes locked when mono_thread_cleanup is called.
13097
13098 2006-05-24  Dick Porter  <dick@ximian.com>
13099
13100         * threads.c (mono_thread_cleanup): Move the threading cleanup out
13101         of mono_thread_manage and back into its own function, so it can be
13102         called after the finalizer thread has finished.
13103
13104         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
13105
13106 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
13107
13108         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
13109         Fixes #78495.
13110
13111         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
13112         with non-blittable elements.
13113         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
13114
13115 2006-05-24  Martin Baulig  <martin@ximian.com>
13116
13117         * mono-debug-debugger.h (MonoDebuggerEvent): Added
13118         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
13119
13120         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
13121         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
13122         `mono_debugger_event_handler' to NULL.
13123
13124 2006-05-24  Martin Baulig  <martin@ximian.com>
13125
13126         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
13127
13128 2006-05-24  Martin Baulig  <martin@ximian.com>
13129
13130         * mono-debug-debugger.h
13131         (mono_debugger_create_notification_function): Added
13132         `MonoCodeManager *' argument.
13133
13134 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
13135
13136         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
13137
13138 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
13139
13140         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
13141         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
13142         implementation.
13143
13144 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
13145
13146         * icall.c: precise GC support: objects can't be stored in unmanaged
13147         memory anymore, even if they are kept alive by other references: since
13148         they can move the GC needs to be able to always find them.
13149
13150 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
13151
13152         * object.c: precise GC support for static fields. Support
13153         for moving GCs: write barriers and pinned allocation for interned
13154         strings.
13155
13156 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
13157
13158         * domain.c, domain-internals.h: precise GC support for the MonoDomain
13159         structure.
13160
13161 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
13162
13163         * class.c, gc.c: sgen and precise GC updates.
13164
13165 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
13166
13167         * marshal.h, marshal.c: added write barrier wrapper and precise type
13168         fixes.
13169
13170 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
13171
13172         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
13173         support.
13174
13175 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
13176
13177         * reflection.c: precise and sgen GC updates.
13178
13179 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
13180
13181         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
13182
13183 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
13184
13185         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
13186
13187 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
13188
13189         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
13190         MONO_TYPE_OBJECT. Fixes #78462.
13191
13192 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
13193
13194         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
13195         and blittable types.
13196
13197 2006-05-17  Miguel de Icaza  <miguel@novell.com>
13198
13199         * class.c (mono_class_get_exception_for_failure): Implement parts
13200         of a TODO: if the loader error is set (instead of the class
13201         error), we return a Loader exception that can be properly thrown
13202         elsewhere.
13203
13204         This was exposed by some Winforms 2.0 code that I tried to run
13205         (Atsushi pointed me to it).
13206
13207 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
13208
13209         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
13210         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
13211         
13212         * marshal.c (emit_marshal_vtype): Add limited support for 
13213         UnmanagedType.LPStruct. Fixes #78427.
13214
13215         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
13216         Applied a patch from kangaroo to fix #77523.
13217
13218 2006-05-17  Martin Baulig  <martin@ximian.com>
13219
13220         * threads.c
13221         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
13222         (debugger_thread_created): Removed.
13223         (debugger_thread_exited): Removed.
13224
13225 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
13226
13227         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13228
13229         * object-internals.h (MonoReflectionResource): Sync with managed version.
13230
13231 2006-05-12  Wade Berrier <wberrier@novell.com>
13232
13233         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
13234
13235 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
13236
13237         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
13238         functions try to allocate from the image mempool.
13239
13240 2006-05-12  Dick Porter  <dick@ximian.com>
13241
13242         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
13243
13244 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
13245
13246         * object.c: The FieldGetter and FieldSetter methods require the full
13247         name of the class, not only the name. Fixes bug #78277.
13248
13249 2006-05-11  Miguel de Icaza  <miguel@novell.com>
13250
13251         * loader.c (method_from_memberref): Do not pass the NULL klass to
13252         mono_loader_set_error_() methods.  Pass the non-NULL value
13253         (class). 
13254
13255 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
13256
13257         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
13258         (mono_assembly_close): Null out assembly->image->references after freeing it.
13259
13260         * image.c (mono_image_close): Free image->references.
13261         
13262         * reflection.c (mono_image_basic_init): Fix a small memory leak.
13263
13264 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
13265
13266         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
13267         before checking if it's NULL (g_assert).
13268
13269 2006-05-10  Martin Baulig  <martin@ximian.com>
13270
13271         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
13272         I thought I already killed that two months ago, but now it somehow reappeared.
13273
13274 2006-05-10  Martin Baulig  <martin@ximian.com>
13275
13276         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
13277
13278 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
13279
13280         * reflection.c: Allocate memory for dynamically created methods in the image
13281         mempools.
13282
13283 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
13284
13285         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
13286         don't use the ad pointer before checking if it's NULL (g_assert).
13287
13288 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
13289
13290         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
13291         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
13292
13293         * marshal.c: Allocate all signatures from mempools.
13294
13295         * marshal.c: Allocate some more signatures from mempools.
13296
13297 2006-05-09  Miguel de Icaza  <miguel@novell.com>
13298
13299         * object.c (mono_load_remote_field): The code used to provide a
13300         temporary variable for returning results if the user did not
13301         provide a result pointer.  But our temporary variable was allocted
13302         on the satck.
13303
13304         Fix calling code to always pass a result area.   Coverity ID 103.
13305
13306 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
13307
13308         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
13309         value, not the old. Fixes #78312.
13310         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
13311
13312         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
13313         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
13314         per-image cache.
13315
13316         * assembly.c (mono_assembly_close): Free image->references.
13317
13318         * assembly.c (mono_assembly_names_equal): Fix a warning.
13319         (mono_assemblies_cleanup): Cleanup more global data.
13320
13321         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
13322
13323         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
13324         ptr_cache and image->modules.
13325
13326         * image.c (mono_image_init): Allocate array_cache lazily.
13327         
13328 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13329
13330         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
13331         behavior was changed recently and has bad side effects.
13332
13333 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
13334
13335         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
13336         
13337         * assembly.c (mono_assembly_close): Remove a debug printf.
13338
13339         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
13340
13341         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
13342         to also allow for temporary references between mono_image_open ()/close ().
13343
13344         * domain.c (get_runtimes_from_exe): Add a FIXME.        
13345
13346 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
13347
13348         * marshal.c: Fix support for dynamic methods.
13349
13350         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
13351
13352         * marshal.c (mono_marshal_cleanup): New cleanup function.
13353
13354         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
13355         image mempools.
13356
13357         * class.c (mono_class_init): Fix leaking class->nested_classes.
13358
13359         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
13360
13361         * image.c (mono_image_init): Initialize the new cashes.
13362
13363         * image.c (mono_image_close): Destroy the new cashes.
13364
13365         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
13366
13367         * mempool.c (mono_mempool_strdup): New helper function.
13368
13369         * class-internals.h: Add prototype for mono_loader_unlock ().
13370
13371         * domain.c (mono_jit_info_table_find): Fix a warning.
13372         (mono_debugger_check_runtime_version): Ditto.
13373
13374         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
13375         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
13376         functions to these modules.
13377
13378         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
13379         metadata modules.
13380         
13381         * marshal.c (mono_free_bstr): Fix a warning.
13382
13383         * assembly.c (mono_assembly_open_full): Fix another small leak.
13384
13385         * object.c: Fix some unload leaks in the remoting code.
13386
13387         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
13388         function.
13389
13390         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
13391
13392         * reflection.c: Fix some unload leaks in dynamic assemblies.
13393
13394 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
13395
13396         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
13397         * marshal.h: Add BSTR support on Win32
13398         * icall.c: Add BSTR icalls
13399         * metadata.h: Add BSTR enums
13400
13401 2006-04-28  Miguel de Icaza  <miguel@novell.com>
13402
13403         Work to catch the crash from #76795 and turn it into an
13404         exception.   As I stubbed out pieces of the VisualBasic support,
13405         I found a number of places where the code was failing and I added
13406         checks to those places. 
13407         
13408         * metadata.c (do_mono_metadata_parse_generic_class): Make this
13409         function return a status code.  If we fail to parse the signature
13410         from mono_metadata_parse_generic_inst, return FALSE.
13411
13412         * loader.c (mono_get_method_from_token): If we fail to load the
13413         method (mono_class_get) return NULL.   
13414
13415         * (method_from_memberref): Return NULL if we are unable to parse
13416         the method signature
13417
13418         (mono_loader_error_prepare_exception): Since we now use the
13419         loader_error flag internally to stop processing, and obtaining
13420         exceptions that might be thrown will walk this code path the
13421         proper way of going from a MonoLoaderError into a
13422         MonoException was convoluted.   This new routine encapsulates the
13423         process of turning the error into an exception and *clearing* the
13424         error afterwards.
13425         
13426 2006-04-27  Miguel de Icaza  <miguel@novell.com>
13427
13428         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
13429         with missing assemblies), and to cope with:
13430
13431                 * Missing fieldref from a non-existing assembly.
13432                 * Missing methodref from a non-existing assembly.
13433
13434         The first batch of work to address *some* of the issues from 76661.
13435         
13436         * object.c (mono_class_create_runtime_vtable): If we fail to
13437         initialize the class raise the exception here. 
13438
13439         * metadata.c (mono_class_get_overrides_full): If any methods fail
13440         to load return the failure to the caller.
13441
13442         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
13443         flagging assemblies that failed to load.   
13444
13445         Do not crash if we are unable to load the assembly.
13446
13447         (mono_assembly_close): Do nothing with REFERENCE_MISSING
13448         assemblies. 
13449
13450         * loader.c (mono_loader_set_error_type_load): Change the
13451         convention to always pass unallocated strings, so we make our own
13452         copies (I know our own code had duplicated strings before, but
13453         this keeps the normal conventions).
13454         (method_from_memberref): Call mono_loader_set_error_method_load
13455         for all possible failures of loading the class. 
13456         Remove assert, turn into a loader error.
13457
13458         (mono_loader_error_to_exception): Move this routine from mini
13459         (mini_loader_error_to_exception) there was no need to have that in
13460         mini. 
13461
13462         * class.c (mono_class_from_typeref): If we were not able to load
13463         the assembly with mono_assembly_load_reference, call the
13464         mono_loader_set_error_type_load to register the problem.
13465
13466         (mono_class_setup_fields): If we fail to load the type from
13467         mono_metadata_parse_type_full, call mono_class_set_failure and
13468         break from the loop.
13469
13470         If class->exception_type is set, we do not layout the fields as
13471         that might crash the runtime, and instead return (from breaking
13472         from the previous loop).
13473
13474         (mono_class_setup_vtable): This now returns a boolean indicating
13475         whether the table was properly setup.   The decision is driven by
13476         mono_class_get_overrides_full which might run into non-existing
13477         methods. 
13478         
13479         (mono_class_init): Returns TRUE on success or FALSE if there was a
13480         problem in loading the type (incorrect assemblies, missing
13481         assemblies, methods, etc).
13482
13483         When we call mono_class_setup_fields we also check for a potential
13484         error inside this call (either a class exception or a general
13485         loader exception).
13486
13487         (mono_class_create_from_typedef): If the parent fails to load
13488         (calling mono_class_get_full) return NULL.
13489         
13490         ** Important **
13491
13492         calls to mono_metadata_parse_type_full should be checked
13493         everywhere and set the mono_class_set_failure
13494         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
13495
13496         The current patch checks the places where my manually constructed
13497         tests show the errors are showing up, but we should do it
13498         everywhere. 
13499
13500         ** Important2 **
13501
13502         mono_class_init return values should be tested everywhere, like
13503         the previous case this is something that we should audit
13504         everywhere and not only on the cases exposed by the tests I
13505         created. 
13506
13507 2006-04-26  Miguel de Icaza  <miguel@novell.com>
13508
13509         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
13510         boolean parameter and instead pass the information on `options'
13511         parameter (FileOptions).
13512
13513         * icall.c: Register the new signature for MonoIO.Open.
13514
13515         * debug-helpers.c (dis_one): Trying to understand how coverity
13516         works.  Fix Run 5, item 78.
13517
13518 2006-04-26  Dick Porter  <dick@ximian.com>
13519
13520         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
13521         dereference.
13522
13523 2006-04-25  Martin Baulig  <martin@ximian.com>
13524
13525         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
13526
13527         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
13528         debugger_thread_created().
13529         (debugger_gc_push_all_stacks): Don't handle the main thread in any
13530         special way.
13531         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
13532         (mono_debugger_finalize_threads): New function; undo the effects
13533         of mono_debugger_init_threads().
13534         (mono_debugger_create_all_threads): Removed.
13535
13536 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
13537
13538         * image.c (mono_image_close): Tidy up trace messages.
13539
13540         * assembly.c (mono_assembly_close): Ditto.
13541
13542         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
13543         no longer references an already freed assembly. Fixes #78168.
13544
13545 2006-04-21  Dick Porter  <dick@ximian.com>
13546
13547         * threads.c (mono_thread_detach): Fix reference counting when
13548         detaching threads.
13549
13550 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
13551
13552         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
13553         #78155.
13554
13555 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
13556
13557         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
13558         (mono_type_to_stind): Ditto.
13559
13560         * marshal.c: Use the new helper functions to simplify code.
13561
13562         * image.c (mono_image_close): Add some code for help debug assembly unloading
13563         problems.
13564
13565         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
13566         image mempool.
13567
13568         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
13569         assembly was already loaded in another appdomain. Fixes #78083.
13570
13571 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
13572
13573         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
13574         referenced assemblies.
13575         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
13576
13577         * domain.c (mono_domain_free): Add a trace message.
13578
13579         * appdomain.c (add_assemblies_to_domain): Ditto.        
13580
13581         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
13582         field.  
13583
13584 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13585
13586         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
13587
13588 2006-04-12  Martin Baulig  <martin@ximian.com>
13589
13590         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
13591         `USE_INCLUDED_LIBGC'.   
13592
13593 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13594
13595         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
13596         the patch contains ../ and a small directory name later. Hopefully fixes
13597         #78035.
13598
13599 2006-04-10  Martin Baulig  <martin@ximian.com>
13600
13601         Clean up the debugger's thread-handling code.
13602
13603         The debugger's thread-handling code has been moved from
13604         ../mini/debug-debugger.c to threads.c.  We now iterate directly
13605         over the `threads' hash, keep track of exiting threads and also
13606         use proper locking.
13607
13608         We can now debug XSP and XSP based applications with the debugger.
13609
13610         * object-internals.h (MonoThread): Added `gpointer end_stack'.
13611
13612         * threads.h
13613         (MonoThreadCallbacks): Removed; this was only used by the debugger.
13614         (mono_install_thread_callbacks): Likewise.      
13615
13616         * threads.c (mono_thread_callbacks): Removed.
13617         (debugger_thread_created, debugger_thread_exited): New static functions.
13618         (start_wrapper): Call debugger_thread_created().
13619         (thread_cleanup): Call debugger_thread_exited().
13620         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
13621         (mono_debugger_init_threads): New public function.
13622         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
13623         iterate directly over the `threads' hash and also use proper locking.
13624
13625         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
13626
13627         * mono-debug-debugger.h
13628         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
13629
13630 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
13631
13632         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
13633         argument type=array. Fixes #78057.
13634
13635 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
13636
13637         * culture-info-table.h : regenerated. Fixed bug #69652.
13638
13639 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
13640
13641         * loader.c metadata.c: Reapply a variant r59116.
13642         
13643         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
13644
13645         * class.c (mono_class_setup_interface_offsets): New internal function.
13646
13647         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
13648         interfaces too. Fixes #77398.
13649
13650         * reflection.c (encode_cattr_value): Add support for 
13651         parameter type=object, argument type=array.
13652         (load_cattr_value): Ditto. Fixes #77916.
13653
13654         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
13655         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
13656
13657         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
13658         a byval char array and CharSet is Ansi.
13659
13660         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
13661
13662 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
13663
13664         * metadata.c: Add some locking comments.
13665         
13666         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
13667         mempool.
13668         (mono_metadata_free_method_signature): Don't free the signature itself.
13669
13670         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
13671
13672         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
13673         reference the same MonoImage.
13674         (mono_assembly_load_from_full): Add an assert.
13675
13676 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
13677
13678         * image.c (mono_image_close): Don't put the image we are about to free into the
13679         loaded_images_guid_hash.
13680
13681         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
13682         to reduce code duplication.
13683
13684         * marshal.c: Register the native functions called by this module as icalls, to
13685         somewhat centralize the creation of MonoMethodSignature's.
13686
13687         * loader.c (mono_method_signature): Add a cache for method signatures.
13688
13689         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
13690         the parameter attributes of a method.
13691         (mono_metadata_parse_method_signature_full): Refactored the computation of
13692         parameter attributes into a separate function. Also avoid one allocation in
13693         most cases.
13694
13695         * assembly.c (mono_assembly_close): Ditto.
13696
13697         * image.c (mono_image_close): Log trace messages with INFO level.
13698
13699         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
13700
13701         * image.c reflection.c: Correct reference counting of image modules.
13702         
13703         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
13704         of this function from the image mempool.
13705         
13706         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
13707         to allow more cached types to be used.
13708
13709         * mono-debug.c (mono_debug_add_method): Appled patch from
13710         David S. Miller  <davem@sunset.davemloft.net>: Access 
13711         minfo->lexical_blocks[] entry elements using read32().
13712
13713 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
13714
13715         * loader.c (mono_free_method): No longer free the method header for non-dynamic
13716         methods as it is allocated from the mempool.
13717
13718         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
13719         image mempool.
13720
13721         * metadata-internals.h: Add comments describing the reference counting scheme
13722         used for MonoImage and MonoAssembly.
13723
13724         * image.c assembly.c reflection.c: Rework reference counting of images and 
13725         assemblies so they are freed when the runtime is shut down. Free some 
13726         additional memory structures when an image is unloaded.
13727         
13728 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
13729
13730         * class.c loader.c reflection.c: Allocate more data structures in
13731         the image mempool.
13732
13733 2006-03-31  Miguel de Icaza  <miguel@novell.com>
13734
13735         * icall.c
13736         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
13737         build on pre glib 2.4 systems.
13738
13739 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
13740
13741         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
13742
13743         * icall.c: Fix some warnings.
13744
13745 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
13746
13747         * culture-info-table.h : regenerated.
13748
13749 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
13750
13751         * threads.c, object-internals.h, verify.c: changed the culture caching
13752         code to use a normal MonoArray for storage so the GC can keep track of
13753         them easily. Fixed bits of the cache logic, too and simplified the
13754         code.
13755
13756 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
13757
13758         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
13759         thread for non-Boehm GCs.
13760
13761 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
13762
13763         * domain.c, object.c, domain-internals.h: reduce the amount of memory
13764         needed to keep track of the data for static fields.
13765
13766 2006-03-29  Raja R Harinath  <rharinath@novell.com>
13767
13768         Fix #75172
13769         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
13770         for interface classes.  Use 'num_methods' instead.
13771         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
13772         before using '->vtable_size' field.
13773
13774 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
13775
13776         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
13777         doesn't contain managed pointers, so use a normal hashtable.
13778
13779 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
13780
13781         * reflection.c, class-internals.h, domain.c: fixed handling of types
13782         used as values for objects in custom attributes (bug #77915):
13783
13784 2006-03-24  Martin Baulig  <martin@ximian.com>
13785
13786         * class.c (mono_class_setup_fields): Added support for generic
13787         instances; fixes #77580.
13788
13789 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13790
13791         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
13792
13793 2006-03-24  Dick Porter  <dick@ximian.com>
13794
13795         * file-io.c (get_file_attributes): More stat macro breakage.
13796         Fixes bug 77759.
13797
13798 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
13799
13800         * profiler.c: added the file=filename option in the default profiler
13801         to output the profile data to filename.
13802
13803 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13804
13805         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
13806         bug #77877.
13807
13808 2006-03-22  Martin Baulig  <martin@ximian.com>
13809
13810         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
13811         allocated `MonoClassField *' in `fb->handle'.
13812
13813 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
13814
13815         * class.c, image.c, metadata-internals.h: implemented new mechanism to
13816         allocate interface ID to save memory and allow better ID reuse on
13817         appdomain unload. setup_generic_vtable () removal from Martin.
13818
13819 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
13820
13821         * object.h, appdomain.c, domain.c, exception.c, icall.c,
13822         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
13823         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
13824         write barriers for reference stores with managed objects accessed with
13825         C structures in the runtime and in embedding programs.
13826
13827 2006-03-20  Raja R Harinath  <rharinath@novell.com>
13828
13829         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
13830         'interface_id' and 'max_interface_id' fields of MonoClasses
13831         representing open generic types.
13832
13833 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
13834
13835         * object.h, object.c, icall.c: added functions to deal with
13836         storing valuetypes that contain references in managed objects.
13837         * reflection.c, string-icalls.c, threads.c, marshal.c: small
13838         fixes and comments around uses of mono_array_addr ().
13839
13840 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
13841
13842         * object.h, icall.c, monitor.c: object.GetHashCode ()
13843         implementation that supports the moving garbage collector.
13844
13845 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
13846
13847         * icall.c, threads-types.h, threads.c: implemented finalizer for
13848         LocalDataStoreSlot.
13849
13850 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
13851
13852         * metadata.c (mono_type_size): Add a fixme.
13853         (mono_type_stack_size): Ditto.
13854
13855         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
13856         'type_forwarders' field.
13857
13858         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
13859         attribute from net 2.0.
13860
13861         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
13862         from class.c.
13863
13864         * class.c (mono_class_setup_fields): Fix a warning.
13865         
13866         * class.c (mono_class_from_name): Add support for assemblyref entries
13867         in the EXPORTEDTYPE table.
13868
13869         * reflection.c: Add support for handling type forwarders under net 2.0.
13870
13871         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
13872         
13873 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
13874
13875         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
13876         overwriting entries in ModuleBuild->types, also clean up the code
13877         a little. Fixes #77774.
13878
13879 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
13880
13881         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
13882         load friend assembly info when present.
13883
13884 2006-03-14  Raja R Harinath  <rharinath@novell.com>
13885
13886         Fix crasher on gtest-158.cs.
13887         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
13888         the return value if the MonoClass we want is yet in an
13889         inconsistent state.
13890         * class.c (mono_class_create_from_typedef): Add an comment
13891         explaining an order dependency between mono_class_setup_parent and
13892         mono_class_setup_mono_type.
13893
13894 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
13895
13896         * class.c: documentation updates and events bug fix.
13897
13898 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
13899
13900         * class.c: some cleanup, locking fixes.
13901
13902 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
13903
13904         * class.c: fix the generics code to setup nested
13905         type info to the instantiated type (bug #77770).
13906
13907 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
13908
13909         * marshal.c: fixed a few type correctness issues.
13910
13911 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13912
13913         * loader.c: the Set/Get/Addrtess array methods should be public.
13914
13915 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
13916
13917         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
13918         
13919         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
13920         info->wrapper.
13921
13922 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
13923
13924         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
13925
13926         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
13927
13928         * mempool.c (mono_mempool_alloc): Speed this up a bit.
13929         (mono_mempool_alloc0): Ditto.
13930
13931 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13932
13933         * socket-io.c:
13934         (create_object_from_sockaddr): it was allocating 4 extra bytes
13935         for the AF_UNIX data. Fixes bug #77747.
13936
13937 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
13938
13939         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
13940
13941 2006-03-09  Dick Porter  <dick@ximian.com>
13942
13943         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
13944         Fixes bug 76966 again.
13945
13946 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
13947
13948         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
13949         names from r57532
13950         * appdomain.c: Bumped corlib version to 48 (due to r57532)
13951
13952 2006-03-07  Martin Baulig  <martin@ximian.com>
13953
13954         * object.c
13955         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
13956
13957 2006-03-07  Martin Baulig  <martin@ximian.com>
13958
13959         * class.c
13960         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
13961         regression introduced in r56970; see gtest-252.cs.
13962
13963         * loader.c (mono_get_method_constrained): Correctly handle generic
13964         methods; see gtest-253.cs.
13965
13966 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
13967
13968         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
13969
13970 2006-03-04  Martin Baulig  <martin@ximian.com>
13971
13972         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
13973         compute the parent type at runtime, just like we're already doing
13974         it for interfaces.
13975
13976         * reflection.c
13977         (mono_reflection_bind_generic_parameters): Don't compute the
13978         parent type anymore.
13979
13980         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
13981
13982 2006-03-04  Martin Baulig  <martin@ximian.com>
13983
13984         * mono-debug-debugger.h
13985         (mono_debugger_create_notification_function): Allocate memory at
13986         runtime and return a pointer to it.
13987
13988 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
13989
13990         * assembly.c: Fix windows build.
13991         
13992         * assembly.c: Fix build.
13993
13994         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
13995
13996         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
13997         
13998 2006-03-03  Dick Porter  <dick@ximian.com>
13999
14000         * process.c
14001         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
14002         Check parameters before dereferencing them.  Fixes Aaron's part of
14003         bug 77393.
14004
14005 2006-03-03  Raja R Harinath  <rharinath@novell.com>
14006
14007         Fix performance regression.
14008         * loader.c (find_method_in_class): Add 'from_class' argument.
14009         Rename 'klass' argument to 'in_class'.  The signature is compared
14010         against the method in 'in_class', and the corresponding method is
14011         returned from 'from_class'.
14012         (find_method): Walk both 'in_class' and 'from_class' in parallel.
14013         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
14014         type definition and generic instantiation in parallel.
14015         (mono_get_method_constrained): Update to changes.
14016
14017 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
14018
14019         * threads.c: make sure the domain is correct, too when doing
14020         mono_thread_attach ().
14021
14022 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
14023
14024         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
14025         windows. Fixes #77683.
14026
14027 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
14028
14029         * object.h, *: introduced specific way to set elements of an array
14030         of references to be used as write barrier. Still need to audit the
14031         uses of mono_array_addr.
14032
14033 2006-03-01  Miguel de Icaza  <miguel@novell.com>
14034
14035         * object-internals.h: New field to cache the assmebly name, patch
14036         from Tambet Ingo (tambet@ximian.com)
14037
14038 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
14039
14040         * decimal.h, class-internals.h, metadata-internals.h,
14041         file-io.h: mark a few function declarations as internal, to
14042         reduce the number of PLT entries.
14043
14044 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14045
14046         * file-io.c: fix typo in warning message.
14047
14048 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
14049
14050         * loader.c: on unix, lookup the "*A" version of a function
14051         if charset is auto as a second option before failing.
14052
14053 2006-02-28  Raja R Harinath  <rharinath@novell.com>
14054
14055         * class.h (mono_class_inflate_generic_method): Revert to two
14056         argument version.
14057         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
14058         (mono_class_inflate_generic_method_full): Add.
14059         * class.c (mono_class_inflate_generic_method_full): Rename from
14060         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
14061         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
14062         * loader.c, reflection.c: Update to changes.
14063
14064 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
14065
14066         * icall.c: const fixes and small improvements.
14067
14068 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14069
14070         * threadpool.c: for asynchronous connect(), enable the same workaround
14071         for BSD 6 as for the Mac. Fixes bug #77637.
14072
14073 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
14074
14075         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
14076         formatted classes. Fixes #77524.
14077
14078 2006-02-24  Raja R Harinath  <rharinath@novell.com>
14079
14080         * class.c (inflate_generic_type): Add a couple more
14081         micro-optimizations.
14082         (inflate_generic_context): Don't use the 'gmethod' from
14083         'inflate_with'.
14084         (mono_class_inflate_generic_method): If the method has generic
14085         parameters, but the passed-in context doesn't have a 'gmethod',
14086         create one.  Use the possibly simplified generic instantiation
14087         from the declaring class instead of the one passed in.
14088
14089 2006-02-24  Raja R Harinath  <harinath@gmail.com>
14090
14091         Make generic method signature and method header handling lazy.
14092         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
14093         (inflate_generic_header): Likewise.
14094         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
14095         parameter to avoid inflating types.
14096         (mono_get_inflated_method): Empty out.
14097         * class.h (mono_class_inflate_generic_method): Update to changes.
14098         * loader.c (mono_get_method_from_token): Don't parse signature for
14099         generic methods, nor methods of generic classes.
14100         (mono_method_signature): Rename from 'mono_method_signature'.
14101         Inflate signature on demand.
14102         (mono_method_get_header): Inflate method header on demand.
14103         * reflection.c: Update to changes.
14104
14105 2006-02-23  Raja R Harinath  <rharinath@novell.com>
14106
14107         * metadata.c (mono_metadata_inflate_generic_inst): If the
14108         instantiation is closed, don't bother expanding it in the new
14109         context.
14110         * class.c (inflate_generic_class): If the generic instantiation
14111         doesn't change after inflation, return the argument itself.
14112         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
14113         Add bounds checks.
14114         (inflate_generic_context): If neither the generic class nor the
14115         generic method instantiations change, return the original context.
14116         * reflection.c (mono_method_get_object): Do
14117         'mono_get_inflated_method' before accessing the ->klass field.
14118         (inflate_mono_method): Don't create a MonoGenericMethod unless
14119         necessary.
14120         (inflate_method): Don't pass a constructed type as the declaring
14121         type of a methodbuilder.
14122
14123 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
14124
14125         * object.c: fix memory overwrite.
14126
14127 2006-02-22  Dick Porter  <dick@ximian.com>
14128
14129         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
14130         it doesn't work any more.
14131         (mono_threads_request_thread_dump): Fix unused variable warnings.
14132
14133 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
14134
14135         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
14136         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
14137         the public header file.
14138
14139 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
14140
14141         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
14142
14143 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
14144
14145         * class-internals.h, object.c: reduce the size of MonoVTable
14146         and store the interface_offsets array at negative offsets.
14147
14148 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
14149
14150         * metadata.c: tweak table descriptors data structures to reduce
14151         size and runtime relocations.
14152
14153 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14154
14155         * marshal.c: fix some types and opcodes to be type-safe
14156         in marshaling wrappers.
14157
14158 2006-02-21  Ankit Jain  <jankit@novell.com>
14159
14160         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
14161
14162 2006-02-21  Raja R Harinath  <rharinath@novell.com>
14163
14164         * metadata.c (get_constraints): Relax debugging checks for monodis.
14165
14166 2006-02-21  Ankit Jain  <jankit@novell.com>
14167
14168         * metadata.c (mono_metadata_load_generic_params): Move the code
14169         checking for ambiguous generic params from here to mono/dis/get.c
14170         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
14171
14172 2006-02-21  Raja R Harinath  <harinath@gmail.com>
14173
14174         Fix assertion triggered when compiling nemerle.
14175         * class.c (mono_get_shared_generic_inst): Rename from
14176         get_shared_inst and make non-static.
14177         * loader.c (mono_get_shared_generic_method): New.  Used to create
14178         the MonoGenericContext-equivalent of a MonoGenericContainer.
14179         (mono_get_method_from_token): Initialize the 'context' field of
14180         the created MonoGenericContainer.
14181         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
14182         * metadata.c (get_constraints): Add sanity check.
14183         * class-internals.h: Add new internal methods.
14184
14185         * reflection.c (verify_safe_for_managed_space): New sanity check.
14186         Currently checks that owner-less generic parameters aren't allowed
14187         in managed space.
14188         (mono_type_get_object): Use it.
14189         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
14190         that are now in mono_type_get_object.
14191         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
14192
14193 2006-02-19  Raja R Harinath  <harinath@gmail.com>
14194
14195         * metadata.c (mono_type_create_from_typespec): Rename from
14196         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
14197         argument and caching of types in the generic container.
14198         (unwrap_arrays, find_generic_param): Remove.
14199         * metadata-internals.h: Update.
14200         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
14201
14202 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
14203
14204         * class.c (mono_class_get_exception_for_failure): Fix a warning.
14205
14206         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
14207         return values. Fixes #77581.
14208
14209         * class.c (mono_fnptr_class_get): Switch name and name_space.
14210
14211         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
14212         classes and add support for [In, Out] attributes.
14213         (mono_marshal_free_asany): Ditto. Fixes #77524.
14214
14215 2006-02-18  Raja R Harinath  <harinath@gmail.com>
14216
14217         * class.c (mono_class_from_generic_parameter): Make more robust to
14218         incomplete MonoGenericContainers from monodis.
14219
14220 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14221
14222         * class-internals.h: added some more exception types.
14223         * class.c, metadata.c: added a few checks to handle missing
14224         types.
14225
14226 2006-02-17  Raja R Harinath  <rharinath@novell.com>
14227
14228         Use owner-less generic-params some more.
14229         * class.c (my_mono_class_from_generic_parameter): Remove.
14230         (mono_class_from_generic_parameter): Handle null image,
14231         param->name and param->owner.
14232         (mono_class_from_mono_type): Update.
14233         (mono_class_create_from_typespec): Remove 'container' parameter.
14234         If that parameter is non-null, the result is always inflated by
14235         'mono_class_get_full' anyway.
14236         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
14237         parameter.
14238         (mono_class_get_full): Update.
14239
14240         * class.c (inflate_generic_type) [GENERICINST]: If the generic
14241         instance is not open, don't bother inflating.
14242         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
14243         parse metadata for inflated classes.
14244         (_mono_class_get): Change GenericContext* parameter to
14245         GenericContainer*.
14246         (mono_class_create_from_typespec): Likewise.  Simplify, and
14247         implement trivially.  All the cases are handled in
14248         mono_class_from_mono_type.  Don't inflate returned class.
14249         (mono_class_get_full): Delegate GENERICINST optimization to
14250         inflate_generic_type.
14251         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
14252
14253 2006-02-16  Dick Porter  <dick@ximian.com>
14254
14255         * socket-io.c (create_object_from_sockaddr): Fix typo.
14256         (create_sockaddr_from_object): Check array lengths before
14257         potentially accessing items off the end.
14258         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
14259         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
14260         (ves_icall_System_Net_Sockets_Socket_Send_internal)
14261         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
14262         length checks to avoid wraparound overflows.
14263         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
14264         contents of the array of sockets
14265         (hostent_to_IPHostEntry2)
14266         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
14267         Check return value of inet_ntop ().
14268         (addrinfo_to_IPHostEntry): Fix typo
14269
14270 2006-02-16  Raja R Harinath  <rharinath@novell.com>
14271
14272         Type metadata parsing doesn't use generic-instantiation information.
14273         * metadata.c (mono_metadata_parse_array_full): Change
14274         MonoGenericContext* parameter to MonoGenericContainer*.
14275         (mono_metadata_parse_type_full): Likewise.
14276         (mono_type_create_from_typespec_full): Likewise.
14277         (mono_metadata_parse_mh_full): Likewise.
14278         (mono_metadata_parse_generic_inst): Likewise.
14279         (do_mono_metadata_parse_generic_class): Likewise.
14280         (do_mono_metadata_parse_type): Likewise.
14281         * metadata-internals.h: Update to changes.
14282         * class.c (mono_class_find_enum_basetype): Likewise.
14283         (mono_class_setup_fields): Likewise.
14284         (mono_class_create_from_typespec): Likewise.
14285         * loader.c (method_from_methodspec): Likewise.
14286         (mono_get_method_from_token): Likewise.
14287         (mono_method_get_header): Likewise.
14288
14289 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14290
14291         * marshal.c: handle additional GENERICINST case (patch from
14292         Thong Nguyen <tum@veridicus.com>).
14293         Fix a few cases where LDIND_I/STIND_I was used for references.
14294
14295 2006-02-16  Raja R Harinath  <rharinath@novell.com>
14296
14297         * reflection.c (mono_reflection_get_token): Remove unused variable.
14298
14299 2006-02-16  Martin Baulig  <martin@ximian.com>
14300
14301         * reflection.c (mono_reflection_get_token): Add support for fields
14302         in instantiated generic types.
14303
14304         * icall.c
14305         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
14306
14307 2006-02-15  Martin Baulig  <martin@ximian.com>
14308
14309         * icall.c
14310         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
14311         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
14312         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
14313         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
14314
14315 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
14316
14317         * class.c, metadata.c, metadata.h, object.c, icall.c,
14318         marshal.c: changed mono_type_get_underlying_type () to do
14319         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
14320         Fixed handling of instantiated generic valuetypes (bug #75479).
14321
14322 2006-02-15  Raja R Harinath  <rharinath@novell.com>
14323
14324         * metadata.c (mono_metadata_decode_signed_value): Simplify.
14325         Delegate to mono_metadata_decode_value, and work on the returned value.
14326
14327         * icall.c (ves_icall_MonoType_GetGenericArguments):
14328         Add consistency check here too.
14329         
14330 2006-02-15  Ankit Jain  <jankit@novell.com>
14331
14332         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
14333         char/short etc.
14334
14335 2006-02-15  Ankit Jain  <jankit@novell.com>
14336
14337         * metadata.c (mono_metadata_decode_signed_value): New function to decode
14338         signed values, used only for representing lower bounds of arrays.
14339         (mono_metadata_parse_array_full): Use new
14340         mono_metadata_decode_signed_value to decode lower bounds.
14341
14342 2006-02-14  Martin Baulig  <martin@ximian.com>
14343
14344         * reflection.c
14345         (mono_reflection_get_token): Support "MonoGenericMethod" and
14346         "MonoGenericCMethod" and allow generic instances / methods.
14347
14348 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
14349
14350         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
14351         to obtain the terminal size using an ioctl.
14352
14353         * object.c (mono_nullable_init): Revert this as nullable reference
14354         types are not valid.
14355         (mono_nullable_box): Ditto.
14356
14357 2006-02-09  Dick Porter  <dick@ximian.com>
14358
14359         * threads.c (mono_thread_detach): Drop a reference to the thread
14360         we're detaching.
14361
14362 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
14363
14364         * object.c (mono_nullable_init): Handle nullable reference types.
14365         (mono_nullable_box): Ditto. Fixes #77446.
14366
14367 2006-02-07  Martin Baulig  <martin@ximian.com>
14368
14369         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
14370
14371 2006-02-07  Ankit Jain  <jankit@novell.com>
14372
14373         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
14374         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
14375         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
14376         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
14377         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
14378         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
14379
14380 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
14381
14382         * class.c (mono_class_create_generic): Set type_token as well.
14383
14384         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
14385         compatible with MS.
14386
14387 2006-02-02  Martin Baulig  <martin@ximian.com>
14388
14389         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
14390         has never been used so far.
14391
14392 2006-02-02  Martin Baulig  <martin@ximian.com>
14393
14394         * mono-debug-debugger.h: Changed comment at the top of this file;
14395         the header is not installed, but it's safe to #include it from
14396         within the JIT.
14397
14398         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
14399         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
14400
14401 2006-02-02  Martin Baulig  <martin@ximian.com>
14402
14403         * mono-debug.h
14404         (MonoSymbolTable): Removed the `metadata_info' field.
14405
14406         * mono-debug.c
14407         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
14408
14409         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
14410         (mono_debugger_add_builtin_types): Removed.
14411         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
14412         (mono_debugger_create_notification_function): We now operate on a
14413         pre-allocated area; take a `gpointer' and return `void'.
14414
14415         * mono-debug-debugger.c
14416         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
14417         (mono_debugger_add_builtin_types): Removed.
14418
14419 2006-02-02  Martin Baulig  <martin@ximian.com>
14420
14421         * threads.c (mono_debugger_create_all_threads): New public method.
14422
14423 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14424
14425         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
14426         breaks on several platforms.
14427
14428 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
14429
14430         * assembly.c: the VS.NET build doesn't supply default values for
14431         MONO_ASSEMBLIES and MONO_CFG_DIR.
14432
14433 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
14434
14435         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
14436         helper function.
14437
14438         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
14439
14440         * loader.c (method_from_memberref): Fix a warning.
14441
14442         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
14443
14444         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
14445         with explicit layout. Fixes #77433.
14446
14447 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
14448
14449         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
14450         max_interface_id is initialized before using it. Fixes #77398.
14451         (ves_icall_Type_GetInterfaces): Ditto.
14452
14453 2006-01-30  Raja R Harinath  <rharinath@novell.com>
14454
14455         * metadata.c (mono_metadata_parse_method_signature_full): Don't
14456         allocate memory for parameter attributes when parsing memberref
14457         signatures.
14458         * loader.c (mono_loader_set_error_method_load): Don't warn.
14459         (method_from_memberref): Ensure MissingMethodException gets thrown
14460         if method is not found.  Make warning more informative.
14461
14462 2006-01-29  Raja R Harinath  <harinath@gmail.com>
14463
14464         Fix #77397
14465         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
14466         return true if is byref.
14467         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
14468         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
14469         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
14470
14471 2006-01-27  Raja R Harinath  <rharinath@novell.com>
14472
14473         Fix tests/find-method.2.il
14474         * loader.c (find_method, find_method_in_class): Remove is_inflated
14475         argument.  Revert 2006-01-18 change.
14476         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
14477         is generic, search for method in its generic definition.
14478         * class.c (mono_class_setup_vtable_general): Print generic
14479         arguments of generic types in debugging printf.
14480
14481 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
14482
14483         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
14484
14485         * threads.c (mono_threads_request_thread_dump): New helper function.
14486
14487 2006-01-25  Raja R Harinath  <rharinath@novell.com>
14488
14489         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
14490
14491 2006-01-25  Ankit Jain  <jankit@novell.com>
14492
14493         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
14494         move definition to ..
14495         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
14496         
14497 2006-01-25  Ankit Jain  <jankit@novell.com>
14498             Raja R Harinath  <rharinath@novell.com>
14499
14500         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
14501         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
14502         as necessary.
14503
14504 2006-01-25  Martin Baulig  <martin@ximian.com>
14505
14506         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
14507         `MonoDebuggerThread' into debug-debugger.c.
14508
14509 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
14510
14511         * profiler.c: fix printing of data.
14512
14513 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
14514
14515         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
14516           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
14517
14518 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14519
14520         * object.c: fix deadlock related to string interning.
14521
14522 2006-01-23  Martin Baulig  <martin@ximian.com>
14523
14524         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
14525
14526         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
14527
14528 2006-01-23  Martin Baulig  <martin@ximian.com>
14529
14530         * mono-debug.h: Moved the prototypes of some functions which are
14531         used by the JIT here from mono-debug-debugger.h.
14532
14533 2006-01-21  Martin Baulig  <martin@ximian.com>
14534
14535         * Makefile.am: Don't install mono-debug-debugger.h.
14536
14537 2006-01-21  Martin Baulig  <martin@ximian.com>
14538
14539         * mono-debug-debugger.h: Enforce the private status of this header
14540         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
14541         Moved some stuff from mono-debugger-jit-wrapper.h here.
14542
14543 2006-01-20  Raja R Harinath  <rharinath@novell.com>
14544
14545         * class.c (mono_class_from_typeref): Add a sanity test to help
14546         catch lack of assembly load/search hooks.
14547
14548 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
14549
14550         * marshal.c (emit_struct_conv): Relax the fields with same offset
14551         check even more. Fixes #77230.
14552
14553 2006-01-18  Martin Baulig  <martin@ximian.com>
14554
14555         * loader.c (find_method_in_class): Added `gboolean is_inflated'
14556         argument; if false, we compare the uninstantiated signatures.
14557         (method_from_memberref): Compare the uninstantiated signatures;
14558         fixes #76417.
14559
14560 2006-01-18  Robert Jordan  <robertj@gmx.net>
14561
14562         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
14563         Clear the weak link. Fixes bug #77170.
14564
14565         * gc.c (mono_gchandle_free):
14566         Reflect *-gc.c changes (tiny optimization).
14567
14568 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
14569
14570         * metadata.c (mono_metadata_signature_dup): Applied patch from
14571         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
14572         Fixes #77288.
14573
14574 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
14575
14576         * marshal.c (emit_struct_conv): Allow fields with the same offset when
14577         marshalling from native to managed code. Fixes #77230.
14578
14579 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14580
14581         * threadpool.c: fix problem (Mac only) when more than one asynchronous
14582         connect. Fixes bug #77020.
14583
14584 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14585
14586         * class.c: fixed id assignement for nested interfaces (bug #77275).
14587         Added also better info for --print-vtable debugging.
14588
14589 2006-01-12  Martin Baulig  <martin@ximian.com>
14590
14591         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
14592         interfaces on-the-fly; fixes #76625.
14593
14594         * class-internals.h
14595         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
14596         don't need that anymore.
14597
14598 2006-01-12  Miguel de Icaza  <miguel@novell.com>
14599
14600         * socket-io.c
14601         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14602         To avoid initing the nested_classes when not needed I turned the
14603         PeerCredData as a toplevel internal class, as it has to be shared
14604         anyways. 
14605
14606         Fixes the CASA issue.
14607
14608 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
14609
14610         * domain.c: Accessors for MonoJitInfo
14611
14612         * profiler-private.h: Add jitinfo to the end jit hook
14613
14614         * profiler.[ch]: Define new hooks, called after jitting which give
14615         the MonoJitInfo that was compiled
14616
14617 2006-01-10  Martin Baulig  <martin@ximian.com>
14618
14619         * class.c (mono_class_setup_events): Add support for generic
14620         classes; fixes #76440.
14621
14622 2006-01-06  Raja R Harinath  <rharinath@novell.com>
14623
14624         Fix #77160.
14625         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
14626         on passed-in method.
14627
14628 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
14629
14630         * object.c (mono_runtime_invoke_array): Add Nullable support.
14631
14632         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
14633
14634 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
14635
14636         * file-io.c: Don't consider sockets as directory and avoid an endless
14637         loop. Fix bug #76966.
14638
14639 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
14640
14641         * object.c (mono_nullable_init): New helper function.
14642         (mono_nullable_box): Ditto.
14643
14644         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
14645
14646         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
14647
14648         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
14649         
14650 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
14651
14652         * class.c (mono_class_is_assignable_from): Make T assignable to 
14653         Nullable<T>.
14654
14655 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
14656
14657         * appdomain.c: Bump corlib version to 46.
14658         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
14659         serialization purpose) and changed ves_icall_System_Reflection_
14660         Assembly_get_code_base signature to accept a boolean (to escape, or 
14661         not, the assembly code base).
14662
14663 2005-12-23  Dick Porter  <dick@ximian.com>
14664
14665         * icall.c: 
14666         * threads-types.h: 
14667         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
14668         CreateEvent icall now returns "created" boolean parameter.
14669
14670 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
14671
14672         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
14673         #76967.
14674
14675         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
14676         when attr_klass is an interface. Fixes #77045.
14677
14678 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
14679
14680         * marshal.c (emit_struct_conv): Fix previous patch.
14681         
14682         * marshal.c (emit_struct_conv): Add a check for fields with the same
14683         offset.
14684
14685 2005-12-20  Raja R Harinath  <rharinath@novell.com>
14686
14687         Fix regression in Mono.C5.
14688         * class.c (mono_class_create_generic): If 'klass' is an interface
14689         set up the interface offsets.
14690         (mono_class_is_assignable_from): Don't throw away generic arguments.
14691
14692 2005-12-19  Raja R Harinath  <rharinath@novell.com>
14693
14694         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
14695         type parameters.
14696
14697 2005-12-15  Raja R Harinath  <rharinath@novell.com>
14698
14699         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
14700         dead store.
14701         (do_mono_metadata_parse_generic_class): Don't pass the current
14702         generic context when parsing the type being instantiated: it
14703         cannot use it, anyway.
14704
14705         * loader.c (method_from_memberref): Don't inflate a signature if
14706         it doesn't contain any type parameters.
14707
14708 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
14709
14710         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
14711
14712 2005-12-14  Martin Baulig  <martin@ximian.com>
14713
14714         * class.c
14715         (mono_type_get_name_recurse): Don't return null for type
14716         parameters and open generic classes.
14717         (mono_class_setup_methods): Don't exclude generic instances.
14718         (mono_get_unique_iid): Use different IDs for different
14719         instantiations of the same generic type.
14720         (mono_class_setup_vtable): Only use setup_generic_vtable() for
14721         open generic instances; create a normal vtable for closed generic
14722         instances.
14723         (mono_class_setup_vtable_general): We're now also called for
14724         closed generic instances.
14725
14726         * reflection.c
14727         (mono_reflection_bind_generic_parameters): Correctly use
14728         mono_metadata_lookup_generic_inst() everywhere.
14729
14730 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
14731
14732         * object.c (mono_class_create_runtime_vtable): Call 
14733         mono_class_setup_vtable ().
14734
14735         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
14736         function.
14737         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
14738         #76959.
14739
14740         * loader.c (mono_loader_set_error_type_load): Print the type load
14741         warnings to the console so they are more visible to the user.
14742         (mono_loader_set_error_method_load): Ditto.
14743
14744         * reflection.c (ensure_runtime_vtable): Revert the last change as it
14745         is still broken.
14746         
14747         * reflection.c (ensure_runtime_vtable): Fix build.
14748
14749         * reflection.c (ensure_runtime_vtable): Disable an optimization which
14750         doesn't work in all cases.
14751
14752 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
14753
14754         * object.c (mono_array_new_full): Treat a single dimensional array
14755         with 0 lower bounds as an szarray. Fixes #76973.
14756
14757         * reflection.c (custom_attr_visible): Really fix this.
14758
14759 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
14760
14761         * reflection.c (custom_attr_visible): Allow nested public attributes
14762         as well.
14763
14764         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
14765         interface check.
14766
14767 2005-12-12  Raja R Harinath  <harinath@gmail.com>
14768
14769         * class.c (set_generic_param_owner): Delete.
14770         (mono_class_create_from_typedef): Don't set ->owner field of
14771         generic parameters to "param containers" of enclosing classes.
14772         * reflection.c (mono_reflection_initialize_generic_parameter):
14773         Likewise.
14774
14775 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
14776
14777         * reflection.c (custom_attr_visible): Fix build.
14778
14779 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
14780
14781         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
14782         private attributes.
14783         
14784         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
14785         handling of null parameter defaults.
14786
14787 2005-12-09  Raja R Harinath  <rharinath@novell.com>
14788
14789         * class.c (mono_class_from_generic_parameter): Don't set
14790         klass->generic_container.
14791         (my_mono_class_from_generic_parameter): Likewise.
14792
14793 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
14794
14795         * reflection.c (load_public_key): Fix a warning.
14796         (method_encode_code): Fix unaligned accesses.
14797
14798 2005-12-07  Martin Baulig  <martin@ximian.com>
14799
14800         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
14801
14802         * reflection.c
14803         (write_generic_param_entry): Encode our custom attrs.
14804
14805         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
14806
14807 2005-12-07  Martin Baulig  <martin@ximian.com>
14808
14809         * reflection.c (encode_new_constraint): Removed; we don't use the
14810         `NewConstraintAttribute' anymore.
14811
14812 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
14813
14814         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
14815         not fire a TypeResolve event when Assembly.GetType () is called.
14816
14817 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
14818
14819         Beginning of support for nullable types in the runtime. Parts of
14820         this patch are from Martin.
14821
14822         * appdomain.c (MONO_CORLIB_VERSION): Bump
14823
14824         * domain.c (mono_init_internal): get the nullable type
14825
14826         * class.c (mono_class_is_nullable): New method
14827         (mono_class_get_nullable_param): New mehod
14828         (mono_class_create_generic): In types T? set cast_class to T
14829
14830         * class-internals.h (MonoDefaults): new nullable default class
14831         (mono_class_get_nullable_param, mono_class_get_nullable_param):
14832         new methods.
14833
14834 2005-12-05  Raja R Harinath  <rharinath@novell.com>
14835
14836         * metadata.c (select_container): New.  Refactor code to select the
14837         appropriate GenericContainer given the type of generic parameter
14838         we are looking for.
14839         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
14840         not a MonoGenericContext.  Use select_container.  Update parameters.
14841         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
14842         and MONO_TYPE_MVAR.
14843         (unwrap_arrays): Remove duplicate tests.
14844         (find_generic_param): Rename from 'has_same_context'.  Now walks a
14845         generic instantiated class to find any arguments that are generic
14846         parameters.
14847         (mono_type_create_from_typespec_full): Use find_generic_param to
14848         avoid evicting some generic instantiations from the typespec
14849         cache.
14850
14851 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
14852
14853         * reflection.c: fixed writing of doubles on ARM FPA.
14854
14855 2005-12-02  Robert Jordan  <robertj@gmx.net>
14856
14857         * icall.c: Fixed EventInfo.ReflectedType (#76829).
14858
14859 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14860
14861         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
14862         least on SUSE 10 they are not the same (on debian, they are just the
14863         same thing).
14864
14865 2005-12-01  Raja R Harinath  <rharinath@novell.com>
14866
14867         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
14868         DeclaringType for VARs and MVARs.
14869         * class.c (set_generic_param_owner): Fix initialization of owner
14870         fields.
14871
14872 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
14873
14874         * icall.c: fixed Enum.ToObject() to correctly convert the values.
14875
14876 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14877
14878         * threadpool.c: workaround for a bug that shows up on the Mac:
14879         select()+connect() on a blocking socket is not like it should
14880         be, so we proceed to connect() in that case, wasting the I/O
14881         threadpool thread until connect succeedes. Fixes bug #75436.
14882
14883 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14884
14885         * threadpool.c: fix typo when setting file descriptor states.
14886
14887 2005-11-28  Raja R Harinath  <rharinath@novell.com>
14888
14889         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
14890         * metadata.c (mono_metadata_parse_method_signature_full): Don't
14891         create a temporary signature container.
14892         (mono_metadata_parse_generic_param): Update to changes.
14893         (mono_type_create_from_typespec_full): Update to changes.
14894         * loader.c (method_from_memberref): Don't use a
14895         MonoGenericContainer while parsing a memberref signature.
14896         (method_from_methodspec): Remove dead-store of the 'container'
14897         variable.  It's overwritten before use.
14898
14899         * metadata.c (mono_type_create_from_typespec_full): Make debugging
14900         checks tighter.
14901         (mono_metadata_parse_generic_param): Likewise.
14902         * loader.c (find_method_in_class): Does not need a
14903         MonoGenericContainer.  Use 'mono_method_signature' rather than
14904         'mono_method_signature_full'.
14905         (find_method, mono_get_method_constrained, method_from_memberref):
14906         Update to changes.
14907
14908         * metadata.c (mono_type_create_from_typespec_full): Ensure that
14909         owner-less generic-parameters are never evicted from the typespec
14910         cache.
14911
14912         * loader.c (method_from_memberref): Don't use the current context
14913         when parsing signatures.
14914         (method_from_methodspec, mono_get_method_from_token): Update to changes.
14915
14916         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
14917         side-effects in g_assert.
14918         * loader.c (mono_get_method_from_token): Resolve klass earlier so
14919         that we don't potentially lose information.
14920
14921 2005-11-26  Dick Porter  <dick@ximian.com>
14922
14923         * icall.c:
14924         * threads.c: icalls to implement basic (ie, not named)
14925         System.Threading.Semaphore.
14926
14927 2005-11-24  Dick Porter  <dick@ximian.com>
14928
14929         * process.c
14930         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
14931         Use GetProcessId() if it's available.
14932
14933 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
14934
14935         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
14936
14937 2005-11-23  Raja R Harinath  <rharinath@novell.com>
14938             Ankit Jain  <jankit@novell.com>
14939
14940         * loader.c (mono_get_method_from_token): Initialize 'method' field
14941         of all generic parameters before parsing the signature.  Remove
14942         code that "fixed"-up MVAR references.
14943
14944 2005-11-23  Ankit Jain  <jankit@novell.com>
14945
14946         * metadata.c (mono_metadata_has_generic_params):
14947         (mono_metadata_load_generic_param_constraints):
14948         (mono_metadata_load_generic_params): Move duplicate code ...
14949         (mono_metadata_get_generic_param_row): ... here. Returns the
14950         first row-id in GenericParam table for a given owner (token).
14951         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
14952         prototype.
14953
14954 2005-11-23  Raja R Harinath  <rharinath@novell.com>
14955             Ankit Jain  <jankit@novell.com>
14956
14957         * metadata.c (mono_metadata_class_equal): Pass signature_only when
14958         comparing VARs too.
14959         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
14960         type->data.generic_param only if the type is an MVAR.
14961         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
14962         leak owner-less VARs and MVARs into managed space.
14963
14964 2005-11-21  Martin Baulig  <martin@ximian.com>
14965
14966         * class-internals.h
14967         (MonoMethod): Moved the `generic_container' here from
14968         `MonoMethodNormal' since we now also need it for
14969         `MonoMethodPInvoke';
14970         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
14971         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
14972         an union containing both `MonoMethodNormal' and
14973         `MonoMethodPInvoke'.
14974
14975         * loader.c
14976         (mono_get_method_from_token): Allow implementing generic methods
14977         as interncalls.
14978
14979         * threads.c
14980         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
14981         icall.
14982
14983 2005-11-17  Dick Porter  <dick@ximian.com>
14984
14985         * icall.c: 
14986         * process.h: 
14987         * process.c: Split the Process Start_internal icall into
14988         ShellExecuteEx_internal and CreateProcess_internal, which are
14989         called depending on whether UseShellExecute is true.  Fixes bug
14990         76670.
14991
14992         * appdomain.c (MONO_CORLIB_VERSION): Incremented
14993
14994 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
14995
14996         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
14997         'msize' parameters, use the information in 'mspec' instead.
14998         (emit_object_to_ptr_conv): Ditto.
14999
15000         * marshal.c (emit_struct_conv): Handle explicit layout structs with
15001         fields out of order. Fixes #76733.
15002
15003 2005-11-17  Ankit Jain  <jankit@novell.com>
15004
15005         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
15006
15007 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
15008
15009         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
15010           bug #76575.
15011
15012 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
15013
15014         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
15015         for types with non-auto layout. Fixes #76717.
15016
15017 2005-11-16  Ankit Jain  <jankit@novell.com>
15018
15019         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
15020         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
15021         if generic_context is null.
15022           (mono_metadata_generic_param_equal): param->owner can be null.
15023           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
15024         null.
15025
15026 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
15027
15028         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
15029         the correct value.
15030
15031 2005-11-15  Martin Baulig  <martin@ximian.com>
15032
15033         * object.c (set_value): Use mono_class_from_mono_type() instead of
15034         the hack for generic instances; fixes #76136.
15035
15036 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
15037
15038         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
15039         fields.
15040
15041         * image.c (load_metadata_ptrs): Initialize the new fields.
15042
15043         * reflection.c (create_dynamic_mono_image): Ditto.
15044
15045         * reflection.c (build_compressed_metadata): Use the new fields.
15046
15047         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
15048         icall.
15049
15050         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
15051         icall.
15052         
15053 2005-11-15  Ankit Jain  <jankit@novell.com>
15054             Raja R Harinath  <harinath@gmail.com>
15055
15056         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
15057         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
15058         new per-generic_container cache if the cached MonoType's context matches
15059         the current context.
15060           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
15061         to the expected context.
15062           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
15063
15064 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15065
15066         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
15067         we changed the signature of an icall.
15068         * icall.c: Modify to mono_double_ParseImpl return true/false 
15069         depending on the success, instead of throwing the exception. This will
15070         help us in Double.TryParse methods.
15071         
15072 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
15073
15074         * marshal.c (emit_marshal_object): Throw an exception when
15075         marshalling 'object' instead of crashing. Fixes #76696.
15076
15077 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
15078
15079         * class-internals.h: Add prototype for mono_type_get_full_name ().
15080
15081 2005-11-11  Dick Porter  <dick@ximian.com>
15082
15083         * threads.c (mono_thread_manage): Make sure the main thread has
15084         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
15085
15086 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
15087
15088         * loader.c (mono_loader_set_error_type_load): Log a warning to the
15089         console about the missing type.
15090         (mono_loader_set_error_method_load): Ditto.
15091
15092 2005-11-09  Miguel de Icaza  <miguel@novell.com>
15093
15094         * mono-config.c (mono_get_config_dir): Set the system defaults if
15095         none is specified.
15096
15097         * assembly.c (mono_set_dirs): New API entry point to set the
15098         assembly and the config directory in one call
15099
15100 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
15101
15102         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
15103         the ftnptr was created from a delegate in a domain other than the
15104         current domain. Fixes #75377.
15105
15106         * exception.h exception.c: Add mono_get_exception_not_supported ().
15107
15108 2005-11-08  Martin Baulig  <martin@ximian.com>
15109
15110         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
15111
15112 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
15113
15114         * security-manager.h: Added definitions to deal with strongname key 
15115         pairs bigger (and smaller) than 1024 bits.
15116         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
15117         adjust wrt the public key length being used.
15118
15119 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
15120
15121         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
15122           Windows build (r51396-51397).
15123
15124 2005-11-03  Martin Baulig  <martin@ximian.com>
15125
15126         * class.c (mono_class_setup_vtable_general): Also add generic
15127         methods to the vtable; fixes #76581.
15128
15129 2005-11-01  Miguel de Icaza  <miguel@novell.com>
15130
15131         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
15132         sure that we lookup GetString method from the System.Text.Encoding
15133         class, not the derived class or we get an empty method.
15134
15135         Fixed class #76612.
15136
15137 2005-10-25  Miguel de Icaza  <miguel@novell.com>
15138
15139         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
15140         if it has been previously set (embedders). 
15141
15142         Make mono_set_rootdir available also on Unix.
15143
15144 005-10-24  Robert Jordan  <robertj@gmx.net>
15145
15146         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
15147
15148 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
15149
15150         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
15151         only calls which are made to native code use this flag.
15152
15153         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
15154
15155 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
15156
15157         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
15158         Add support for FieldBuilders.
15159
15160 2005-10-29  Martin Baulig  <martin@ximian.com>
15161
15162         * mono-debug.c
15163         (mono_debug_using_mono_debugger): New public method; returns
15164         whether we're running inside the debugger.
15165
15166 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
15167
15168         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
15169         for Method/Constructor/FieldBuilders.
15170
15171 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
15172
15173         * reflection.c (module_add_cattrs): Save custom attributes for global methods
15174         and fields as well.
15175
15176 2005-10-26  Martin Baulig  <martin@ximian.com>
15177
15178         * mono-debug-debugger.c
15179         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
15180
15181 2005-10-24  Raja R Harinath  <harinath@gmail.com>
15182
15183         * icall.c (base64_to_byte_array): Don't pass an out-of-range
15184         integer to isspace.
15185
15186 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
15187
15188         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
15189         when passing valuetypes byref. Fixes #76502.
15190
15191 2005-10-19  Jackson Harper  <jackson@ximian.com>
15192
15193         * profiler.c: Don't put a . in front of types that are not in a
15194         namespace.
15195
15196 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
15197
15198         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
15199
15200 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
15201
15202         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
15203         #76436.
15204         (mono_marshal_get_ldflda_wrapper): Fix a warning.
15205
15206 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15207
15208         * assembly.c metadata-internals.h icall.c: Define an additional
15209         parameter for mono_assembly_name_parse_full, so we can avoid creating
15210         S.R.AssemblyName.Version when no version info wasn't passed.
15211         
15212 2005-10-09  Miguel de Icaza  <miguel@novell.com>
15213
15214         * class.c (mono_type_get_full_name): Reimplement method that was
15215         removed. 
15216
15217         * image.c: Some docs
15218
15219 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
15220
15221         * profiler.c (output_newobj_profile): Fix printing of Total memory
15222         on x86.
15223
15224 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
15225
15226         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
15227
15228 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
15229
15230         * threads.c: remove debug output.
15231
15232 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
15233
15234         * threads.c (mono_thread_manage): Fix crashes if more than 64
15235         threads need to be aborted. Hopefully fixes #75899.
15236
15237         * assembly.c (mono_stringify_assembly_name): New helper function.
15238
15239         * class.c: Use mono_stringify_assembly_name instead of the similar
15240         static function.
15241
15242         * assembly.h assembly.c: Add support for calling a postload search 
15243         hook if an assembly cannot be loaded.
15244
15245         * appdomain.c: Register new search hooks which call the AssemblyResolve
15246         events in AppDomain. Fixes #75231
15247
15248 2005-10-07  Martin Baulig  <martin@ximian.com>
15249
15250         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
15251         methods without debug info.
15252
15253 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
15254
15255         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
15256         wrappers.
15257
15258 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15259
15260         * file-io.c: now that we return symlinks, use lstat and, when the file
15261         is a symbolic link, stat, to get the file attributes. Also avoid the
15262         conversion to/from utf16/external.
15263
15264 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
15265
15266         * class.c (mono_class_layout_fields): Compute klass->has_references
15267         correctly if an embedded valuetype is not yet initialized. Fixes
15268         #76331.
15269
15270 2005-10-04  Martin Baulig  <martin@ximian.com>
15271
15272         * metadata.c
15273         (mono_metadata_load_generic_param_constraints): New public
15274         function; splitted the constraints loading out from
15275         mono_metadata_load_generic_params().
15276
15277         * class.c (mono_class_create_from_typedef): Call
15278         mono_metadata_load_generic_param_constraints() after setting up
15279         the type and creating our parent; fixes #75329.
15280
15281 2005-10-04  Martin Baulig  <martin@ximian.com>
15282
15283         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
15284         non-dynamic parent classes.
15285
15286 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15287
15288         * file-io.c : win32 build fix (ETXTBSY seems not found).
15289
15290 2005-10-04  Martin Baulig  <martin@ximian.com>
15291
15292         * reflection.c
15293         (mono_image_get_methodspec_token): Make the cache actually work;
15294         fixes #75974.
15295
15296 2005-10-04  Martin Baulig  <martin@ximian.com>
15297
15298         * class.c (mono_class_name_from_token): Removed the unneccessary
15299         `MonoGenericContext *' argument.
15300
15301 2005-10-04  Martin Baulig  <martin@ximian.com>
15302
15303         * loader.c
15304         (method_from_methodspec): Make the caching work again; fixes the
15305         performance regression from #76262.
15306
15307 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15308
15309         * file-io.c:
15310         * file-io.h:
15311         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
15312         GetFileSystemEntries that performs the same work but without going
15313         into io-layer, locking, etc.
15314
15315 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
15316
15317         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
15318         ThreadState_Stopped as well. Fixes #76047.
15319
15320 2005-09-29  Martin Baulig  <martin@ximian.com>
15321
15322         * class.c
15323         (inflate_generic_context): If the new context has a `gmethod', set
15324         its `container' that that gmethod's `container'.
15325
15326         * metadata.c
15327         (mono_metadata_parse_generic_param): Simplify things;
15328         `generic_container = generic_context->container;' is just fine.
15329
15330         * loader.c (method_from_methodspec): Code cleanups.
15331
15332 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
15333
15334         * decimal.c: fix warning (and let gcc generate correct
15335         code on ARM with optimizations).
15336
15337 2005-09-28  Martin Baulig  <martin@ximian.com>
15338
15339         * loader.c
15340         (method_from_memberref): Added `MonoGenericContext *class_context'
15341         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
15342         (method_from_methodspec): If we're a memberref, use the enclosing
15343         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
15344
15345 2005-09-28  Martin Baulig  <martin@ximian.com>
15346
15347         * object.c (mono_runtime_invoke_array): Added support for
15348         MONO_TYPE_GENERICINST; fixes #75917.
15349
15350 2005-09-27  Martin Baulig  <martin@ximian.com>
15351
15352         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
15353         `k->byval_arg.type' to determine the actual type.
15354
15355         * loader.c (method_from_methodspec): Removed some hacks.
15356
15357 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
15358
15359         * class-internals.h (mono_field_is_deleted): Do the test for
15360         rtspecialname before we check the actual name of the field. This
15361         prevents us from dereferencing a pointer into the string table,
15362         saving us from accessing a few pages
15363
15364         * *.c: Replace the use of {Enter,Leave}CriticalSection with
15365         macros. This will allow a deadlock debugger to easily be plugged
15366         in.
15367
15368 2005-09-27  Martin Baulig  <martin@ximian.com>
15369
15370         * loader.c (method_from_methodspec): Create a "signature"
15371         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
15372
15373 2005-09-27  Martin Baulig  <martin@ximian.com>
15374
15375         * class.c
15376         (inflate_generic_class): Correctly set the new context's
15377         container.
15378
15379         * loader.c
15380         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
15381         instead of a `MonoGenericContext *'.
15382         (mono_method_signature_full): Take a `MonoGenericContainer *'
15383         instead of a `MonoGenericContext *'.
15384
15385         * metadata.c
15386         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
15387         instead of a `MonoGenericContext *'.
15388         (mono_metadata_parse_method_signature_full): Likewise.
15389
15390 2005-09-26  Martin Baulig  <martin@ximian.com>
15391
15392         * class.c
15393         (mono_class_from_generic_parameter): Set `klass->generic_container'
15394         (mono_class_from_generic_parameter): Likewise.
15395         (mono_bounded_array_class_get): We inherit the generic container
15396         from the element class.
15397
15398         * loader.c
15399         (find_method, find_method_in_class): Take a `MonoGenericContext *'
15400         argument rather than computing it here.
15401         (method_from_memberref): Correctly set the generic context before
15402         parsing the signature.  Fixes #75681.
15403
15404 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
15405
15406         * object.c (mono_class_has_special_static_fields): Fix warnings.
15407
15408 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15409
15410         * assembly.c: Add parse_public_key function, to
15411         par the public keys. Also added mono_assembly_name_parse_full,
15412         to define it the parsed key should be freed or not.
15413         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
15414         to parse a long format assembly name.
15415         * metadata-internals.h: Keep mono_assembly_name_parse_full as
15416         private, since calling it to preserve the key requires
15417         freeing it manually.
15418         
15419 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
15420
15421         * locales.c : removed HAVE_ICU part.
15422
15423 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
15424
15425         * object.c (mono_class_create_runtime_vtable): Avoid calling 
15426         field_is_special_static if the klass has no special static fields.
15427
15428         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
15429         (MonoCachedClassInfo): Likewise.
15430
15431         * object.c (mono_class_has_special_static_fields): New helper function.
15432
15433 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15434
15435         * class.c (mono_class_create_from_typedef): Don't call 
15436         interfaces_from_typedef_full for enums.
15437         (mono_class_create_from_typedef): Compute the base types of enums directly
15438         without calling mono_class_setup_fields ().
15439         (mono_class_find_enum_basetype): New helper function.
15440
15441         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
15442         one place inside the string heap.
15443         
15444 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
15445
15446         * class.c: locking fixes, code cleanups, some docs added.
15447         Allocate some data structures in the image mempool.
15448
15449 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15450
15451         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
15452         the example code.
15453         
15454 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
15455
15456         * class-internals.h, class.c, reflection.c: reduce memory taken by
15457         MonoClass.
15458
15459 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
15460
15461         * metadata.c, metadata.h, loader.h: documentation updates, code and
15462         API cleanups.
15463
15464 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15465
15466         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
15467         the example code.
15468
15469         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
15470         page faults caused by the runtime while reading metadata.
15471
15472 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15473
15474         * socket-io.c: the field names were changed 3 months ago and no one
15475         realized until bug #76077 got filed!
15476
15477 2005-09-20  Martin Baulig  <martin@ximian.com>
15478
15479         * icall.c (assembly_icalls): Removed some unused debugger icalls.
15480
15481 2005-09-20  Martin Baulig  <martin@ximian.com>
15482
15483         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
15484         write the rank into the class entry.
15485
15486 2005-09-20  Martin Baulig  <martin@ximian.com>
15487
15488         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
15489
15490 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
15491
15492         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15493
15494         * icall.c (custom_attrs_defined_internal): New icall.
15495
15496         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
15497         function.
15498         (mono_custom_attrs_construct_by_type): New helper function.
15499
15500 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
15501
15502         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
15503         terminate the resulting string. Fixes #76123.
15504
15505 2005-09-16  Martin Baulig  <martin@ximian.com>
15506
15507         * mono-debug.c
15508         (mono_debug_add_method): Ignore inflated methods for the moment.
15509
15510 2005-09-14  Martin Baulig  <martin@ximian.com>
15511
15512         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
15513
15514 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
15515
15516         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
15517         return a success/failure indication.
15518         (mono_metadata_interfaces_from_typedef_full): Ditto.
15519         (get_constraints): Ditto.
15520
15521 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
15522
15523         * marshal.c (emit_marshal_array): Fix handling of null arrays.
15524         
15525         * marshal.c (emit_marshal_array): Add support for returning string
15526         arrays from delegates. Fixes #76063.
15527
15528         * marshal.c: Use the emit_ldloc/stloc macros where possible.
15529
15530 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
15531
15532         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
15533         icall.
15534
15535 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
15536
15537         * reflection.c icall.c: Fix after mono_get_exception_type_load
15538         signature change.
15539
15540         * assembly.c (mono_assembly_get_assemblyref): New helper function.
15541         (mono_assembly_load_reference): Use the new helper.
15542
15543         * class-internals.h (MonoLoaderError): New structure containing 
15544         information about type loading errors.
15545
15546         * class-internals.h loader.c: Add APIs to store per-thread loader
15547         error information.
15548
15549         * loader.c class.c: Set the loader error if needed.
15550
15551         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
15552
15553 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
15554
15555         * decimal.c: fixed to handle the broken ARM fp format.
15556
15557 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
15558
15559         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
15560         broken.
15561
15562 2005-09-06  Martin Baulig  <martin@ximian.com>
15563
15564         * domain.c (supported_runtimes): Added v2.0.50727.
15565
15566 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
15567
15568         * culture-info.h: reduce the size of some structures.
15569
15570 2005-09-05  Martin Baulig  <martin@ximian.com>
15571
15572         Reflect latest API changes in the August CTP.
15573
15574         * icall.c
15575         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
15576         ("MonoType.HasGenericArguments"): Removed.
15577         ("MonoMethod.BindGenericParameters"): Renamed to
15578         "MakeGenericMethod".
15579         ("MethodBuilder.BindGenericParameters"): Renamed to
15580         "MakeGenericMethod".    
15581
15582 2005-09-05  Martin Baulig  <martin@ximian.com>
15583
15584         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
15585
15586 2005-09-05  Martin Baulig  <martin@ximian.com>
15587
15588         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15589
15590         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
15591         generic_container is non-NULL.
15592
15593 2005-09-05  Martin Baulig  <martin@ximian.com>
15594
15595         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15596
15597         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
15598
15599 2005-08-29  Michal Moskal  <malekith@nemerle.org>
15600
15601         * reflection.c (encode_locals,
15602         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
15603         for large generic types.
15604
15605 2005-09-05  Martin Baulig  <martin@ximian.com>
15606
15607         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15608
15609         * class.c (mono_dup_array_type): New public method.
15610         (mono_metadata_signature_deep_dup): New public method.
15611         (dup_type): Correctly duplicate array and function types.
15612
15613 2005-09-05  Martin Baulig  <martin@ximian.com>
15614
15615         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15616
15617         * reflection.c (get_default_param_value_blobs): Handle generic types
15618         and generic methods.
15619
15620 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
15621
15622         * class.c: Fixed error reporting (method/class were inversed) for 
15623         inheritance demands.
15624         * security-manager.c|h: Added the AppDomain when calling the managed
15625         System.Security.SecurityManager.InheritanceDemand method.
15626
15627 2005-09-01  Raja R Harinath  <rharinath@novell.com>
15628
15629         * reflection.c (encode_marshal_blob): 'marshaltype' and
15630         'marshaltyperef' are alternate sources for the custom marshaler
15631         name.
15632
15633 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
15634
15635         * class.c: fix creation of array classes with rank == 1
15636         (patch by Ankit Jain <jankit@novell.com>).
15637
15638 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
15639
15640         * object.c: fix check for creating the bound data for arrays vs
15641         szarrays.
15642
15643 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15644
15645         * object.c: configuration file name is now based on the executable name,
15646         not the image name. Fixes bug #75931.
15647
15648 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
15649
15650         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
15651         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
15652
15653 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
15654
15655         * rand.c: Use wincrypt.h instead of WinCrypt.h.
15656
15657 2005-08-24  Ankit Jain  <jankit@novell.com>
15658             Raja R Harinath  <rharinath@novell.com>
15659
15660         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
15661           called by it recursively.
15662           (mono_class_init): Remove special case in pending_init handling, since it's
15663           superseded by the fix to mono_class_from_typeref.
15664
15665 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
15666
15667         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
15668         BROKEN_THREAD_START stuff.
15669
15670 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
15671
15672         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
15673         trampoline.
15674
15675         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
15676         
15677         * object.c (mono_delegate_ctor): Replace the original function address with
15678         a delegate trampoline.
15679
15680 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
15681
15682         * icall.c: add boolean argument to base64_to_byte_array and 
15683         InternalFromBase64String to control whether a whitespace-only string
15684         is allowed (or should casue a FormatException to be thrown). We need
15685         this as the behavior has changed between MS.NET 1.x and 2.0, and we
15686         to match the MS behaviour in both profiles.
15687         * appdomain.c: Bump corlib version.
15688
15689 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15690
15691         This patch implements a big portion of publisher policy
15692         support, used to bind assembly versions and redirect
15693         one assembly from version A to version B.
15694
15695         * assembly.c:
15696         New GSList loaded_assembly_bindings, for storing the cached
15697         assembly bindings.
15698         (assembly_binding_maps_name): New static function for checking if a 
15699         assembly binding information maps an assembly name.
15700         (mono_assembly_binding_info_free): New function for freeing
15701         assembly binding information resources.
15702         (get_publisher_policy_info): New static function for retrieving 
15703         assembly binding information from a MonoImage.
15704         (compare_versions): New static function for comparing an assembly
15705         binding information data and the version of an assembly name.
15706         (check_policy_versions): New static function for checking if an
15707         assembly binding info mapping an assembly name is valid for it.
15708         (mono_assembly_load_publisher_policy): New static function for
15709         loading the 'policy.major.minor.MyAssembly' image for an assembly
15710         with an assembly name 'aname'.
15711         (mono_assembly_bind_version): New static function for updating
15712         assembly redirection.
15713         (mono_assembly_apply_binding): New static function for applying
15714         assembly binding.
15715         (search_binding_loaded): New static function for searching 
15716         loaded assembly binding infos in the cache domain.
15717         (mono_assembly_load_full): Don't apply assembly binding for
15718         reflection only assemblies.
15719
15720         * metadata-internals.h: Add MonoAssemblyBindingInfo,
15721         which contains information about assembly binding. Also
15722         declare signature for mono_config_parse_publisher_policy ()
15723         function, used to retrieve pub policy info.
15724         
15725         * mono-config.c:
15726         (publisher_policy_start): New static function used to parse publisher 
15727         policy config files.
15728         (publisher_policy_parser): New static MonoParseHandler containing 
15729         the functions used when parsing config files.
15730         (mono_config_parse_publisher_policy): New function for parsing
15731         publisher policy files.
15732         
15733 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
15734
15735         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
15736
15737         * marshal.c (mono_delegate_free_ftnptr): Ditto.
15738
15739         * object.c (mono_get_addr_from_ftnptr): New helper function.
15740
15741         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
15742
15743         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15744
15745 2005-08-19  Dick Porter  <dick@ximian.com>
15746
15747         * threads.c, threads.h, appdomain.c, appdomain.h,
15748         profiler-private.h, monitor.c, object.c, object-internals.h,
15749         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
15750         store the thread ID, so it can hold a 64 bit value if needed.
15751
15752 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
15753
15754         * reflection.c (mono_reflection_create_dynamic_method): Store the
15755         handle class into the method references as well so ldtoken works in
15756         dynamic methods.
15757
15758         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
15759         types.
15760
15761 2005-08-19  Ankit Jain <jankit@novell.com>
15762
15763         Fix #75847.
15764         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
15765           here rather than using the method signature of a arbitrary function
15766           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
15767           two arguments.
15768           Hack done with Harinath.
15769
15770 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15771
15772         * threadpool.c: disable printing stack traces when we get a exception
15773         in a threadpool thread. I need to do more testing to figure out which
15774         cases actually print this. Fixes bug #75828.
15775
15776 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15777
15778         * icall.c: there might be ignored whitespace after the last '='. This
15779         fixes length computation and bug #75840.
15780
15781 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
15782
15783         * assembly.c (mono_assembly_load_full): Consider .exe extension as
15784         well. Fixes #75809.
15785
15786         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
15787         #75784.
15788         
15789         * reflection.c (create_custom_attr_data): Ditto.
15790
15791 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
15792
15793         * locales.c, culture-info.h : removed RegionLCIDMap.
15794         * culture-info-tables.h : regenerated.
15795
15796 2005-08-16  Martin Baulig  <martin@ximian.com>
15797
15798         * class.c (mono_type_get_name_recurse): Small fix.
15799
15800 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
15801
15802         * locales.c : indentation fixie.
15803
15804 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
15805
15806         * object-internals.h,
15807           locales.h,
15808           locales.c,
15809           culture-info.h,
15810           icall.c : added RegionInfo table support.
15811         * culture-info-table.h : regenerated for region support.
15812
15813 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
15814
15815         * reflection.c (resolve_object): handle all kinds of MonoMethod
15816         including generic ones
15817
15818 2005-08-12  Ankit Jain <jankit@novell.com>
15819
15820         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
15821           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
15822
15823 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
15824
15825         * process.c: Don't close a thread handle when it's NULL. This is a
15826         workaround for bug #75733.
15827
15828 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
15829
15830         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
15831
15832 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
15833
15834         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
15835
15836 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15837
15838         * threadpool.c: if a work item in the thread pool has a callback that
15839         catches a exception, don't propagate it after invoking the callback.
15840         Fixes bug #75336.
15841
15842 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
15843
15844         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
15845
15846         * class-internals.h (MonoCachedClassInfo): Add some new fields.
15847
15848         * class.c (mono_class_init): Load field info lazily in the AOT case.    
15849
15850         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
15851
15852 2005-08-03  Ankit Jain  <jankit@novell.com>
15853
15854         Fix #75683.
15855         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
15856           PInvoke calling convention is 0.
15857
15858 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
15859
15860         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
15861         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
15862
15863 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
15864
15865         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
15866         to handle threads not started by the GC (patch by Michael Meeks
15867         <michael.meeks@novell.com>).
15868
15869 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
15870
15871         * reflection.c: Make buffer used in emitting types larger for some
15872         big generic types (patch by Michal Moskal).
15873
15874 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
15875
15876         * mono-debug.c: Fix some (not all) alignment problems.
15877
15878 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15879
15880         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
15881         Invoke mono_image_load_from_data_full passing the refonly
15882         parameter.
15883
15884         * assembly.c
15885         (mono_assembly_open_from_bundle): Add the refonly argument, 
15886         in order to pass it to other methods it calls to.
15887         (do_mono_assembly_open): Add the refonly argument, in order 
15888         to pass it to other methods it calls to.
15889         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
15890         the refonly parameter to it.
15891
15892         * image.c: Add loaded_images_refonly_hash and
15893         loaded_images_refonly_guid_hash to cache the reflection
15894         only loaded images.
15895         (mono_images_init): Initialize the hash tables used for
15896         caching the reflection only images.
15897         (load_modules): Invoke mono_image_open_full passing the refonly
15898         parameter to load the modules the correct way.
15899         (build_guid_table): Add the refonly argument, to re-build the 
15900         correct hash table.
15901         (do_mono_image_open): Added the refonly argument, in order to
15902         define it for the loaded image.
15903         (mono_image_loaded_full): New function, which receives an
15904         additional parameter to look for the image in the refonly or
15905         non-refonly section.
15906         (mono_image_loaded): Updated, using mono_image_loaded_full.
15907         (mono_image_loaded_by_guid_full): The same case that happens
15908         with mono_image_loaded_full.
15909         (mono_image_loaded_by_guid): Likewise.
15910         (register_image): Use the ref_only variable inside MonoImage
15911         to decide in which hash table store the current image.
15912         (mono_image_open_from_data_full): Rename
15913         mono_image_open_from_data to mono_image_open_from_data_full,
15914         adding the refonly argument, to define the ref_only variable 
15915         inside MonoImage.
15916         (mono_image_open_from_data): Return 
15917         mono_image_open_from_data_full.
15918         (mono_image_open_full): Rename mono_image_open to
15919         mono_image_open_full, receiving the new refonly argument,
15920         to pass it to inner methods.
15921         (mono_pe_file_open): Update this function, to open
15922         a MonoImage as a non-refonly image.
15923         (mono_image_close): Use the refonly variable inside
15924         MonoImage to remove the image from the correct caches.
15925
15926         * image.h: Add the signatures of mono_image_open_full,
15927         mono_image_open_from_data_full, mono_image_loaded_full,
15928         mono_image_loaded_by_guid_full.
15929
15930         * metadata-internals.h: Add the ref_only field to 
15931         MonoImage.
15932         
15933 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15934
15935         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
15936         Fix the last behavior, which used to load the assemblies and
15937         extract MonoReflectionAssemblyName information, instead of
15938         extract it from the metadata tables. Needed for Reflection
15939         Only assemblies.
15940         
15941 2005-07-29  Martin Baulig  <martin@ximian.com>
15942
15943         * mono-debug-debugger.c
15944         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
15945         not initialized.
15946
15947         * mono-debug.c
15948         (mono_debug_address_from_il_offset): Check whether we have
15949         debugging support before attempting to take the lock.
15950         (mono_debug_source_location_from_address): Likewise.
15951         (mono_debug_source_location_from_il_offset): Likewise.
15952         (mono_debug_il_offset_from_address): Likewise.
15953         (mono_debug_address_from_il_offset): Likewise.
15954
15955 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
15956
15957         * class.c (mono_class_from_name_case): Add support for dynamic images.
15958         Fixes #75650.
15959
15960         * object.c (mono_class_compute_gc_descriptor): Add a workaround
15961         for #75479.
15962
15963 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
15964         
15965         * reflection.c (mono_method_get_object): Fix warning.
15966
15967 2005-07-28  Martin Baulig  <martin@ximian.com>
15968
15969         * mono-debug.c
15970         (mono_debug_add_wrapper): Also write the wrapper type.
15971
15972 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
15973
15974         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
15975         
15976         * class.c (mono_class_init): Avoid reading nested classes if the AOT
15977         data indicates the class has none.
15978
15979 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
15980
15981         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
15982         loader lock with the debugger lock. Prevents deadlocks for beagle.
15983
15984         Beagle can now run on an smp box for a weekend without any
15985         issues. Woohoo!
15986
15987 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
15988
15989         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
15990         in a module. Fixes #75629.
15991
15992 2005-07-26  Martin Baulig  <martin@ximian.com>
15993
15994         * mono-debug.c (mono_debug_add_wrapper): New static method.
15995         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
15996         interncall or a wrapper.
15997
15998         * mono-debug.h (MonoDebugWrapperData): New public typedef.
15999         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
16000         (MONO_DEBUGGER_VERSION): Bump to 51.
16001
16002         * mono-debug-debugger.c
16003         (mono_debugger_add_type): Removed this empty function.
16004         (mono_debugger_add_method): Likewise.
16005
16006 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
16007
16008         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
16009         before accessing method->slot.
16010
16011 2005-07-21  Jb Evain  <jbevain@gmail.com>
16012
16013         * reflection.c (method_encode_clauses/class): Handle filters clauses.
16014         Fixes #75010.
16015
16016 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
16017
16018         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
16019         #75587.
16020
16021 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
16022
16023         * image.h image.c: Add mono_image_get_guid () API function.
16024
16025 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
16026
16027         There were issues when multiple threads tried to load
16028         assemblies. A deadlock was created between assemblies_mutex and
16029         mono_domain_assemblies_lock. This fixes the issue by making the
16030         assembly ref counting be lock free. See bug 75586.
16031         
16032         * image.c (mono_image_close): The add ref function here was using
16033         Interlocked operations while the unref was using a mutex and a
16034         --. I don't think this was ever a bug that would be exposed in a
16035         non-pendantic way (ie, by an embedder doing a ref on one thread
16036         and an unref on another), but for the sake of correctness, this is
16037         now Interlocked.
16038
16039         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
16040         (mono_assembly_load_reference): Call mono_assembly_addref rather
16041         than touching the refcount ourselves.
16042         (mono_assembly_close): Use InterlockedDecrement to unref the
16043         assembly. Don't acquire the lock unless it is actually needed.
16044
16045 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
16046
16047         * class.c (mono_class_layout_fields): Fix calculation of has_references
16048         for generic types.
16049
16050 2005-07-12  Martin Baulig  <martin@ximian.com>
16051
16052         Applying a patch from Michal Moskal <malekith@nemerle.org>.
16053
16054         * metadata.c
16055         (mono_type_hash): Provide better hashing for generic instances.
16056         (mono_generic_inst_hash): Improve hashing.
16057         (mono_generic_class_hash): Likewise.
16058
16059         * reflection.c (mymono_metadata_type_hash): Improve hashing for
16060         generic instances.
16061
16062 2005-07-12  Martin Baulig  <martin@ximian.com>
16063
16064         * reflection.c (mono_reflection_create_runtime_class): Remove the
16065         hack for generic type definitions and non-`Run' assemblies.
16066         (mono_reflection_bind_generic_parameters): Also use
16067         `klass->wastypebuilder' to check for TypeBuilders.
16068
16069 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
16070
16071         * class.c (mono_class_layout_fields): Fix calculation of has_references
16072         for generic types.
16073
16074         * class.c (inflate_generic_class): Fix a leak.
16075         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
16076         for generic types.
16077
16078 2005-07-11  Martin Baulig  <martin@ximian.com>
16079
16080         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
16081         on error.
16082
16083 2005-07-11  Martin Baulig  <martin@ximian.com>
16084
16085         * loader.c (find_method): Also lookup in
16086         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
16087
16088 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
16089
16090         * appdomain.c (mono_domain_unload): Don't free the error message
16091         before passing it to mono_get_exception_...
16092
16093         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
16094         
16095 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
16096
16097         * threads.c: try to better guess an available RT signal (bug #75387).
16098
16099 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
16100
16101         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
16102         and CACHE_OBJECT.
16103
16104 2005-07-07  Martin Baulig  <martin@ximian.com>
16105
16106         * class.c (mono_type_get_name_full): Return NULL for
16107         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
16108         fixes #75408.
16109
16110 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
16111
16112         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
16113         exit the appdomain as well being aborted.
16114
16115         * threadpool.c: Create all threadpool threads inside the root appdomain, and
16116         change back to the root domain after calling managed code. This enables
16117         appdomains using threadpools to be unloaded.
16118
16119 2005-07-07  Martin Baulig  <martin@ximian.com>
16120
16121         * class-internals.h
16122         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
16123         into `MonoDynamicGenericClass' since we only need it for dynamic
16124         types.
16125
16126         * reflection.c (mono_class_bind_generic_parameters): We don't need
16127         to compute the `parent' here.
16128
16129 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
16130
16131         * culture-info-table.h : regenerated.
16132
16133 2005-07-06  Martin Baulig  <martin@ximian.com>
16134
16135         * icall.c
16136         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
16137
16138         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
16139
16140 2005-07-06  Martin Baulig  <martin@ximian.com>
16141
16142         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
16143         we're doing a signature-only comparision; fixes #74945.
16144
16145 2005-07-06  Martin Baulig  <martin@ximian.com>
16146
16147         * class-internals.h (MonoGenericClass): Moved some things out into
16148         a new `MonoInflatedGenericClass' type.  
16149         (MonoInflatedGenericClass): New type; the `klass' of a
16150         `MonoGenericClass' is now computed lazyly in
16151         mono_get_inflated_generic_class().      
16152
16153         * class.c (mono_get_inflated_generic_class): New public function.
16154         (mono_class_inflate_generic_method): Removed the unused
16155         `MonoClass *' argument.
16156         (setup_generic_vtable): Don't call mono_get_inflated_method() on
16157         all the methods.
16158         (mono_class_create_generic): Make this static and merge it with
16159         mono_class_create_generic_2(); we're now called automatically from
16160         mono_get_inflated_generic_class().
16161
16162         * loader.c (mono_method_signature): Call
16163         mono_get_inflated_method() here.
16164
16165 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
16166
16167         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
16168         type of fields with RVA.
16169
16170         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
16171         for this pseudo class.
16172         (my_mono_class_from_generic_parameter): Likewise.
16173         (mono_class_init): Allow interfaces to have cctors.
16174
16175 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
16176
16177         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
16178         lazily for AOT methods.
16179
16180 2005-07-05  Martin Baulig  <martin@ximian.com>
16181
16182         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
16183         returns FALSE for a successful match, not TRUE.
16184
16185 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
16186
16187         * loader.c (mono_method_get_index): Optimize this a bit.
16188
16189 2005-07-04  Martin Baulig  <martin@ximian.com>
16190
16191         * class.c
16192         (class_compute_field_layout): Move the check for generic type
16193         definitions into mono_class_layout_fields().  Fixes #74684.
16194         (mono_class_from_generic_parameter): Correctly compute
16195         `klass->parent'; fixes #75457.
16196
16197         * reflection.c (register_assembly, register_module): Make sure
16198         `domain->rejobject_hash' is already created.
16199
16200 2005-07-02  Martin Baulig  <martin@ximian.com>
16201
16202         * class-internals.h
16203         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
16204         `MonoDynamicGenericClass'.      
16205
16206 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
16207
16208         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
16209         returned by a field getter is null, since null is a valid value.
16210
16211 2005-07-01  Martin Baulig  <martin@ximian.com>
16212
16213         * reflection.c (mono_reflection_generic_class_initialize): Update
16214         the `dgclass->fields [i].parent' to the correct class.
16215         (mono_image_get_fieldref_token): Use the declaring type, not the
16216         reflected type.
16217
16218 2005-07-01  Martin Baulig  <martin@ximian.com>
16219
16220         * loader.c (find_method): Also look in the interfaces; fixes #75429.
16221
16222 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
16223
16224         * threads.c (thread_cleanup): assert that thread != NULL
16225         (wait_for_tids_or_state_change): We were using the wrong variable
16226         when accessing wait->threads. `i' was always out of the bounds of
16227         the array.
16228
16229 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16230
16231         * loader.c: map user32 and kernel32 to libMonoSupportW
16232
16233 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
16234
16235         * appdomain.c (unload_thread_main): Mark this as WINAPI.
16236
16237 2005-06-28  Martin Baulig  <martin@ximian.com>
16238
16239         * loader.c (method_from_methodspec): Fix #75334.
16240
16241 2005-06-28  Martin Baulig  <martin@ximian.com>
16242
16243         Fix #74953 - Arrays now implement the generic IList<T> interface
16244         on the 2.0 platform.
16245
16246         * class-internals.h (MonoDefaults): Added `generic_array_class'.
16247
16248         * reflection.c (mono_class_bind_generic_parameters): New public
16249         function; similar to mono_reflection_bind_generic_parameters(),
16250         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
16251
16252         * domain.c (mono_init_internal): Try to initialize.
16253         `mono_defaults.generic_array_class' here; this'll only succeed if
16254         we're using the 2.0 corlib.
16255
16256         * icall.c
16257         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
16258         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
16259         (mono_lookup_internal_call): Added support for nested classes.
16260
16261         * loader.c
16262         (mono_get_method_from_token): Set `result->signature->pinvoke' if
16263         we're an interncall and have generic arguments.
16264
16265         * class.c
16266         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
16267         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
16268         instance of System.Array.InternalArray<T> for arrays, so they
16269         implement the generic IList<T> interface.
16270
16271 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
16272
16273         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
16274         (chastamar@yahoo.com). Fixes #75374.    
16275
16276 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
16277
16278         * culture-info-table.h: regenerated.
16279
16280 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16281
16282         * icall.c: handle spaces correctly for base64 strings.
16283
16284 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
16285
16286         * *.c: Kill some warnings.
16287
16288 2005-06-23  Duncan Mak  <duncan@novell.com>
16289
16290         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
16291         that this builds on Solaris 10 (x86).
16292
16293 2005-06-23  Martin Baulig  <martin@ximian.com>
16294
16295         * class.c
16296         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
16297         generic type definitions.
16298
16299 2005-06-23  Martin Baulig  <martin@ximian.com>
16300
16301         Fix #75331.
16302
16303         * metadata.c (mono_class_get_overrides): Renamed to
16304         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
16305         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
16306         pass it to mono_get_method_full().
16307
16308 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
16309
16310         * reflection.c (mono_reflection_create_runtime_class): take the
16311         mono_domain_lock in this method. Prevents deadlocks
16312
16313 2005-06-22  Martin Baulig  <martin@ximian.com>
16314
16315         * loader.c (method_from_methodspec): Fix #75330.
16316
16317 2005-06-22  Martin Baulig  <martin@ximian.com>
16318
16319         * reflection.c (type_get_qualified_name): Use
16320         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
16321         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
16322         argument; use it if we don't have an assembly name.
16323
16324 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
16325
16326         * object.c: In mono_message_init, set "copy out" flag for in
16327         parameters with the [Out] flag.
16328
16329 2005-06-21  Martin Baulig  <martin@ximian.com>
16330
16331         * class.c
16332         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
16333         and MONO_TYPE_PTR.
16334
16335 2005-06-21  Martin Baulig  <martin@ximian.com>
16336
16337         * class.c (mono_class_init): Don't initialize `class->fields' for
16338         generic instances since they're initialized again in
16339         compute_field_layout(). 
16340         (compute_field_layout): Set the field's `generic_info' here; fix
16341         #75320. 
16342
16343 2005-06-21  Martin Baulig  <martin@ximian.com>
16344
16345         * class-internals.h
16346         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
16347
16348         * metadata.c (mono_metadata_generic_method_equal): Also
16349         distinguish the `generic_class'; fixes #75334.
16350
16351 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16352
16353         * domain.c:
16354         * appdomain.c:
16355         * domain-internals.h:
16356         * reflection.c: 'domain_assemblies' field is now protected by its own
16357         lock. Don't call into managed code to run the AssemblyLoad event if we
16358         now there are no registered delegates for it.
16359
16360 2005-06-20  Martin Baulig  <martin@ximian.com>
16361
16362         * class.c (mono_class_is_assignable_from): Use a custom version of
16363         mono_class_has_parent() to make things work for generic instances;
16364         fix #75300.
16365
16366 2005-06-20  Martin Baulig  <martin@ximian.com>
16367
16368         * loader.c (method_from_methodspec): Apply a patch from
16369         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
16370
16371 2005-06-20  Martin Baulig  <martin@ximian.com>
16372
16373         * class.c (mono_class_init): Reverted Zoltan's last change; it
16374         breaks generics.
16375
16376 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
16377
16378         * threads.c (wait_for_tids_or_state_change): Add missing locking.
16379
16380 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16381
16382         * socket-io.c: fix the index in the socket array for writable/error
16383         sockets. Fixes bug #75306.
16384
16385 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
16386
16387         * class.c (mono_class_init): Allow interfaces to have static ctors.
16388
16389 2005-06-17  Martin Baulig  <martin@ximian.com>
16390
16391         * loader.c (method_from_methodspec): Use `context->container' when
16392         parsing the `gmethod->inst'.
16393
16394 2005-06-17  Martin Baulig  <martin@ximian.com>
16395
16396         * class.c (mono_type_get_name_recurse): Don't add the assembly
16397         name for type arguments.
16398
16399 2005-06-15  Martin Baulig  <martin@ximian.com>
16400
16401         * reflection.c (mono_image_get_inflated_method_token): Encode
16402         correct klass; fixes #75260.
16403
16404 2005-06-13 Michal Moskal <malekith@nemerle.org>
16405
16406         * icall.c: Make GetCorrespondingMethod/Constructor take
16407         MonoReflectionMethod method not MonoMethod. Removed
16408         MonoType.GetCorrespondingField, and make
16409         MonoGenericType.GetCorrespondingField take name not
16410         MonoClassField.
16411
16412 2005-06-13  Michal Moskal <malekith@nemerle.org>
16413
16414         * reflection.c (field_encode_signature, encode_locals):
16415          Make sizes of buffers for types larger (for big generic types).
16416          (create_generic_typespec,
16417          mono_reflection_sighelper_get_signature_local,
16418          mono_reflection_sighelper_get_signature_field):
16419          Add asserts for too small buffers.
16420
16421 2005-06-15  Martin Baulig  <martin@ximian.com>
16422
16423         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
16424         if our parent is not a dynamic type.
16425
16426 2005-06-15  Martin Baulig  <martin@ximian.com>
16427
16428         * class-internals.h (MonoTypeNameFormat): New enum.
16429
16430         * class.c
16431         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
16432         (mono_type_get_full_name): Removed.
16433         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
16434         argument instead of the boolean's.
16435
16436         * icall.c (ves_icall_System_MonoType_getFullName):
16437         Added `gboolean assembly_qualified'.    
16438
16439         * reflection.h
16440         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
16441
16442         * reflection.c (mono_reflection_parse_type): Parse the new type
16443         name format.
16444
16445 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16446
16447         * icall.c: no need to convert from utf16 to utf8 and then back again
16448         after the call to GetLogicalDrives.
16449
16450 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16451
16452         * icall.c: frombase64. Fix problems exposed by new tests.
16453
16454 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16455
16456         * icall.c: added internal calls for converting char [] and strings in
16457         base64 into byte [].
16458
16459 2005-06-10  Martin Baulig  <martin@ximian.com>
16460
16461         * class.c (mono_class_create_generic_2): Read the nested classes
16462         from the metadata rather than from `gklass->nested_classes' since
16463         `gklass' might not be initialized yet.
16464
16465 2005-06-09  Duncan Mak  <duncan@novell.com>
16466
16467         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
16468         all public headers. Fixes #74919.
16469
16470 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
16471
16472         * domain.c: The key for proxy_vtable_hash is now a pointer
16473         array. Added new GHashFunc and GCompareFunc functions for this.
16474
16475         * class.h: The list of interfaces in MonoRemoteClass is known in
16476         advance and can't grow (we create a new MonoRemoteClass if needed),
16477         so now the interface array can be allocated together with
16478         MonoRemoteClass.
16479         
16480         * object.c: Added a new method create_remote_class_key.
16481         Fixed mono_remote_class so it does not depend on
16482         mono_upgrade_remote_class.
16483         Removed extend_interface_array.
16484         Added new method clone_remote_class(), which makes a copy of a remote
16485         class and adds a new interface or class to it.
16486         mono_upgrade_remote_class() now creates a new remote class (or gets
16487         it from the cache) if an vtable upgrade is needed. In this way
16488         we make sure that other objects sharing the same remote class
16489         don't get the new vtable with unwanted interfaces.
16490         
16491         * object-internals.h:
16492         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
16493         
16494         * marshal.c: Track changes in mono_upgrade_remote_class().
16495
16496 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
16497         * icall.c: Add runtime methods for obtaining members of inflated
16498         class, which were created from supplied non-inflated members. It
16499         is used in internal Get{Method,Constructor,Field} methods in
16500         System.Type
16501
16502 2005-06-09  Martin Baulig  <martin@ximian.com>
16503
16504         * reflection.c
16505         (mono_reflection_bind_generic_method_parameters): Fix #75169.
16506
16507 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16508         * reflection.c (mono_image_basic_init): Define
16509         Version in MonoDynamicAssembly. 
16510         
16511 2005-06-08  Martin Baulig  <martin@ximian.com>
16512
16513         Fix #75136.
16514
16515         * loader.c
16516         (mono_method_signature_full): New public method; takes a
16517         `MonoGenericContext *'.
16518         (find_method): Use mono_method_signature_full() and pass the
16519         klass'es context to it.
16520
16521         * class.c (mono_class_is_inflated_method): Use
16522         mono_method_signature_full() and pass the context to it.
16523
16524 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
16525
16526         * object.c: add proper locking in mono_remote_class_vtable(),
16527         fixes possible memory corruption.
16528
16529 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
16530
16531         * marshal.c (mono_remoting_marshal_init): set
16532         initialized after initialization.
16533
16534 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
16535
16536         * locales.c : hush.
16537
16538 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
16539
16540         * object.c (extend_interface_array): fix really silly
16541         memory corrupting / comparison bug.
16542
16543 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16544
16545         * reflection.c: Functions added to support the creation
16546         of CustomAttributeData, which includes Attribute data
16547         used by ReflectionOnly methods.
16548
16549         * reflection.h:  mono_reflection_get_custom_attrs_data and
16550          mono_custom_attrs_data_construct added (functions exposed).
16551
16552          * icall.c: Added mono_reflection_get_custom_attrs_data
16553          as icall.
16554         
16555 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
16556
16557         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
16558         lupus's request.
16559
16560 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
16561
16562         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
16563
16564         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
16565         dynamic DllImportAttribute.
16566
16567         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
16568         dynamic DllImportAttribute.
16569
16570         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
16571         Fixes #75162.
16572
16573 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16574
16575         * threads.c: avoid segfault when an unstarted thread is aborted.
16576
16577 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
16578
16579         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
16580         Returns the name and version of the runtime for reporting.
16581
16582 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16583
16584         * appdomain.c: bump corlib version.
16585         * object-internals.h: new field in MonoReflectionAssembly.
16586
16587 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16588
16589         * object-internals.h: Carlos forgot to add this field.
16590
16591 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16592
16593         * icall.c: Added create_version to create instances
16594         of Version of MonoReflectionAssemblyName. This change helps
16595         the AssemblyName tests to keep running fine.
16596         
16597 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
16598   
16599         * object.c (mono_method_return_message_restore): A somehow less
16600         intrusive fix for #75138.
16601
16602 2005-06-03  Raja R Harinath  <rharinath@novell.com>
16603
16604         * object.c (mono_method_return_message_restore): Fix computation
16605         of expected number of out args.
16606
16607 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
16608
16609         * reflection.c (mono_image_get_method_info): Fix the case when the
16610         charset is empty.
16611
16612 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
16613
16614         * object.c: Added missing null check in
16615           mono_method_return_message_restore.
16616
16617 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
16618
16619         * reflection.c (mono_image_get_method_info): Handle the case when
16620         dllentry is empty.
16621
16622 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
16623
16624         * object.c: When creating the vtable for a proxy, take into account
16625         all inherited interfaces, not only the ones registered in
16626         iclass->interfaces. This fixs bug #74996.
16627         Also, in mono_method_return_message_restore, verify that the array
16628         of out args has the expected lengh.
16629
16630 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16631
16632         * socket-io.c: update the timeout in Poll when the call is interrupte.
16633
16634 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16635
16636         * socket-io.c: support abort/suspend in Select_internal after last
16637         change.
16638
16639 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16640
16641         * threadpool.c: remove warning.
16642
16643 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16644
16645         * icall.c:
16646         * socket-io.[ch]: Select_internal uses poll() now when available, thus
16647         removing the 1024 limit from select(). Runtime part of the fix for
16648         bug #71203.
16649
16650 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16651
16652         * socket-io.c: when resolving the addresses for the same
16653         host returned by gethostname(), get the local IPs from the interface
16654         list. Loopback addresses are discarded if the are interfaces up with
16655         non-loopback ones. Fixes bug #63265.
16656
16657 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
16658
16659         * appdomain.c, verify.c, object-internals.h, reflection.c:
16660         bumped corlib number to 36, and added new extra_flags field
16661         to ReflectionMethodBuilder and friends.  Fixes #75060.
16662
16663 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
16664
16665         * gc.c: register a new weak link only if the object is non-null
16666         (fixes bug#75047).
16667
16668 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
16669
16670         * culture-info.h : short time pattern too.
16671
16672 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
16673
16674         * culture-info.h : expand long time pattern string length.
16675
16676 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16677
16678         * culture-info-table.h : update (more French date format; #72788).
16679
16680 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
16681
16682         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
16683         the method is static. Fixes #75029.
16684
16685 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
16686
16687         * reflection.c: Update the table_idx field of method builders after
16688         saving the module, since it can change. This is a workaround for
16689         bug #74914. 
16690
16691 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16692
16693         * culture-info-table.h : update (additional French date format).
16694
16695 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
16696
16697         * icall.c (ves_icall_type_Equals): Revert last change.
16698         
16699         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
16700
16701         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
16702
16703 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
16704
16705         * class-internals.h: Added executioncontext_class field to 
16706         MonoDefaults structure.
16707         * domain.c: Cache System.Threading.ExecutionContext class in 
16708         mono_defaults.
16709         * object.c: Capture the ExecutionContext for asynchroneous calls in
16710          mono_async_result_new.
16711         * object-internals.h: Added execution_context and original_context 
16712         fields to MonoAsyncResult. Added execution_context to MonoThread.
16713         * security-manager.c|.h: Added mono_get_context_capture_method to 
16714         return the capture method (if required by the security manager or by
16715         the framework version used).
16716         * threadpool.c: Apply capture (if present) ExecutionContext in 
16717         mono_async_invoke and revert to original context after it completes.
16718
16719 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
16720
16721         * culture-info-table.h : updated (real hacky solution for zh-CHT).
16722
16723 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
16724
16725         * culture-info-table.h : zh-CHT related workaround.
16726
16727 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
16728
16729         * marshal.c (emit_marshal_custom): Add some error checking and call the
16730         methods in the ICustomMarshaler interface. Fixes #74875.
16731         
16732         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
16733         native->managed wrappers.
16734
16735 2005-05-12  Martin Baulig  <martin@ximian.com>
16736
16737         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
16738         here and use the loader lock.
16739
16740         * mono-debug.c: Properly lock when the debugger is not attached.
16741         (mono_debug_init): Release the initial lock if we're not running
16742         in the debugger.
16743
16744 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
16745
16746         * marshal.c (emit_marshal_custom): Pass through NULL values without
16747         calling the custom marshalling routines.
16748
16749         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
16750         conversion in structures. Fixes #74882.
16751
16752 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
16753
16754         * culture-info-table.h : zh-* cultures were missing.
16755
16756 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
16757
16758         * threads.c: Added a new event background_change_event which is signaled
16759         when a thread changes its background mode.
16760         Moved here several checks previously done in managed code. The checks
16761         require the thread lock, and using the thread lock in managed code
16762         can result in deadlocks.
16763         Merged Start_internal and Thread_internal into a single method. Now 
16764         Thread_internal does all work of creating and starting a thread.
16765         Added icalls for setting and getting the state of the object. Moved from
16766         managed code to avoid locking there.
16767         Added wait_for_tids_or_state_change() which is called instad of
16768         wait_for_tids when waiting for non-backround threads to end. This method
16769         will return if one of the threads ends or the background_change_event
16770         is signaled.
16771         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
16772         the background mode. This method signals the background_change_event
16773         event.
16774         * icall.c:
16775         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
16776         removed Start_internal.
16777         
16778 2005-05-11  Martin Baulig  <martin@ximian.com>
16779
16780         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
16781         to order of some fields to get proper alignment on 64-bit machines.
16782
16783 2005-05-11  Martin Baulig  <martin@ximian.com>
16784
16785         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
16786         changes as they're broken and completely fuck up the debugger.
16787
16788         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
16789
16790 2005-05-10  Martin Baulig  <martin@ximian.com>
16791
16792         * reflection.c (mono_reflection_generic_class_initialize): Don't
16793         call mono_class_setup_parent() here.
16794
16795 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16796
16797         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
16798         send/receive timeout use an integer in milliseconds. We were using a
16799         struct timeval.
16800
16801 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16802
16803         * locales.c:
16804         (internal_get_cultures): reserve the first slot of the array for the
16805         InvariantCulture, which will be filled in managed code.
16806
16807 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
16808
16809         * reflection.c (mono_image_fill_module_table): Initialize the
16810         GENERATION field as well.
16811
16812 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16813
16814         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
16815         Monitor.Enter on the object.
16816
16817 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
16818
16819         * threads.c: Enable the wait for running threads when exiting.
16820         * icall.c: Suspend all threads before exiting.
16821
16822 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
16823
16824         * assembly.c (mono_assembly_load_reference): Fix warning.
16825
16826 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16827
16828         * threadpool.c: changed the default number of threads per cpu. From now
16829         on, the default will be 20 + (5 * number of cpus) instead of 50.
16830
16831 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
16832
16833         * loader.c (mono_method_get_signature_full): Add locking here.
16834
16835 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
16836
16837         * appdomain.c: Moved methods for parsing and freeing assembly
16838         names to assembly.c.
16839         * assembly.c, domain-internals.h: Created public methods for parsing
16840         assembly names. Fixed mono_assembly_load_with_partial_name:
16841         it now finds the best match, taking into account the version,
16842         token and culture specified in the partial name. Also return
16843         the latest version if no version information is specified.
16844
16845 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
16846
16847         * threadpool.c: replace check for SocketAsyncCall class.
16848
16849 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16850
16851         * threadpool-internals.h:
16852         * Makefile.am: added threadpool-internals.h
16853
16854         * threadpool.c: call mono_unhandled_exception on exceptions not handled
16855         that happen in threadpool threads (tested on MS).
16856         (mono_thread_pool_remove_socket): new function that dispatch any pending
16857         AIO call on a socket that is closing. By now only epoll really needs it,
16858         as select/poll wake up when the socket closes.
16859
16860
16861         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
16862
16863 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
16864
16865         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
16866
16867 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
16868
16869         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
16870
16871 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
16872
16873         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
16874         has an abort request, convert it into a suspend request.
16875
16876 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
16877
16878         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
16879         warning for the usage of `UnmanagedFunctionPointerAttribute' which
16880         is not supported yet.
16881
16882 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16883
16884         * image.c: register assemblies loaded from data (bundles) in the loaded
16885         assemblies hash. Fixes bug #74772.
16886
16887 2005-04-29  Martin Baulig  <martin@ximian.com>
16888
16889         * class.c (mono_type_get_name_recurse): Update to the new naming
16890         schema from the latest .NET 2.x beta2.
16891         (mono_class_setup_vtable_general): If we're a generic instance,
16892         copy the vtable from our generic type definition and inflate all
16893         the methods in it.
16894
16895         * loader.c (find_method): Update to the new naming schema from the
16896         latest .NET 2.x beta2.
16897
16898 2005-04-29  Raja R Harinath  <harinath@gmail.com>
16899
16900         * class.c (mono_class_init): Add a mono_loader_unlock to the
16901         #74734 fix.
16902
16903 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
16904
16905         * icall.c (ves_icall_System_Environment_Exit): Remove the 
16906         suspend_all_other_threads () call for the time being, since it can hang.
16907
16908         * threads.c (mono_thread_manage): Similarly, disable the waiting for
16909         the background threads to exit, since it can also hang.
16910
16911         * class.c (mono_class_init): Applied patch from Ankit Jain 
16912         (radical@gmail.com). Avoid pending init errors when a field refers
16913         to a nested class using a typeref. Fixes #74734.
16914
16915         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
16916         this for dynamic modules.
16917
16918 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16919
16920         * threads.c: don't wait for threads that are in the process of aborting
16921         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
16922         and waiting for background threads to finish. This makes xsp and
16923         mod-mono-server exit without random length delays and/or hangs.
16924
16925 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16926
16927         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
16928
16929 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
16930
16931         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
16932         dynamic types to prevent infinite loops. Fixes #74727.
16933
16934         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
16935         ..._is_assignable_to.
16936
16937 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
16938
16939         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
16940
16941 2005-04-25  Martin Baulig  <martin@ximian.com>
16942
16943         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
16944
16945         * domain.c
16946         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
16947
16948         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
16949
16950         * reflection.c (build_compressed_metadata): Set metadata header
16951         version to 2.0.
16952
16953 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
16954
16955         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
16956         number into an integral and a decimal part. Fixes #70473.
16957
16958         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
16959
16960 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
16961
16962         * culture-info-table.h : reflected the latest locale-builder output.
16963
16964 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16965
16966         * threadpool.c: check for SuspendRequested too when deciding if
16967         mono_thread_interruption_checkpoint should be called.
16968
16969 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16970
16971         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
16972         * threads.c: remove interruption_mutex and use Interlocked instead. When
16973         suspending all the threads, wait for all the suspended events at once.
16974         If we're shutting down and get an APC that is going to be queued,
16975         call mono_thread_execute_interruption immediately, as the thread might
16976         be sleeping on a pthread condition or mutex.
16977
16978         * icall.c: call mono_runtime_set_shutting_down before suspending the
16979         threads.
16980
16981         Fixes bug #74693. And now xsp is happier when exiting.
16982
16983 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
16984
16985         * loader.c (mono_stack_walk): Fix #74690.
16986
16987 2005-04-22  Martin Baulig  <martin@ximian.com>
16988
16989         * mono-debug.h (MonoDebugMethodJitInfo): Added
16990         `MonoDebugMethodJitInfo *jit'.
16991
16992         * mono-debug.c (mono_debug_read_method): Cache the
16993         MonoDebugMethodJitInfo in `address->jit'.
16994         (mono_debug_free_method_jit_info): New public method.
16995
16996 2005-04-22  Martin Baulig  <martin@ximian.com>
16997
16998         * class.c (mono_class_is_assignable_from): Disallow
16999         type parameter -> interface.
17000
17001 2005-04-21  Dick Porter  <dick@ximian.com>
17002
17003         * threads.c (mono_thread_create): Turn an assertion into an error.
17004
17005 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
17006
17007         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
17008         
17009         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
17010         Fix some gcc 4.0 warnings.
17011
17012 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
17013
17014         * file-io.c: fix alt dir separator char on unix systems
17015         and cleanup (fixes bug #71214).
17016
17017 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
17018
17019         * marshal.c: Use CALLVIRT instead of CALL when dispatching
17020         a call to a remote domain, since the method may be an
17021         interface method in the client domain. This fixes bug #74192.
17022
17023 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17024
17025         * threadpool.c: recv/send are now performed before going back to managed
17026         code to save one transition.
17027
17028 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17029
17030         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
17031
17032         * metadata/threadpool.c: removed hack to workaround the bug above.
17033
17034         Fixes bug #74618.
17035
17036 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
17037
17038         * reflection.c reflection.h: Fix handling of parameter defaults in
17039         dynamic methods. Also fixes handling of parameter attributes.
17040         Fixes #74609.
17041
17042         * mono-debug.c (mono_debug_close_image): Fix warning.
17043
17044 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17045
17046         * socket-io.h: replaced old unused field with new 'blocking'.
17047         * threadpool.c: restore socket blocking state on windows(tm).
17048
17049 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
17050
17051         * icall.c: don't return the codebase in the AssemblyName[] returned by
17052         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
17053         * object-internals.h: Removed FIXME (fields were presents) and fixed
17054         versioncompat declaration.
17055
17056 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17057
17058         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
17059         not closed, so don't cleanup when it happens.
17060
17061 2005-04-13  Chris Toshok  <toshok@ximian.com>
17062
17063         * mono-debug-debugger.h: change prototype for
17064         mono_debugger_lookup_type.
17065
17066         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
17067         this function, although it should probably be named
17068         mono_debugger_init_type.
17069
17070 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17071
17072         * threadpool.c: fix non-AIO case.
17073
17074 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
17075
17076         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
17077         the built-in profiler to measure just JIT compilation times.
17078
17079 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17080
17081         * threadpool.c: the epollfd might be closed by another thread at
17082         any time, so ignore EBADF at treat it as a "we're closing" sign.
17083
17084 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17085
17086         * threadpool.c: release the semaphores with a count equals to the number
17087         of working threads in both IO and regular pools. Fixed typo that messed
17088         up the count of IO pool threads. Don't initialize the pipe handles if
17089         we're using epoll.
17090
17091 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17092
17093         * threadpool.c: some systems don't like a NULL when deleting the socket
17094         from epoll.
17095
17096 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17097
17098         * threadpool.c: fix semaphore allocation.
17099
17100 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17101
17102         * threadpool.c: added epoll() based implementation for asynchronous IO
17103         that is used instead of the default poll() when available.
17104         It can be disabled by setting MONO_DISABLE_AIO.
17105
17106 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17107
17108         * threadpool.c: windows needs 'closesocket' and instead of returning
17109         0 when the stream is closed while in select, it returns -1. Fixes bug
17110         #74573.
17111
17112 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
17113
17114         * class.c (class_compute_field_layout): Fix the regression caused by
17115         the previous try.
17116
17117 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17118
17119         * threadpool.c: separate pool for socket async. IO.
17120         * threadpool.h: mono_max_worker_threads is not a global any more.
17121
17122 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
17123
17124         * class.c (class_compute_field_layout): Fix #74549.
17125
17126 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17127
17128         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
17129         use 2 connected sockets instead.
17130
17131 2005-04-08  Miguel de Icaza  <miguel@novell.com>
17132
17133         * mono-config.c: Add new entry point for mkbundle
17134         mono_config_parse_memory. 
17135
17136 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17137
17138         * threadpool.c: removed another unused function.
17139
17140 2005-04-08  Ankit Jain  <radical@corewars.org>
17141
17142         * reflection.c (get_default_param_value_blobs): Add 'types'
17143         parameter to get the types encoded in the constant table.
17144         (mono_param_get_objects): Use the type from the constant table,
17145         not the type of the parameter, when creating default values.
17146         Handle null default values correctly.
17147
17148 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17149
17150         * file-io.c:
17151         * file-io.h:
17152         * threadpool.c:
17153         * threadpool.h:
17154         * icall.c:
17155         * socket-io.c: removed dead code for async IO.
17156
17157 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17158
17159         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
17160
17161         * threadpool.c: intercept socket async. calls and pass them to a thread
17162         that is polling and dispatching the job items to the threadpool as
17163         socket become ready. Fixes bugs #71217, #71933.
17164
17165         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
17166         between char and short/ushort arrays.
17167
17168         * socket-io.c: remove dead code.
17169
17170 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
17171
17172         * locales.c,
17173           icall.c : removed InternalToUpper_Comp() and
17174           InternalToLower_Comp().
17175
17176 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
17177
17178         * char-conversions.h : The tables were incorrectly generated. Should
17179           be generated against invariant culture.
17180
17181 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
17182
17183         * object.c (mono_runtime_invoke_array): Fix return value when 
17184         passing pre-created valuetype objects to ctors.
17185
17186         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
17187         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
17188         Fixes #74338.
17189
17190 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
17191
17192         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
17193         only used with --security and hides the wrong corlib version error.
17194
17195 2005-03-30  Joshua Tauberer  <tauberer@for.net>
17196
17197         * class.c: Changed mono_class_name_from_token so that types
17198         outside of a namespace don't have an initial period.  Improved
17199         the g_warning message used in _mono_class_get when loading
17200         fails.
17201         * assembly.c: In mono_assembly_load_reference, when an assembly
17202         can't be found, "No such file or directory" is misleading and
17203         unhelpful because a few paths were checked for the presence of
17204         the assembly.  When that happens (ENOENT), display a nicer
17205         message indicating the directories that were searched.  In all
17206         cases, the warning is made easier to read for non-hackers.
17207
17208 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
17209
17210         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
17211         project/solution.
17212         * appdomain.h|domain.c: Removed inline from functions.
17213         * appdomain.c: Reduced warnings when compiling on windows.
17214         * icall.c: Fixed output_debug declaration to gunichar2*.
17215         * mono-config.c: Reduced warnings when compiling on windows.
17216         * rand.c: Added missing "windows.h". Added missing return value.
17217         * rawbuffer.c: Added missing winsock2.h for windows.
17218         * sysmath.h: Added mono-compiler.h header to allow/ease 
17219         compilation with non-GCC compilers.
17220         * threads.c: Fixed declarations to compile with VS.NET C compiler.
17221         Removed cast warnings.
17222
17223         Adapted from the work of J Lothian (for VC6).
17224
17225 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
17226
17227         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
17228         from default_path.
17229
17230 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
17231
17232         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
17233         the 2.0 profile.
17234
17235 2005-03-27  Raja R Harinath  <harinath@gmail.com>
17236
17237         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
17238         has to be in $(exec_prefix).  $(prefix) is for arch-independent
17239         stuff, and it would probably use $(prefix)/share rather than
17240         $(prefix)/lib.
17241
17242 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17243
17244         * console-io.c: added 2 includes that might be missing.
17245
17246 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
17247
17248         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
17249         profile.
17250
17251         * reflection.c (create_custom_attr): Allocate the params array using
17252         alloca so it gets GC tracking.
17253
17254 2005-03-23  Chris Toshok  <toshok@ximian.com>
17255
17256         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
17257         out some spew.
17258
17259 2005-03-24  Raja R Harinath  <rharinath@novell.com>
17260
17261         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
17262         changes to pick up any changes in prefix, etc.
17263
17264 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
17265
17266         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
17267         
17268         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
17269         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
17270
17271 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
17272
17273         * class-internals.h object-internals.h class.c reflection.c: Extend the
17274         mono_lookup_dynamic_token () function to return the class of the
17275         token as well. 
17276
17277         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
17278         well. Fixes #73848.
17279
17280 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
17281
17282         * security-manager.c: Skip inheritance checks for intra-corlib
17283         class inheritance and method overrides. This skips a lot of checks
17284         and (anyway) permissions cannot work until corlib is loaded.
17285
17286 2005-03-23  Martin Baulig  <martin@ximian.com>
17287
17288         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
17289         MONO_TYPE_GENERICINST.  
17290
17291 2005-03-23  Martin Baulig  <martin@ximian.com>
17292
17293         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
17294
17295 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17296
17297         * class.c: added locking comments to some functions.
17298         Cache the interface offsets arrays (saves about 20 KB
17299         of runtime memory in a typical app).
17300         Reduce the time overhead in mono_class_setup_supertypes ().
17301
17302 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
17303
17304         * icall.c: speedup and fix leaks in GetMethodsByName and
17305         GetPropertiesByName.
17306
17307 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17308
17309         * reflection.c: some locking fixes.
17310
17311 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
17312
17313         * metadata.c: added missing break in case statement.
17314
17315 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
17316
17317         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
17318         typedbyref return values. Fixes #73941.
17319
17320 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
17321
17322         * security-manager.c|h: Added demandunmanaged method and 
17323         suppressunmanagedcodesecurity class to MonoSecurityManager.
17324         Renamed aptc class to allowpartiallytrustedcallers.
17325
17326 2005-03-17  Martin Baulig  <martin@ximian.com>
17327
17328         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
17329
17330 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17331
17332         * file-io.c: disabled file async. IO using aio_*. It uses the
17333         threadpool now. Workaround for bug #73718.
17334
17335 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17336
17337         * assembly.h, mono-config.c: added code to deal with bundled configs
17338         for bundled assemblies.
17339
17340 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
17341
17342         * *.c, private.h: cleanup, removing old private.h header file.
17343
17344 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
17345
17346         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
17347         and throw_on_unmappable_char attributes.
17348
17349 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
17350
17351         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
17352         _ProcessName_internal.
17353
17354 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
17355
17356         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
17357         #73631.
17358
17359         * icall.c threads.c threads-types.h: Remove slothash icalls as they
17360         are no longer used.
17361
17362 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
17363
17364         * object.c (compute_class_bitmap): Add support for generics. Fixes
17365         #73527.
17366
17367 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
17368
17369         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
17370
17371 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17372
17373         * filewatcher.c: commented out the code for windows watcher, as we don't
17374         use it (we use the managed implementation instead).
17375
17376 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
17377
17378         * object-internals.h (MonoThread): Remove 'unused1' field.
17379
17380         * appdomain.c: Bump corlib version.
17381
17382         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
17383
17384         * reflection.c (mono_reflection_create_runtime_class): Remove the
17385         AssemblyBuilder.Save optimization since it causes too many problems.
17386
17387 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
17388
17389         * exception.c|h: Added mono_get_exception_reflection_type_load to
17390         create a ReflectionTypeLoadException object.
17391         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
17392         to return NULL is a InheritanceDemand fails during reflection. Updated
17393         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
17394         ReflectionTypeLoadException if an InheritanceDemand fails during 
17395         reflection. Added icall mapping for GetLinkDemandSecurity.
17396         * security-manager.c|h: Added ves_icall_System_Security_
17397         SecurityManager_GetLinkDemandSecurity internal call to return the
17398         class and methods permissions set for a LinkDemand. Removed unused
17399         fields in MonoSecurityManager.
17400
17401 2005-03-10  Martin Baulig  <martin@ximian.com>
17402
17403         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
17404         it's a generic instance.
17405
17406 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
17407
17408         * reflection.c (mono_get_object_from_blob): Applied patch from
17409         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
17410
17411         * class.c (mono_class_is_assignable_from): Another try at fixing 
17412         #73469 without breaking anything.
17413
17414 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
17415
17416         * class.c: (mono_class_is_assignable_from): Revert the last changes
17417         since they don't work with generics.
17418         
17419         * class.c (mono_class_is_assignable_from): Fix build bustage.
17420
17421         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
17422         the managed IsAssignableFrom method. Fixes #73469.
17423
17424         * reflection.c (mono_reflection_call_is_assignable_from): New helper
17425         function.
17426
17427 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
17428
17429         * object.c (mono_load_remote_field_new): Fix returning uninitialized
17430         memory when the remoting callback does not sets the out arguments.
17431         Fixes #73007.
17432
17433         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
17434         by mistake.
17435
17436         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
17437
17438         * object-internals.h (MonoStackFrame): Sync with managed object layout.
17439
17440         * appdomain.c: Bump corlib version.
17441
17442 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
17443
17444         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
17445         function.
17446
17447         * threads.c (mono_thread_attach): Detect threads which are not started
17448         by the GC pthread wrappers.
17449
17450 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
17451
17452         * icall.c: Added new icall for RNG.
17453         * rand.c|h: Added new icall to open the RNG. This allows to share a 
17454         single handle on Linux to access /dev/urandom and fix #73183.
17455
17456 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
17457
17458         * object.c: setting the new vtable in a transparent proxy object must
17459         not change the GC descriptor.
17460
17461 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17462
17463         * object.c: fixed compilation without GCJ support.
17464         * reflection.c: for runtime-created types ensure klass->has_references
17465         is correct (bug #73215).
17466
17467 2005-03-02  Martin Baulig  <martin@ximian.com>
17468
17469         * class.c (mono_class_is_assignable_from): Make this work if
17470         `oklass' is a generic instance; fixes #72831.
17471
17472 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
17473
17474         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
17475         with hasthis set.
17476         
17477         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
17478
17479         * marshal.c: Reorganize native->managed marshalling code to also use
17480         the emit_marshal_... functions.
17481
17482 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
17483
17484         * object.c: typed allocs have issues with bitmap sizes > 30,
17485         so check for max_set >= 30.
17486
17487 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
17488
17489         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
17490         managed code. Fixes #73012.
17491
17492         * metadata.h (MonoMarshalSpec): Add elem_mult field.
17493
17494         * metadata.c reflection.c: Load/Emit elem_mult as well.
17495         
17496         * metadata.h (MonoMarshalSpec): Add comment.
17497
17498         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
17499
17500         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
17501         num_elem to -1 if not given.
17502
17503         * object-internals.h (MonoReflectionMarshal): Add has_size field.
17504
17505         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
17506         given values.
17507
17508 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
17509
17510         * null-gc.c (mono_gc_free_fixed): Was not compilable.
17511
17512 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
17513
17514         * reflection.c (encode_marshal_blob): Encode param_num field as well.
17515
17516         * object-internals.h (MonoReflectionMarshal): Add param_num field.
17517
17518 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
17519
17520         * object.c: generalized the reference bitmap creation
17521         and added hooks for the new GC.
17522         * class-internals.c: removed the gc_bitmap field from MonoClass.
17523
17524 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17525
17526         * domain.c: help the compiler to produce better code
17527         in mono_jit_info_table_find ().
17528
17529 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
17530
17531         * object.c: make all allocations look typed.
17532
17533 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17534
17535         * socket-io.c: load Mono.Posix if it's not loaded already
17536         (fixes bug#73033).
17537
17538 2005-02-24  Martin Baulig  <martin@ximian.com>
17539
17540         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
17541         * reflection.c (dup_type): Likewise.
17542
17543 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
17544
17545         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
17546         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
17547
17548 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17549
17550         * domain.c, threads.c, object-internals.h: make the critical thread
17551         local vars use the fast access mode (even when we're compiled in
17552         a lib). Provide accessors to be used by the jit during codegen.
17553
17554 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17555
17556         * appdomain.c: Changed hook functios behavior to include
17557         support for the reflection only assemblies. Some icalls were changed
17558         to support the mentioned assemblies too. Signatures of static methods
17559         try_assembly_resolve and real_load now have an additional parameter:
17560         refonly.
17561
17562         * assembly.c: General changes to mono_assembly_ methods to support
17563         reflection only api. Functions mono_assembly_open, mono_assembly_load,
17564         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
17565         suffix, to support an additional gbool parameter to specify whether
17566         the assembli is reflection only or not. Created some new hook functions 
17567         to add support for reflection only assemblies. Signatures of static 
17568         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
17569         have now an additional parameter: refonly.
17570
17571         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
17572         indicating whether the assembly is reflection only or not.
17573
17574         * exception.c: Add mono_get_exception_invalid_operation.
17575
17576         * icall.c: Throw an InvalidOperationException when trying to invoke
17577         a property/method/event, or trying to set/get the value of a field.
17578         Also add an icall to retrieve the ref_only flag to the
17579         MonoReflectionAssembly.
17580
17581 2005-02-23  Chris Toshok  <toshok@ximian.com>
17582
17583         Part of fix for #72827.
17584         * mono-debug.c (mono_debug_add_method): add lexical block data to
17585         the info we write.  Kind of a hack at the moment - we copy the
17586         lexical block info from the MonoDebugMethodInfo to the
17587         MonoDebugMethodJitInfo here, before writing it.
17588         (mono_debug_read_method): read the lexical block info.
17589
17590         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
17591
17592         * debug-mono-symfile.h: add lexical block support.
17593
17594         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
17595         support.
17596
17597 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17598
17599         * loader.c (mono_lookup_pinvoke_call): Fix warning.
17600
17601         * object.c (mono_runtime_free_method): Call mono_free_method () and
17602         put the TODOs there.
17603
17604         * loader.c (mono_free_method): Free up most memory allocated for 
17605         dynamic methods.
17606
17607 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
17608
17609         * reflection.c: properly flag a Type argument to a
17610         named custom attr value (bug #72248).
17611
17612 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17613
17614         * reflection.c: reduce code duplication in named custom
17615         attribute encoding.
17616
17617 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
17618
17619         * reflection.c: properly encode custom attrs of type object
17620         (bug #72649).
17621
17622 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17623
17624         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
17625
17626 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
17627
17628         * socket-io.c: load System.dll if it's not loaded already
17629         (bug #72850 and #70477).
17630
17631 2005-02-21  Martin Baulig  <martin@ximian.com>
17632
17633         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
17634         generic instances.
17635
17636 2005-02-21  Martin Baulig  <martin@ximian.com>
17637
17638         * reflection.c (mono_image_build_metadata): We also need to
17639         "fixup" the MethodImpl table after we computed the final method
17640         indices.  Call fixup_methodimpl() to do that.
17641         (fixup_methodimpl): New private method.
17642
17643 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
17644
17645         * assembly.c: special case mscorlib.dll (bug#72536),
17646         patch from Carlos Alberto Cortez.
17647
17648 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
17649
17650         * threads-types.h threads.c: Fix build bustage.
17651
17652         * threads.c: Use a union for long<->double conversions.
17653
17654         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
17655         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
17656
17657         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
17658         containing the checkpoint call with NOT_TAKEN.
17659         
17660         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
17661         checkpoint before pushing the arguments, so they won't have to be
17662         spilled to stack.
17663
17664 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17665
17666         * domain.c, assembly.c, domain-internals.h: make some data
17667         const and relocation-free.
17668
17669 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
17670
17671         * object.c, appdomain.c, class-internals.h: introduce the
17672         MonoClassRuntimeInfo structure to hold the info needed to
17673         use a class at runtime. Made mono_class_vtable() lock-free
17674         for all the appdomains.
17675
17676 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
17677
17678         * metadata-internals.h, image.c: introduce a per-image mempool to
17679         be used for memory that has the same lifetime as the image.
17680
17681 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
17682
17683         * domain.c: In mono_init_internal(), instead of selecting the first
17684         runtime version supported by an executable, get a list of all
17685         supported versions and select the one for which an mscorlib exists
17686         (since even if the runtime supports a given version, it doesn't mean
17687         that the framework for that version is installed).
17688         Modified get_runtimes_from_exe to support this behavior.
17689         In supported_runtimes, added information about additional system
17690         assembly versions.
17691         
17692         * assembly.c: Added support for more than one system assembly version
17693         per runtime version. Updated the assembly list.
17694         In mono_assembly_remap_version, removed the initial version check,
17695         since we don't know to which version we need to compare until we
17696         get the version set on which the assembly is based.
17697         Moved the code for loading corlib into the new method
17698         mono_assembly_load_corlib(), so it can be used by the initialization
17699         code.
17700         
17701         * domain-internals.h: Updated data structures and added declaration
17702         for mono_assembly_load_corlib.
17703
17704 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17705
17706         * reflection.c (resolve_object): Fix the creation of the signature in 
17707         the SignatureHelper case.
17708
17709         * assembly.c (mono_assembly_remap_version): Fix binary search.
17710         
17711 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
17712  
17713         * class.c: Added inheritance check when a method is overloaded (from a
17714         virtual method or when implementing an interface) and when a class is
17715         inherited. Added functions to set a failure for a class and to 
17716         retreive the exception from a failure.
17717         * class-internals.h: Added fields to MonoClass to keep the exception
17718         information status for inheritance (or other exceptions) to be thrown
17719         later (i.e. not at load time).
17720         * object.c: Throw the inheritance SecurityException when a type is to 
17721         be created with either class or method inheritance violations.
17722         * reflection.c|h: Fix when getting declsec from a class. Removed 
17723         unrequired code for class. Improved sanity in parameter naming.
17724         * security-manager.c|h: Added functions to check for class and method
17725         inheritance.
17726
17727 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17728
17729         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
17730         and has_finalize in dynamic types as well.
17731
17732 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
17733
17734         * culture-info-table.h : fixed currency format for en-GB (and so on).
17735
17736 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
17737
17738         * gc.c: ensure the GC handles never have 0 as a value.
17739
17740 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
17741
17742         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
17743         a pointer to a struct to unmanaged code. Fixes #72625.
17744
17745 2005-02-16  Martin Baulig  <martin@ximian.com>
17746
17747         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
17748
17749 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
17750
17751         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
17752
17753 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
17754
17755         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
17756
17757         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
17758         UnmanagedFunctionPointerAttribute, use it for determining calling convention
17759         etc. Fixes #71471.
17760
17761         * reflection.c (mono_custom_attrs_get_attr): New helper function.
17762
17763         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
17764
17765 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
17766
17767         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
17768         changes to make the current context a field in MonoThread.
17769
17770 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
17771
17772         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
17773         the last change.
17774         
17775         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
17776         extracted from mono_marshal_get_native_wrapper.
17777
17778         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
17779         to create wrappers around native functions.
17780
17781         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
17782         delegates for arbitrary function pointers. Fixes #71472.
17783
17784 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
17785
17786         * threads.c: cleaned up the code a little.
17787
17788 2005-02-15  Martin Baulig  <martin@ximian.com>
17789
17790         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
17791         the data table.
17792
17793         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
17794         allocate larger chunks if needed.
17795
17796 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17797
17798         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
17799         in by mistake.
17800
17801 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
17802
17803         * domain.c: keep the domains in an array and ensure the domain ids
17804         are kept small, so they can be used as indexes to domain-specific data
17805         with a small memory overhead.
17806
17807 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17808
17809         * icall.c: Handle byref types in Type icalls. Fixes #72544.
17810
17811 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
17812
17813         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
17814
17815 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
17816
17817         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
17818
17819         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
17820         values.
17821
17822         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
17823         
17824 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
17825
17826         * domain-internals.h: add the hashtable here.
17827
17828         * class-internals.h: Remove `info' from MonoMethod
17829
17830         * domain.c: Add a new hashtable, jit_trampoline_hash
17831
17832 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
17833
17834         * object.c: don't set the value of static fields
17835         (fixes bug#72494).
17836
17837 2005-02-11  Martin Baulig  <martin@ximian.com>
17838
17839         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
17840         (mono_debug_add_method): Silently ignore the method if it's too big.
17841         (mono_debug_add_type): Likewise.
17842
17843 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
17844
17845         * threads.c, appdomain.c: remove #ifdefs from the code.
17846
17847 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
17848
17849         * metadata-internals.h: Added flags to MonoAssembly to cache the most
17850         common security informations. This allows us to stay in unmanaged code
17851         when doing LinkDemand and it's special cases (except for the first 
17852         time for initialization). The flags a very much used with --security.
17853         * reflection.c|h: Added code to get declarative security attributes 
17854         for LinkDemand and InheritanceDemand. This required to refactor the
17855         existing code for Demand.
17856         * security-manager.c|h: Added new method fields for the special cases
17857         of LinkDemand.
17858
17859 2005-02-10  Martin Baulig  <martin@ximian.com>
17860
17861         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
17862         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
17863
17864 2005-02-10  Martin Baulig  <martin@ximian.com>
17865
17866         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
17867         debugging code; this is almost a complete rewrite.
17868
17869         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
17870
17871 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17872
17873         * domain.c, object.h: expose mono_string_equal () and 
17874         mono_string_hash ().
17875         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
17876         it's implemented in managed code.
17877
17878 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17879
17880         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
17881         lo leak objects between appdomains.
17882
17883 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17884
17885         * assembly.c: old compilers compilation fix from 
17886         robertj@gmx.net (Robert Jordan).
17887
17888 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
17889
17890         * class-internals.h: Little reminder for the future.
17891
17892         * debug-helpers.c: Fix up wrapper_type_names
17893
17894 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17895
17896         * image.c, metadata-internals.h: when loading an image from a file,
17897         mmap all of it and use the same codepaths as when using a
17898         in-memory image: the code is simpler and we use less memory
17899         (both writable and readonly).
17900
17901 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
17902
17903         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
17904         API to alloc runtime data structures that need to be tracked by the
17905         GC and contain pointers.
17906         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
17907         make the code more readable and eventually use a different GC.
17908
17909 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
17910
17911         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
17912         for out arguments.
17913         
17914 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
17915
17916         * object.c: In release_type_locks(), don't release the cctor lock
17917         if it has already been released. This fixes a crash in the
17918         thread5 test.
17919
17920 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17921
17922         * gc.c, marshal.c, icall.c: register a delegate for finalization
17923         only when the native function pointer has been allocated for it.
17924
17925 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
17926
17927         * object.c: cleaned up some code, allocate objects that are
17928         pointer free with the atomic malloc variant. Allocate memory
17929         for static data from the mempool if it's pointer-free.
17930         Allocate the bounds array at the end of the array data, when needed.
17931         * object-internals.h, object.h: move a private function in a private
17932         header.
17933         * class.c: handle missing case in tracking references in fields.
17934
17935 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
17936
17937         * class.c, class-internals.h: keep track if a type has
17938         reference fields in either the instance or static fields.
17939
17940 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
17941
17942         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
17943         and renamed to MonoRuntimeInfo. Added fields to store the expected
17944         framework assembly version. Changed mono_get_framework_version and
17945         mono_get_runtime_version for a single mono_get_runtime_info method.
17946         
17947         * assembly.c: Added method to remap system assembly versions to the
17948         current executing runtime version. Removed old mapping code.
17949         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
17950         
17951         * icall.c, reflection.c: Track api changes.
17952
17953 2005-02-06  Miguel de Icaza  <miguel@novell.com>
17954
17955         * loader.c (method_from_memberref): Improve error reporting,
17956         produce the class name instead of the typeref/typedef index. 
17957
17958 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
17959
17960         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
17961
17962 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17963
17964         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
17965         stdcall and charset name mangling.  Reorganize the code and add
17966         some tracing stuff.
17967
17968 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
17969
17970         * monodiet.c: More iters!
17971
17972         * marshal.c: Iter usage.
17973
17974         * icall.c: Iter usage.
17975
17976         * object.c: Use iters.
17977
17978         * debug-helpers.c: More iters
17979
17980 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17981
17982         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
17983         under win32.
17984
17985 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
17986
17987         * mono-debug-debugger.c: use iters
17988
17989         * class.c, class-internals.h: mono_class_setup_events is static
17990         now
17991
17992         * All callers: use iters
17993
17994 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
17995
17996         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
17997         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
17998
17999 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
18000
18001         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
18002
18003         * marshal.h: Add prototypes for ldfld/stfld_remote.
18004
18005         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
18006         this is called during startup.
18007         
18008 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
18009
18010         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
18011         MonoThreadsSync struct private in monitor.c. Changed the way
18012         MonoThreadsSync is allocated so it's faster and there is no
18013         need to keep track of it with a finalizer and it uses less memory.
18014         This also finally allows us to allocate mono objects as ptrfree when
18015         there are no reference fields.
18016
18017 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
18018
18019         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
18020         disappearing link to the GC interface and use them to simplify
18021         the gchandles code.
18022
18023 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
18024
18025         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
18026         stfld_remote which call mono_load/store_field_new. This allows methods
18027         calling ldfld/stfld wrappers to be AOTed.
18028
18029         * console-io.c: Include sys/filio.h under solaris.
18030         
18031         * console-io.c: Include curses.h if needed correctly.
18032
18033 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
18034         
18035         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
18036         method->klass as well.
18037
18038         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
18039
18040         * class.c (mono_class_init): Switch on lazy initialization of 
18041         methods.
18042
18043         * class.c (mono_class_get_finalizer): Handle the case when the 
18044         finalizer is inherited.
18045
18046 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18047
18048         * console-io.c: <curses.h> is needed by term.h on solaris.
18049
18050 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
18051
18052         * icall.c, class-internals.h, monodiet.c, class.c: Remove
18053         mono_class_setup_properties where possible. Remove this ftn from
18054         the header file, and make it static.
18055
18056 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
18057
18058         * loader.c: Add missing setup_... call.
18059
18060         * class.c: Add missing setup_... calls.
18061
18062         * class.c (mono_class_init): Switch on lazy initialization of 
18063         the generic vtable.
18064         
18065         * class.c (mono_class_init): Fix generics broken by the recent changes.
18066
18067         * monodiet.c (handle_type): Add missing setup_... calls.
18068
18069         * class.c: Back out garbage in previous patch.
18070         
18071         * class.c: Add missing setup_... calls.
18072
18073         * class.c (mono_class_get_method_from_name_flags): Avoid calling
18074         mono_class_setup_methods () if possible.
18075
18076         * class-internals.h (MonoClass): Add 'has_cctor' flag.
18077
18078         * class-internals.h (MonoCachedClassInfo): New structure.
18079
18080         * class.c: Initialize properties and events fields of MonoClass lazily.
18081
18082         * class.c: Add infrastructure for lazily initializing the methods and
18083         vtable fields of MonoClass. Not yet used.
18084
18085         * class.c (mono_class_get_finalizer): New helper function.
18086
18087         * class.c: Add infrastructure for loading some class related data from
18088         an AOT file.
18089
18090         * object.c: Add infrastructure for initializing the vtable from data
18091         in the AOT file.
18092
18093         * gc.c (run_finalize): Use mono_class_get_finalizer ().
18094
18095         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
18096         appropriate initialization function before accessing parts of the
18097         MonoClass structure.
18098
18099         * marshal.c: Fix warnings.
18100         
18101         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
18102
18103         * mono-debug-debugger.c (get_exception_message): Use 
18104         mono_class_get_method_from_name_flags ().
18105
18106 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
18107
18108         * reflection.c, appdomain.c: Replace a few manual searches that
18109         Zoltan missed. (Paolo approved this part of my initial patch).
18110
18111 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
18112
18113         * profiler.c: disable recording statistical events at report time.
18114
18115 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
18116
18117         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
18118         to byteswap arrays of enum values, too (bug #72080).
18119
18120 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
18121
18122         * appdomain.c (set_domain_search_path): Allow this to be called if
18123         domain->setup is not yet set.
18124
18125         * loader.c (mono_method_get_index): New helper function.
18126
18127         * loader.c reflection.c: Use mono_method_get_index ().
18128
18129         * class.c (mono_class_get_method_from_name_flags): New helper method.
18130
18131         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
18132         this.
18133
18134         * class.c (mono_class_get_cctor): New helper method.
18135
18136         * string-icalls.c object.c class.c marshal.c reflection.c: Use
18137         mono_class_get_method () to look up methods.
18138
18139 2005-02-01  Miguel de Icaza  <miguel@novell.com>
18140
18141         * console-io.c: Fix the build, this should work on Windows.
18142
18143 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
18144
18145         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
18146         be set to null to keep things valid
18147
18148 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18149
18150         * icall.c: added Console 2.0 icalls.
18151         * Makefile.am: added console-io.[ch]
18152         * console-io.[ch]: internal calls for Console 2.0 API.
18153
18154 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
18155
18156         * class.c: make sure we consider all the interfaces
18157         when calculating max_interface_id (bug found by
18158         Jeroen Frijters running ikvm).
18159
18160 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
18161
18162         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
18163         valuetype fields to null.
18164
18165         * object.c (set_value): Ditto. Fixes #71669.    
18166
18167 2005-01-31  Martin Baulig  <martin@ximian.com>
18168
18169         * metadata.c (mono_metadata_has_generic_params): New public
18170         function; checks whether something is a generic method.
18171
18172 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
18173
18174         * appdomain.c: fix infinite recursion when adding assemblies.
18175
18176 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
18177
18178         * object.c: Fix small typo to return all items for Environment.
18179         GetCommandLineArgs.
18180
18181 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
18182
18183         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
18184         reflection.c: more domain and assembly-unload related fixes
18185         and memory leaks plugs.
18186
18187 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
18188
18189         * 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.
18190
18191 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
18192
18193         * loader.c (mono_method_signature): Make this method lazy
18194         (mono_get_method_from_token): Don't computate the signature here.
18195
18196         Doing this saves quite a bit of memory. I got 90 kb on starting up
18197         monodoc. It should also save some disk reads on startup.
18198
18199         * *: MonoMethod->signature might be NULL now. You *MUST* use
18200         mono_method_signature.
18201
18202 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
18203
18204         * object.c (mono_runtime_get_main_args): Return an array from the
18205         current domain here. Fixes #71938.
18206
18207 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
18208
18209         * monitor.c: formatting changes to comply with the
18210         mono coding style and remove #ifdefs from the code.
18211
18212 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
18213
18214         * metadata.c, private.h: remove some unneeded data
18215         and use a more compact representation for table schemas.
18216
18217 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
18218
18219         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
18220         to get a better distribution in hash tables.
18221         * *.c: use mono_aligned_addr_hash() where appropriate.
18222         * assembly.c: make var static.
18223
18224 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
18225
18226         * domain-internals.h: Put MonoJitInfo on a diet.
18227
18228         * domain.c: Fix a warning.
18229
18230 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
18231
18232         * gc.c: rework the gc handles code to reuse handles
18233         when freed.
18234
18235 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
18236
18237         * domain.c: fixed long standing bug in mono_string_equal() which
18238         was brought to light with the ldstr changes.
18239
18240 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
18241
18242         * reflection.c: Remove warning by adding missing include for marshal.h
18243
18244 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
18245
18246         * domain.c, object.c: change the ldstr_table to hold
18247         MonoString* as keys: makes the runtime isinterned lookup
18248         faster and simplifies memory management.
18249
18250 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
18251  
18252         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
18253         possible to add imperative security checks before calling the icall.
18254         * reflection.c: Return security attributes on the original MonoMethod
18255         (and not the wrapped one). This fix permissions on icalls.
18256
18257 2005-01-25  Dick Porter  <dick@ximian.com>
18258
18259         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
18260         the check for mktime() support actually test the mktime() return
18261         value.  "Fixes" bug 71682, though the output is still different to
18262         MS.
18263
18264 2005-01-25  Martin Baulig  <martin@ximian.com>
18265
18266         * class.c (mono_class_is_assignable_from): Make this work for
18267         generic instances.
18268
18269 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
18270
18271         * marshal.c (mono_string_utf8_to_builder)
18272         (mono_string_builder_to_utf16): We might not have ownership of the
18273         string. In thise case, we need to create a new buffer.
18274
18275         * object-internals.h (mono_stringbuilder_capacity): sb->str might
18276         be null, in which case, use the default capacity.
18277
18278 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
18279
18280         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
18281         GC events to the profiler.
18282
18283 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
18284
18285         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
18286         if you don't want the GC to run.
18287
18288 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
18289
18290         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
18291         start providing a GC API and keeping different implementations in
18292         their own file.
18293         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
18294
18295 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
18296
18297         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
18298         mmap rather than allocating a huge buffer.
18299         (mono_debug_close_mono_symbol_file): Free the buffer allocated
18300         above.
18301
18302 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
18303
18304         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
18305         and CheckExecutionRights.
18306         * reflection.c|h: Keep the index of the declarative security to be 
18307         used, instead of the pointer, when AOT compiler is used. Also add 
18308         class initialization when requesting demands.
18309         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
18310         CheckExecutionRights. Both properties are now FALSE by default, and
18311         unmodifiable, unless the --security option is used.
18312
18313 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18314
18315         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
18316         reflection.c: properly refcount images and assemblies, many leaks fixed.
18317
18318 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18319
18320         * threadpool.c: increase the timeout for threads in the thread pool to
18321         10s.  Fixes bug #67159.
18322
18323 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
18324
18325         * class-internals.h: Sun's compiler insists on explicit
18326         signed on bit fields to handle then correctly.
18327
18328 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
18329
18330         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
18331         Make the size of the array fit only the number of invalid path
18332         chars that we have.
18333
18334         * class.c (_mono_class_get): Improve the error reporting when a
18335         class referenced is not found, to assist debugging. 
18336
18337 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
18338
18339         * threads.c: fix off-by-one error.
18340         * domain.c: free data allocated in the domain.
18341
18342 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
18343
18344         * reflection.c (mono_method_body_get_object): Fill out exception info
18345         as well.
18346
18347         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
18348         structure.
18349         
18350 2005-01-19  Martin Baulig  <martin@ximian.com>
18351
18352         * loader.c (mono_get_method_constrained): Make this work again.
18353
18354 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
18355
18356         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
18357         guint16 to match the managed side.
18358
18359         * reflection.c (mono_reflection_body_get_object): Fill out local
18360         variables array.
18361
18362         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
18363         as well.
18364
18365         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
18366         'local_var_sig_token'.
18367
18368 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
18369
18370         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
18371         System.Drawing.
18372
18373         * reflection.c (mono_method_body_get_object): Handle abstract and
18374         runtime methods.
18375
18376 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
18377
18378         * marshal.c, loader.c, class-internals.h, reflection.c:
18379         store the emthod data for a wrapper in an array instead of a list.
18380
18381 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
18382
18383         * marshal.c: change the code to allocate memory more
18384         conservatively for method wrappers.
18385
18386 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
18387
18388         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
18389         fields from MonoClass to the marshal info structure where they belong.
18390
18391 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
18392
18393         * class.c, object.c, class-internals.h, marshal.c: rearrange
18394         some fields and tweak some types to lower memory usage.
18395
18396 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
18397
18398         * threads.c (signal_thread_state_change): Handle the case when the
18399         target thread is the current thread.
18400
18401         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
18402
18403         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
18404         emit_ptr_to_object_conv. 
18405
18406         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
18407         marshalling. Fixes #71352.
18408
18409 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
18410
18411         * metadata.h, blob.h: move table enum to blob.h so it can be included
18412         in any header.
18413         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
18414         cut the size of MonoImage/MonoDynamicImage.
18415
18416 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
18417
18418         * profiler.c (mono_profiler_install_simple): Fix default arguments.
18419
18420 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18421
18422         * reflection.c, reflection.h, icall.c: add a function to check
18423         if an attribute type is defined for a metadata object.
18424
18425 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
18426
18427         * object-internals.h: Added some needed fields from StringBuilder class.
18428         * marshal.c: Set the maxCapacity when creating a StringBuilder.
18429
18430 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
18431
18432         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
18433         threads before shutting down the runtime.
18434
18435         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
18436
18437 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
18438
18439         * object-internal.h, threads.c: implement stacksize and 
18440         parameterized thread start functionality (requires
18441         matching corlib). Marked broken code for later removal.
18442
18443 2005-01-12  Martin Baulig  <martin@ximian.com>
18444
18445         * class-internals.h (MonoGenericClass): Moved the `initialized'
18446         flag to MonoDynamicGenericClass, removed `init_pending'.
18447         (MonoGenericInst): Added `is_reference' flag.
18448
18449 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
18450
18451         * reflection.c (mono_image_create_pefile): Only set the pe_offset
18452         inside the MSDOS header. Fixes #71201.
18453
18454         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
18455         gc thread.
18456         (mono_domain_finalize): Ditto.
18457
18458 2005-01-12  Martin Baulig  <martin@ximian.com>
18459
18460         * class.c (mono_get_shared_generic_class): Use the cache for
18461         non-dynamic generic classes.
18462
18463         * class-internals.h (mono_class_create_generic_2): Removed
18464         function prototype, this function is now static inside class.c.
18465
18466         * class.c (mono_class_create_generic_2): Made this static, only
18467         call it from mono_class_init() and mono_class_setup_parent().
18468         (collect_implemented_interfaces_aux): Call mono_class_init() on
18469         the interfaces we collect.
18470         (mono_class_setup_vtable): Call mono_class_init (class->parent).
18471
18472 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18473
18474         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
18475         it a real thread handle.
18476
18477         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
18478         MonoJitExceptionInfo, since each catch clause needs its own variable.
18479         
18480 2005-01-11  Dick Porter  <dick@ximian.com>
18481
18482         * image.c (mono_pe_file_open): New variant on mono_image_open()
18483         that does not set up the CLI metadata; used for FileVersionInfo so
18484         it can get the data for windows binaries too.
18485         
18486         * process.c (process_read_string_block): Don't read off the end of
18487         the StringTable block.
18488
18489         These both fix bug 70766.
18490
18491 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
18492
18493         * gc.c: set some fields to NULL at GC cleanup time.
18494         * threads.c: if we quit the main thread, call exit ().
18495
18496 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18497
18498         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
18499
18500 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
18501
18502         * threads.h, threads.c, object.c: added accessor and settor for
18503         main_thread. Handle it specially when exiting from it: wait
18504         for other foreground threads to exit.
18505
18506 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
18507
18508         * process.c, verify.c: remove some bloat.
18509
18510 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
18511
18512         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
18513         the calling convention to cdecl under win32.
18514
18515 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
18516
18517         * object.c (mono_object_get_size): New function to get the size of
18518         an object instance.
18519
18520         * profiler.c (simple_allocation): Use above.
18521
18522 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
18523
18524         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
18525         ves_icall_System_AppDomain_getRootDomain (as it's not required to
18526         get an appdomain by it's id and we can't assume the root's id is 0).
18527         * domain-internals.h: Change the function prototype to match.
18528         * icall.c: Change the icall table for AppDomain.
18529
18530 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
18531
18532         * locales.c (string_invariant_compare_char): Only compute
18533         GUnicodeTypes in the case where we need them.  Test for ordinality
18534         first and return if so.
18535
18536         From the commit:
18537
18538                 /*
18539                  * FIXME: here we must use the information from c1type and c2type
18540                  * to find out the proper collation, even on the InvariantCulture, the
18541                  * sorting is not done by computing the unicode values, but their
18542                  * actual sort order.
18543                  */
18544
18545 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
18546
18547         * loader.c: for P/Invoke methods, allow the "Internal" shared
18548         library name to refer to the calling process symbol namespace.
18549
18550 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
18551
18552         * Makefile.am: Add the security manager to the build.
18553         * security-manager.c|h: New. Initialization of the security manager.
18554
18555 2005-01-07  Dick Porter  <dick@ximian.com>
18556
18557         * threads.c: 
18558         * monitor.c: Update thread state during Monitor and WaitHandle
18559         waits.  Fixes bug 71031.
18560
18561 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
18562
18563         * reflection.c (property_encode_signature): Correctly handle when the
18564         property has no methods.
18565
18566 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
18567
18568         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
18569         
18570         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
18571         fields from mb, not rmb. Fixes #71017.
18572
18573         * marshal.c (emit_ptr_to_str_conv): Add support for 
18574         ByValTStr -> string conversion. Fixes #71015.
18575
18576         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
18577
18578         * mempool.c (mono_mempool_contains_addr): New helper function.
18579
18580 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18581
18582         * metadata.c (mono_metadata_compute_size): Fix size calculation of
18583         HasSematics encoded fields.
18584         
18585         * metadata.c (mono_type_to_unmanaged): Improve error message for 
18586         invalid string marshalling.
18587
18588         * metadata.c: Fix warnings.
18589         
18590 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18591
18592         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
18593         profiler support.
18594
18595 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18596
18597         * domain.c object.c domain-internals.h: Revert part of r38077 since the
18598         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
18599         tests.
18600
18601 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
18602
18603         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
18604         so methods containing these can be AOTed.
18605
18606 2005-01-03  Martin Baulig  <martin@ximian.com>
18607
18608         * loader.c (find_method): Removed the hack for generic instances.
18609         (method_from_memberref): If our parent is a generic instance, pass
18610         its generic type definition to find_method() and then inflate the
18611         method.
18612         (mono_get_method_constrained): Pass the generic type definition to
18613         find_method() and inflate the method later.
18614
18615         * class-internals.h (MonoStats): Added `generic_class_count'.
18616
18617         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
18618         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
18619
18620         * reflection.c (mono_custom_attrs_from_params): Don't ignore
18621         generic type definitions.
18622
18623 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
18624
18625         * loader.c icall.c: Fix warnings.
18626
18627 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
18628
18629         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
18630         blittable types. Fixes #70864.
18631
18632 2004-12-29  Martin Baulig  <martin@ximian.com>
18633
18634         * icall.c
18635         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
18636
18637         * reflection.c (mono_method_get_object): Create a
18638         "System.Reflection.MonoGenericMethod" for inflated methods; don't
18639         call mono_get_inflated_method().
18640
18641         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
18642
18643 2004-12-27  Martin Baulig  <martin@ximian.com>
18644
18645         * class-internals.h (MonoMethod): Added `is_inflated' flag.
18646         (MonoMethodInflated): Added `inflated' field.
18647
18648         * class.c (mono_class_inflate_generic_method): Don't really
18649         inflate the method here; just set the `is_inflated' flag in the
18650         MonoMethod.
18651         (mono_class_get_inflated_method): Actually inflate the method here
18652         if it's not already inflated; we use the MonoMethodInflated's new
18653         `inflated' field as a cache.
18654
18655 2004-12-26  Martin Baulig  <martin@ximian.com>
18656
18657         * class.c
18658         (inflate_generic_class): Moved some code out of inflate_generic_type().
18659         (mono_class_inflate_generic_method): If we're already inflated,
18660         inflate the context and use the declaring method; ie. make sure
18661         the declaring method of an inflated method is always the generic
18662         method definition.
18663         (mono_class_create_from_typedef): Create
18664         `class->generic_container->context->gclass'.
18665
18666 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
18667
18668         * metadata-internals.h, marshal.c, reflection.c: More
18669         MonoGHashTable->GHashTable.
18670
18671         * domain-internals.h, class.c: Change MonoGHashTable's into
18672         GHashTables for some cases where no gc stuff is used
18673
18674         All users: update apis
18675
18676 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
18677
18678         * metadata.c (builtin_types): Make this `const'. Makes this get
18679         put into the shareable section.
18680         (mono_metadata_init): Casts to make gcc happy.
18681
18682 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
18683
18684         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
18685
18686 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
18687
18688         * icall.c: Added an internal call to retrieve the position and length
18689         of assembly-level declarative security attributes (RequestMinimum, 
18690         RequestOptional and RequestRefuse). This is used by the Assembly class
18691         to re-create the corresponding permission sets.
18692
18693 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
18694
18695         * marshal.c: fix the stelemref wrapper to be type correct
18696         (and faster).
18697
18698 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
18699
18700         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
18701         to do key & 0x7fffffff. Hashtable already does this. It just
18702         results in longer code.
18703
18704 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
18705
18706         * appdomain.c: Bump corlib version.
18707         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
18708         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
18709         * reflection.c|h: Add functions to get declarative security infos
18710         (blob position and length) for assemblies, classes and methods.
18711
18712 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
18713
18714         * reflection.c: sort the constant table (bug #70693).
18715
18716 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
18717
18718         * object-internals.h, threads.c, domain.c: add accessors for
18719         the MonoThread and MonoDomain tls keys.
18720
18721 2004-12-18  Martin Baulig  <martin@ximian.com>
18722
18723         * class.c (inflate_generic_type): If we're inflating a generic
18724         instance, set `ngclass->context->container = context->container';
18725         ie. the container we inflated into.
18726
18727         * metadata.c (mono_metadata_parse_generic_param): Reflect above
18728         inflate_generic_type() changes.
18729
18730 2004-12-17  Martin Baulig  <martin@ximian.com>
18731
18732         * class-internals.h
18733         (MonoGenericClass): Replaced `MonoType *generic_type' with
18734         `MonoClass *generic_class'.  Removed `dynamic_info'; if
18735         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
18736         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
18737
18738 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
18739
18740         * exception.c (mono_exception_from_token): New helper function.
18741
18742 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
18743
18744         * assembly.c (mono_assembly_load_with_partial_name): Call 
18745         mono_assembly_loaded before invoking the preload hooks. Fixes
18746         #70564.
18747
18748         * object-internals.h (MonoThread): Change culture_info and 
18749         ui_culture_info into an array.
18750
18751         * threads.c: Cache culture info objects from more than one appdomain.
18752
18753         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
18754         current UI culture.
18755
18756 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
18757
18758         * threads.h threads.c appdomain.c: Clear the culture_info field of
18759         all threads during unloading if they point to an object in the dying
18760         appdomain.
18761
18762 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
18763
18764         * culture-info.h (TextInfoEntry): New struct
18765         * object-internals.h: sync with managed
18766         * locales.c: fill the `text_info_data' field
18767         * culture-info-tables.h: update
18768
18769 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
18770
18771         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
18772         collector.
18773
18774 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
18775
18776         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
18777         (ves_icall_ModuleBuilder_getMethodToken): Ditto
18778
18779 2004-12-12  Martin Baulig  <martin@ximian.com>
18780
18781         * mono-debug-debugger.c (write_type): If we're an enum and the
18782         builtin types have already been initialized, call mono_class_init().
18783
18784 2004-12-11  Martin Baulig  <martin@ximian.com>
18785
18786         * metadata.c (mono_metadata_load_generic_params): Added
18787         `MonoGenericContainer *parent_container' argument; automatically
18788         compute `container->is_method'; pass the correct owner to
18789         get_constraints().      
18790
18791         * reflection.c (compare_genericparam): Sort the GenericParam table
18792         according to increasing owners. 
18793
18794 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
18795
18796         * profiler.c: allow disabling the default profiler.
18797
18798 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
18799
18800         * decimal.c, icall.c: allow disabling System.Decimal support.
18801
18802 2004-12-09  Marek Safar <marek.safar@seznam.cz>
18803
18804         * reflection.c: Add support for null attribute arguments.
18805
18806 2004-12-09  Martin Baulig  <martin@ximian.com>
18807
18808         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
18809         names to get rid of compiler warnings.
18810
18811 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18812
18813         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
18814         mono_marshal_load_type_info (). Fixes #69625.
18815         (mono_marshal_get_ptr_to_struct): Likewise.
18816
18817 2004-12-08  Martin Baulig  <martin@ximian.com>
18818
18819         * mono-debug.h: Bumped version number to 47.
18820
18821         * mono-debug-debugger.c
18822         (mono_debugger_event_handler, mono_debugger_event): Take two
18823         guint64 arguments insteed of a gpointer and a guint32.  
18824
18825 2004-12-08  Martin Baulig  <martin@ximian.com>
18826
18827         * debug-mono-symfile.h
18828         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
18829         `address' to `native_offset'.
18830
18831 2004-12-08  Martin Baulig  <martin@ximian.com>
18832
18833         * class.c (mono_class_create_from_typespec): Only inflate if we
18834         either have `context->gclass' or `context->gmethod'.
18835
18836 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18837
18838         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
18839
18840         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
18841
18842         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
18843
18844         * reflection.c (mono_assembly_get_object): Remove the workaround put
18845         in for the release.
18846         
18847         * appdomain.c: Use the corlib_internal field from MonoAssembly.
18848
18849         * appdomain.c: Bump corlib version.
18850
18851         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
18852         be visible in other appdomains.
18853
18854 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
18855
18856         * threads.c: Interlocked inc and dec for longs were messed up,
18857         use a KISS based impl for this. Fixes 70234
18858
18859 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
18860
18861         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
18862
18863 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
18864
18865         * icall.c: fix to follow policy not to allow struct
18866         arguments in icalls.
18867
18868 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18869
18870         * process.c: make the patch that handles spaces in file paths work
18871         on mono/windows too.
18872
18873 2004-12-06  Martin Baulig  <martin@ximian.com>
18874
18875         * class.c (mono_class_create_generic): Call
18876         mono_class_setup_supertypes() if we're dynamic.
18877         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
18878
18879 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
18880
18881         * object-internals.h: Add new fields to MonoThread.
18882
18883         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18884
18885         * icall.c threads-types.h threads.c: Add new icalls.
18886
18887         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
18888
18889         * object-internals.h (MonoReflectionAssembly): Sync object layout with
18890         managed side.
18891
18892         * appdomain.c: Bump corlib version.
18893
18894         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
18895         internal assemblies. Fixes #69181.
18896
18897 2004-12-05  Martin Baulig  <martin@ximian.com>
18898
18899         * class.c (mono_class_inflate_generic_signature): Make this a
18900         no-op if `context' is NULL or we don't have any type parameters;
18901         also copy `sentinelpos'.        
18902
18903 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
18904
18905         * image.c: Add unbox_wrapper_cache.
18906
18907         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
18908
18909         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
18910         function generator.
18911         
18912         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
18913         Fixes #70173.
18914
18915         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
18916         
18917 2004-12-04  Martin Baulig  <martin@ximian.com>
18918
18919         * loader.c (mono_method_get_signature_full): New public function;
18920         like mono_method_get_signature(), but with an additional
18921         `MonoGenericContext *' argument.
18922
18923         * class.c (mono_class_inflate_generic_signature): Formerly known
18924         as inflate_generic_signature(); make this public.
18925
18926 2004-12-04  Martin Baulig  <martin@ximian.com>
18927
18928         * metadata.c
18929         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
18930         instead of a `MonoGenericContainer *'.  
18931         (mono_metadata_parse_array_full): Likewise.
18932         (mono_metadata_parse_signature_full): Likewise.
18933         (mono_metadata_parse_method_signature_full): Likewise.
18934         (mono_metadata_parse_generic_inst): Likewise.
18935         (mono_metadata_parse_generic_param): Likewise.
18936         (mono_metadata_parse_mh_full): Likewise.
18937         (mono_type_create_from_typespec_full): Likewise.
18938
18939 2004-12-03  Martin Baulig  <martin@ximian.com>
18940
18941         * class-internals.h (MonoGenericContainer): Replaced the
18942         `MonoGenericContext * pointer with a `MonoGenericContext'
18943         structure and made it the first element.
18944
18945 2004-12-03  Martin Baulig  <martin@ximian.com>
18946
18947         * class.c
18948         (inflate_generic_type): Set the `context->container' when creating
18949         a new MonoGenericContext.
18950         (mono_class_inflate_generic_method): Likewise.
18951         (mono_class_create_from_typespec): Just use `context->container'
18952         to get the container.
18953
18954         * loader.c (method_from_methodspec): Set `context->parent' from
18955         `context->container' - and if that's a method container, use its
18956         parent.  Also set the `context->container' when creating a new
18957         MonoGenericContext.
18958         (mono_get_method_from_token): Use just `context->container' to get
18959         the container.
18960
18961         * metadata.c (do_mono_metadata_parse_generic_class): Also set
18962         `gclass->context->container'.
18963
18964         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
18965         the `context->container' when creating a new MonoGenericContext.
18966
18967 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
18968
18969         * reflection.c (compare_genericparam): Sort params with identical
18970         owner by their number. Fixes gen-111 on sparc.
18971
18972 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
18973
18974         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
18975         around the domain changes.
18976
18977         * appdomain.c (mono_domain_unload): Handle the case when the thread
18978         calling Unload is itself being aborted during unloading. Fixes #70022.
18979
18980         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
18981
18982         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
18983         checkpoint_func as an icall so it gets a wrapper.
18984         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
18985         in the cross-appdomain wrappers too.
18986
18987         * threads.c (mono_thread_has_appdomain_ref): Make this public.
18988
18989         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
18990
18991         * reflection.c: Fix some memory leaks.
18992         
18993 2004-12-02  Martin Baulig  <martin@ximian.com>
18994
18995         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
18996
18997         * metadata.c (generic_class_cache): New static hashtable.
18998         (mono_metadata_lookup_generic_class): New public method.
18999
19000 2004-12-02  Martin Baulig  <martin@ximian.com>
19001
19002         * class.c (mono_class_create_from_typedef): Call
19003         mono_class_setup_parent() and mono_class_create_mono_type() before
19004         parsing the interfaces.
19005
19006 2004-12-02  Martin Baulig  <martin@ximian.com>
19007
19008         * metadata.c (generic_inst_cache): New static hashtable.
19009         (mono_metadata_lookup_generic_inst): New public function.
19010         (mono_metadata_inflate_generic_inst): New public function.
19011         (mono_metadata_parse_generic_inst): New public function.
19012         (do_mono_metadata_parse_generic_class): Use the new
19013         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
19014         since this'll also use the cache.
19015
19016         * reflection.c (mono_reflection_bind_generic_method_parameters):
19017         Use mono_metadata_lookup_generic_inst() to use the new cache.
19018
19019         * class.c (inflate_mono_type): Use
19020         mono_metadata_inflate_generic_inst() to inflate a generic
19021         instance; this'll also use the new cache.
19022
19023         * loader.c (method_from_methodspec): Use
19024         mono_metadata_parse_generic_inst() and
19025         mono_metadata_inflate_generic_inst() rather than parsing it
19026         manually, so we can use the new cache.
19027
19028 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
19029
19030         * threads.c (wait_for_tids): Do not incorrectly free threads when 
19031         the wait times out.
19032
19033 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19034
19035         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
19036         iter->args based on whether parameters are passed in registers (i.e.
19037         MONO_ARCH_REGPARMS is defined)
19038
19039 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
19040
19041         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
19042         the exception message. Fixes #70070.
19043         (method_from_methodspec): Fix warnings.
19044
19045 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19046
19047         * process.c: (complete_path) return the path quoted
19048
19049 2004-12-01  Martin Baulig  <martin@ximian.com>
19050
19051         * class-internals.h (MonoGenericInst): New structure.
19052         (MonoGenericClass): Replaced `type_argc', `type_argv' and
19053         `is_open' with `MonoGenericInst *inst'.
19054         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
19055         `is_open' with `MonoGenericInst *inst'.
19056
19057 2004-11-30  Martin Baulig  <martin@ximian.com>
19058
19059         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
19060
19061         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
19062         to `generic_class_cache'.
19063
19064         * metadata.c
19065         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
19066         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
19067         (mono_generic_inst_is_valuetype): Renamed to
19068         mono_generic_class_is_valuetype().
19069
19070         * class-internals.h
19071         (MonoGenericInst): Renamed to MonoGenericClass.
19072         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
19073         (MonoClass): Renamed `generic_inst' to `generic_class'.
19074         (MonoGenericContext): Renamed `ginst' to `gclass'.
19075
19076         * object-internals.h
19077         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
19078
19079         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
19080         mono_reflection_generic_class_initialize().
19081
19082         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
19083         now known as "System.Reflection.MonoGenericClass".
19084         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
19085
19086 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
19087
19088         * class-internals.h: Added a flag field to MonoClass to cache the
19089         declarative security attributes actions associated with the class.
19090         * domain-internals.h: Added booleans to MonoJitInfo to cache the
19091         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
19092         applicable to the JITted method.
19093         * reflection.c|h: Added functions to extract (as flags) which security
19094         actions are available (declaratively) for a method, class or assembly.
19095         * metadata.c|h: Added functions to search the declarative security
19096         table in the metadata.
19097         
19098 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
19099
19100         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
19101         EXPORTEDTYPES are already in the class name cache, so there is no
19102         need to add extra code here to look at them. Just removes a bit of
19103         cruft.
19104
19105         (ves_icall_System_Environment_get_TickCount): No need for #if
19106         WINDOWS. We already have the code in io-layer.
19107
19108 2004-11-28  Martin Baulig  <martin@ximian.com>
19109
19110         * loader.c
19111         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
19112         Fixes gen-112.cs.
19113
19114 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
19115
19116         * assembly.c (do_mono_assembly_open): Instead of having a
19117         conditional WITH_BUNDLE, incorporate support for bundles here, by
19118         having a global `bundles' variable holding a pointer to the actual
19119         bundles. 
19120
19121         (mono_register_bundled_assemblies): New API call used by the
19122         bundle code. 
19123
19124         See mkbundle.1 for details.
19125         
19126 2004-11-27  Martin Baulig  <martin@ximian.com>
19127
19128         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
19129         the vtable for generic methods.
19130
19131 2004-11-26  Martin Baulig  <martin@ximian.com>
19132
19133         * metadata.c
19134         (mono_metadata_generic_method_hash): New public function.
19135         (mono_metadata_generic_method_equal): Likewise.
19136
19137         * class-internals.h
19138         (MonoGenericContainer): Added `GHashTable *method_hash'.
19139
19140         * reflection.c (ReflectionMethodBuilder): Added
19141         `MonoGenericContainer *generic_container'.
19142         (reflection_methodbuilder_to_mono_method): Don't create a new
19143         MonoGenericContainer each time we're called.
19144         (mono_reflection_bind_generic_method_parameters): Use
19145         `container->method_hash' to cache the results so we don't create a
19146         different method if we're called several times with the same
19147         arguments.
19148
19149         * loader.c (method_from_methodspec): Use the new
19150         `container->method_hash' here, too.
19151
19152 2004-11-26  Martin Baulig  <martin@ximian.com>
19153
19154         * class.c (inflate_generic_signature): Correctly compute
19155         `res->has_type_parameters'.
19156         (mono_class_vtable): Use the `has_type_parameters' flag to
19157         determine whether we're a generic method.
19158
19159         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
19160
19161 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
19162
19163         * object.c (mono_runtime_run_main): Fix a small memory leak.
19164
19165 2004-11-25  Martin Baulig  <martin@ximian.com>
19166
19167         * class.c (set_generic_param_owner): Fixed the loop.
19168
19169 2004-11-25  Martin Baulig  <martin@ximian.com>
19170
19171         * object.c (mono_class_vtable): Don't create any JIT wrappers for
19172         generic methods.
19173
19174 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
19175
19176         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
19177         names. Fixes #69787.
19178
19179 2004-11-24  Martin Baulig  <martin@ximian.com>
19180
19181         * class.c (mono_class_create_generic_2): If we don't have a
19182         `ginst->parent', inflate `gklass->parent' to get our parent.
19183
19184 2004-11-24  Martin Baulig  <martin@ximian.com>
19185
19186         * reflection.c (compare_genericparam): Correctly sort the
19187         GenericParam table; fixes #69779.
19188
19189 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
19190
19191         * reflection.c: When writing a PE file, don't create a huge
19192         buffer in memory. Just write the arrays we have to the file.
19193         This reduces memory usage.
19194
19195         * metadata-internals.h: MonoDynamicStream pefile is no longer used
19196         globally.
19197
19198 2004-11-17  Martin Baulig  <martin@ximian.com>
19199
19200         * class.c (mono_class_init): Don't setup `class->parent' for
19201         dynamic instances; moved this to mono_class_generic_2().
19202         (mono_class_create_generic): Also set `klass->inited' for dynamic
19203         generic instances.
19204         (mono_class_create_generic_2): Don't do anything for dynamic
19205         generic instances.  Set `klass->parent' here and also call
19206         mono_class_setup_parent() here. 
19207
19208         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
19209         `MonoType *parent' argument; set `ginst->parent' before calling
19210         mono_class_create_generic_2(), so we set the correct parent.
19211
19212 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
19213
19214         * reflection.c: allow getting attributes from ModuleBuilder
19215         (used by ikvm).
19216
19217 2004-11-17  Martin Baulig  <martin@ximian.com>
19218
19219         * class.c (mono_class_create_from_typedef): If a type parameter is
19220         inherited from an outer class, set its owner to that class.
19221
19222 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
19223
19224         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
19225           for (int*) written size. This fixes bug #69592.
19226
19227 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
19228
19229         * icall.c: Added IsAuthenticodePresnet internal call.
19230         * image.c|h: New function that check a MonoImage for an Authenticode
19231         signature in the certificate PE data directory.
19232         * security.c|h: New internal call to ask the runtime if an 
19233         Authenticode signature seems referenced in the PE header.
19234
19235 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
19236
19237         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
19238
19239         * reflection.c (mono_image_create_pefile): Free the assembly streams
19240         after writing out the assembly file.
19241
19242         * object.c (mono_runtime_run_main): Fix small memory leak.
19243
19244         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
19245         property access modifiers. Fixes #69389.
19246
19247 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
19248
19249         * domain.c, object.c, object-internals.h, domain-internals.h,
19250         object.h, marshal.c: keep dynamic code info per domain.
19251
19252 2004-11-15  Martin Baulig  <martin@ximian.com>
19253
19254         * class.c (mono_type_get_name_recurse): Put type arguments in
19255         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
19256         see bug #68387.
19257
19258 2004-11-15  Martin Baulig  <martin@ximian.com>
19259
19260         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
19261         (mono_class_setup_vtable): When computing `the_cname' for a
19262         generic instance, don't include the namespace since we'd otherwise
19263         add it twice.
19264
19265 2004-11-15  Martin Baulig  <martin@ximian.com>
19266
19267         * class.c (mono_class_create_generic): Changed return type to void.
19268         (mono_class_create_generic_2): New public function; setup
19269         `class->method', `class->field' and `class->interfaces' here
19270         instead of in mono_class_init().
19271
19272         * class.h (mono_class_create_generic): Moved to class-internals.h.
19273
19274 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
19275
19276         * reflection.c (mono_image_create_pefile): take a file HANDLE.
19277         rather than writing to memory, write to this file. Right now,
19278         we are just writting into a buffer, and copying that. However
19279         we can avoid the buffer later.
19280
19281         (mono_dynamic_stream_reset): new function
19282
19283         * icall.c, object-internals.h: update for the above.
19284
19285 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
19286
19287         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
19288         have been using gc'd memory. First it is slower, unlikely
19289         the comment in the source code said, secondly, it increases
19290         our footprint to do it in the gc.
19291
19292         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
19293         the method so that it does not have to copy to managed code.
19294
19295 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
19296
19297         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
19298
19299 2004-11-12  Martin Baulig  <martin@localhost>
19300
19301         * reflection.c (mono_image_create_token): Allow generic method
19302         definitions here, since they may appear in an `.override'; see
19303         gen-98/gen-99 for an example.
19304
19305 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
19306
19307         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
19308         #69365.
19309
19310         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
19311         descriptive.
19312
19313 2004-11-11  Martin Baulig  <martin@ximian.com>
19314
19315         * class.c (mono_class_setup_vtable): In an explicit interface
19316         implementation, the method name now includes the arity.
19317
19318 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
19319
19320         * object.c (mono_array_full_copy): Fix warning.
19321
19322 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
19323
19324         * appdomain.c: Removed look_for_method_by_name(). Use the new method
19325         mono_class_get_method_from_name() instead.
19326         
19327         * class-internals.h: Added two new types of wrappers. 
19328         Added MonoRemotingTarget enum. Added new trampoline function type, which
19329         takes an additional MonoRemotingTarget value as parameter, so it is
19330         possible to request a trampoline for a specific target.
19331         
19332         * class.c: Added new mono_class_get_method_from_name() method.
19333         
19334         * class.h: In MonoRemoteClass, we can have now to vtables, one for
19335         general remoting sinks and one specific for cross domain calls.
19336         
19337         * debug-helpers.c: Added new wrapper names.
19338         
19339         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
19340         of a remote class.
19341         
19342         * image.c: Porperly delete value objects form the remoting invoke hashtable.
19343         
19344         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
19345         with several other methods (mono_marshal_get_xappdomain_dispatch,
19346         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
19347         and others) can generate a fast remoting wrapper for cross domain calls.
19348         More information can be found in docs/remoting.
19349         Other changes: Removed mono_find_method_by_name, and used
19350         mono_class_get_method_from_name instead.
19351         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
19352         is stored in the remoting invoke hashtable.
19353         
19354         * marshal.h: published the new method for getting the xdomain wrapper,
19355         and also added a method for getting the adequate wrapper for a given
19356         method and target.
19357         
19358         * object-internals.h, object.c: Added a couple of methods for capying and
19359         cloning arrays.
19360         Modified mono_install_remoting_trampoline, which takes the new remoting
19361         trampoline that has a remoting target as parameter.
19362         mono_class_proxy_vtable now also takes a remoting target as parameter, and
19363         will return the most suitable vtable for the target.
19364         Added mono_remote_class_vtable, which returns the vtable of a remote class
19365         (which can be the normal remoting vtable or the xdomain vtable).
19366         
19367         * threads.c: the xdomain invoke and dispatch wrappers must also be
19368         protected against interruptions.
19369
19370 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19371
19372         * icall.c: use memmove in BlockCopyInternal when the source and
19373         destination arrays are the same.
19374
19375 2004-11-09  Martin Baulig  <martin@ximian.com>
19376
19377         * class-internals.h (MonoGenericContainer): Removed `method' and
19378         `signature', replaced them with `is_method' and `is_signature'
19379         flags.  Added `context'.
19380
19381         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
19382         instead of a `MonoGenericContainer *'.
19383
19384         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
19385         for dynamic type parameters.
19386         (mono_metadata_load_generic_params): Setup `container->context'.
19387
19388         * reflection.c (mono_reflection_setup_generic_class): Setup
19389         `tb->generic_container->context'.
19390         (do_mono_reflection_bind_generic_parameters): Use
19391         mono_class_inflate_generic_type() to correctly inflate types,
19392         rather than using our own hack just for MONO_TYPE_VAR.
19393
19394 2004-11-09  Martin Baulig  <martin@ximian.com>
19395
19396         * class.c (mono_class_inflate_generic_method): Small fix; don't
19397         crash here.
19398
19399         * icall.c
19400         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
19401         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
19402         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
19403         (ves_icall_Type_BindGenericParameters): Likewise.
19404         (ves_icall_Type_get_IsGenericInstance): Likewise.
19405         (ves_icall_Type_GetGenericParameterPosition): Likewise.
19406         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
19407         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
19408         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19409
19410 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
19411
19412         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
19413         assembly versions and public key tokens. Fixes #69113.
19414
19415 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
19416
19417         * metadata.c: fix bug introduced with the type cache changes
19418         on 2004-11-06.
19419
19420 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
19421
19422         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
19423         the MonoClass pointer instead of the token in exception clauses.
19424         * reflection.c: updates for the above and make the code not depend
19425         on the structure of MonoExceptionClause.
19426
19427 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
19428
19429         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19430         Add support for dynamic assemblies. Fixes #69114.
19431
19432         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
19433
19434 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
19435
19436         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
19437         since most only those methods use it. the code member of
19438         MonoMethodPInvoke was dead, so that can be removed too. Also,
19439         remove inline_count (again, not used), and move slot so that it
19440         can share bits with some other flags. This saves 8 bytes in the
19441         structure and gives us about 50 kb back for mcs helloworld.cs
19442
19443         * *.[ch]: Do naming changes for the above.
19444
19445         * loader.c (mono_method_get_header): Lazily init the header
19446         on first access.
19447         (mono_get_method_from_token): don't init the header here
19448         (mono_free_method): the header may never be allocated
19449
19450         Overall, this saves 150 kb of unmanaged allocations
19451         for mcs helloworld.cs. That accounts for 10% of the unmanaged
19452         memory at runtime.
19453         
19454         * loader.c, loader.h (mono_method_get_header): new accessor.
19455
19456         * *.[ch]: use the above method. Prepares us to lazily load
19457         the header.
19458
19459         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
19460         three warnings, which are actual bugs (see 69206).
19461
19462         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
19463         unused. Saves a cool 4 bytes / method.
19464
19465 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
19466
19467         * metadata.c (builtin_types): Add types for System.Object here.
19468         (mono_metadata_parse_type_full): Cache MonoType*'s that are
19469         for a class or valuetype from klass->this_arg or klass->byval_arg.
19470
19471         On mcs for a hello world, this gets us down from 21836 MonoType's
19472         to 14560.
19473
19474         (mono_metadata_free_type): Account for the above change.
19475
19476 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
19477
19478         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
19479         exception instead of asserting if name is null.
19480         (ves_icall_System_AppDomain_GetData): Ditto.
19481
19482 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
19483
19484         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
19485         EnumBuilder.
19486
19487         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
19488         Return NULL when the domain does not have entry_assembly set.
19489
19490         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
19491         Add a 'resource_modules' argument.
19492         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
19493
19494         * reflection.c (mono_reflection_create_runtime_class): Move setting
19495         of wastypebuilder here, so mono_get_type_object () returns a MonoType
19496         for enums too.
19497
19498         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
19499         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
19500         Throw an ArgumentNullException if 'ptr' is null.
19501
19502         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
19503         assemblies here. Fixes #69020.
19504
19505 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
19506
19507         * reflection.c (build_compressed_metadata): Fix the previous patch for
19508         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
19509         the stack.
19510
19511 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
19512
19513         * assembly.c (mono_assembly_names_equal): Allow a match if one of
19514         the cultures is false. Fixes #69090.
19515
19516         * reflection.c (build_compressed_metadata): Fix invalid memory read 
19517         detected by valgrind.
19518         
19519         * reflection.c (mono_reflection_get_type): Avoid triggering a 
19520         TypeResolve multiple times for the same type. Fixes #65577.
19521
19522 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
19523
19524         * marshal.c: Avoid using ldftn to call managed functions. It is
19525         much slower than just a call.
19526
19527         * reflection.c (mono_module_get_object): free the basename we
19528         allocate here from glib.
19529         
19530         * reflection.c (ensure_runtime_vtable): make sure to free
19531         overrides.  Also, we were allocating an array of MonoMethod not an
19532         array of MonoMethod*.
19533
19534         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
19535
19536         * image.c (mono_image_close): free image->guid here.
19537
19538 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
19539
19540         * reflection.c: Fix some spec conformance issues with the PE file
19541         structures so mcs compiled apps run on the Net 2.0 beta.
19542
19543 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
19544
19545         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
19546         Implement this. Fixes #67264.
19547
19548         * debug-helpers.h debug-helpers.c marshal.c: Move 
19549         mono_find_method_by_name to debug-helpers.c.
19550
19551 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
19552
19553         * object.c (mono_release_type_locks): type_initialization_hash is
19554         a GHashTable.
19555
19556         * reflection.c object.c object-internals.h: Fix warnings.
19557
19558         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
19559         without accessors. Fixes #61561.
19560
19561         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
19562         application base from the root domain if not set. Fixes #65641.
19563         (mono_runtime_init): Fix warning.
19564
19565 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19566
19567         * appdomain.c: call mono_thread_pool_init.
19568         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
19569         of worker threads based on the number of CPUs and the environment
19570         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
19571         for non-windows (windows) systems.
19572
19573 2004-10-27  Chris Toshok  <toshok@ximian.com>
19574
19575         * mono-debug-debugger.c (write_class): don't call mono_class_init
19576         here, as even with the check for (!klass->init_pending), we get
19577         into a situation where we're hitting cycles in class
19578         initialization.  Fixes #68816.
19579
19580 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
19581
19582         * image.c: Avoid overwriting values in the loaded_images_hash when an
19583         assembly is loaded multiple times. Fixes #61152.
19584
19585         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
19586         so multiple satellite assemblies for the same name can be loaded.
19587         Fixes #68259.
19588
19589         * mono_domain_assembly_preload: Actually return the loaded assembly, 
19590         not NULL.
19591
19592         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
19593         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
19594
19595         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
19596         pending finalizers are not invoked after the appdomain has been 
19597         unloaded. Fixes #67862.
19598
19599 2004-10-22  Martin Baulig  <martin@ximian.com>
19600
19601         * mono-debug-debugger.c
19602         (mono_debugger_runtime_invoke): Don't box valuetypes.
19603
19604 2004-10-22  Chris Toshok  <toshok@ximian.com>
19605
19606         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
19607         don't hide private methods.
19608
19609 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
19610
19611         * icall.c: Allows the runtime to "share" (when known) the public key
19612         token of an assembly. This avoid the need to recalculate the token 
19613         (from the public key) in managed code.
19614
19615 2004-10-21  Chris Toshok  <toshok@ximian.com>
19616
19617         * debug-helpers.c (append_class_name): argh, revert last patch.
19618         
19619 2004-10-21  Chris Toshok  <toshok@ximian.com>
19620
19621         * debug-helpers.c (append_class_name): use '+' as the delimiter,
19622         not '/', so that it matches what the debugger uses to look up
19623         methods.
19624
19625 2004-10-21  Martin Baulig  <martin@ximian.com>
19626
19627         * mono-debug-debugger.c (mono_debugger_throw_exception): New
19628         public method; this is called each time an exception is thrown and
19629         allows the debugger to use exception catch points.
19630
19631 2004-10-21  Martin Baulig  <martin@ximian.com>
19632
19633         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
19634         the stack pointer and the exception object in some struct and pass
19635         that to the debugger.
19636
19637 2004-10-21  Chris Toshok  <toshok@ximian.com>
19638
19639         * mono-debug-debugger.c (do_write_class): add instance/static
19640         event support.  We don't expose "raise" or "other" yet.
19641         (event_is_static): new method.
19642
19643 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
19644
19645         * mono-debug-debugger.c
19646         (mono_debugger_handle_exception): Remove
19647         bogus return value for fussy compilers.
19648
19649 2004-10-20  Martin Baulig  <martin@ximian.com>
19650
19651         * mono-debug-debugger.c
19652         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
19653         (mono_debugger_handled_exception): Likewise.
19654
19655 2004-10-20  Martin Baulig  <martin@ximian.com>
19656
19657         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19658         MONO_DEBUGGER_EVENT_EXCEPTION.
19659
19660         * mono-debug-debugger.c (mono_debugger_handle_exception): New
19661         public function to send the debugger a notification for an
19662         exception and inform it about a catch/finally clause.
19663
19664 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
19665
19666         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
19667         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
19668         fix 2.95 build. 
19669
19670         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
19671
19672 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
19673
19674         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
19675         marshalled as [In,Out]. Fixes #58325.
19676
19677 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
19678
19679         * reflection.c (mono_method_body_get_object): Implement some fields.
19680
19681 2004-10-12  Martin Baulig  <martin@ximian.com>
19682
19683         * reflection.c (mono_reflection_bind_generic_parameters): Small
19684         fix, correctly retrieve our parent from a generic instance.
19685
19686 2004-10-12  Martin Baulig  <martin@ximian.com>
19687
19688         * metadata.c (mono_metadata_generic_param_equal): We always have
19689         an owner.
19690
19691         * class.c
19692         (mono_class_from_generic_parameter): We need to have an owner.
19693         (my_mono_class_from_generic_parameter): Likewise.
19694
19695         * reflection.c (mono_reflection_setup_generic_class): Renamed to
19696         mono_reflection_create_generic_class() and added a new
19697         mono_reflection_setup_generic_class().  
19698         (mono_reflection_initialize_generic_param): If we're a nested
19699         generic type and inherited from the containing class, set our
19700         owner to the outer class.
19701
19702 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
19703
19704         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
19705
19706         * reflection.c (mono_method_body_get_object): New function to create
19707         a MethodBody object.
19708
19709         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
19710
19711 2004-10-11  Martin Baulig  <martin@ximian.com>
19712
19713         * metadata.c (_mono_metadata_type_equal): Renamed to
19714         do_mono_metadata_type_equal() and made static.
19715
19716 2004-10-11  Martin Baulig  <martin@ximian.com>
19717
19718         * appdomain.c: Bump corlib version number to 28.
19719
19720 2004-10-10  Martin Baulig  <martin@ximian.com>
19721
19722         * class-internals.h
19723         (MonoGenericInst): Added `MonoGenericContainer *container'.
19724         (MonoGenericMethod): Likewise.
19725         (MonoGenericContext): Likewise.
19726         (MonoGenericParam): Added `MonoGenericContainer *owner'.
19727
19728         * metadata.c
19729         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
19730         (do_mono_metadata_parse_generic_inst): Likewise.
19731         (mono_metadata_parse_type_full): New public method.  This is the actual
19732         mono_metadata_parse_type() implementation - with an additional
19733         `MonoGenericContainer *' argument.
19734         (mono_metadata_parse_array_full): Likewise.
19735         (mono_metadata_parse_signature_full): Likewise.
19736         (mono_metadata_parse_method_signature_full): Likewise.
19737         (mono_metadata_parse_mh_full): Likewise.
19738         (mono_type_create_from_typespec): Likewise.
19739         (mono_metadata_interfaces_from_typedef_full): New public method;
19740         this is similar to the other _full() methods, but we take a
19741         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
19742         (mono_metadata_parse_generic_param): Take an additional
19743         `MonoGenericContainer *' argument and lookup the MonoGenericParam
19744         from that container.
19745         (mono_metadata_generic_param_equal): New static method to compare
19746         two type parameters.
19747         (_mono_metadata_type_equal): New static method; takes an
19748         additional `gboolean signature_only' argument - if true, we don't
19749         compare the owners of generic parameters.
19750         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
19751         with a TRUE argument - do a signature-only comparision.
19752
19753         * loader.c: Use the new _full() methods and pass the
19754         MonoGenericContainer to them.
19755
19756         * object-internals.h (MonoReflectionTypeBuilder): Added
19757         `MonoGenericContainer *generic_container' field.
19758         (MonoReflectionMethodBuilder): Likewise.
19759
19760 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
19761
19762         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
19763         case initial images of dynamic assemblies.
19764
19765         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
19766
19767         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
19768
19769         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
19770         length of event->other array.
19771         (typebuilder_setup_events): Ditto.
19772
19773         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
19774         'assembly_by_name' and add an 'assemblies' list.
19775
19776         * assembly.h assembly.c: Add a new search hook for determining whenever
19777         an assembly is already loaded. Use this instead of searching in the
19778         loaded_assemblies list.
19779
19780         * domain.c appdomain.c: Implement the new search hook so loaded 
19781         assemblies are now scoped by appdomain. Fixes #67727.
19782
19783 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
19784
19785         * threads.c (mono_thread_attach): Initialize synch_lock field so
19786         mono_thread_detach works again.
19787
19788         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
19789         'lib' too. Fixes #63130.
19790
19791 2004-10-06  Jackson Harper  <jackson@ximian.com>
19792
19793         * culture-info-tables.h: regenerated.
19794
19795 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
19796
19797         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
19798         implemented by other interfaces in the result. Fixes #65764.
19799         
19800         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19801         Handle unloadable modules without crashing.
19802
19803         * image.c (load_modules): Revert the previous patch since modules must
19804         have a fixed index inside the array.
19805         
19806         * image.c (load_modules): Don't include native modules in the modules
19807         array.
19808
19809 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
19810
19811         * reflection.h: Add param_defaults field.
19812
19813         * reflection.c: Add support for parameter defaults in dynamic methods.
19814         Fixes #64595.
19815
19816         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
19817         an empty string when a type has no namespace. Fixes #64230.
19818
19819 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
19820
19821         * tabledefs.h: Added "internal" security actions to support non-CAS
19822         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
19823         Note: they do not seems to be used anymore in 2.0 (new metadata format)
19824
19825 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
19826
19827         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
19828         constructor of abstract class. Fixes #61689.
19829
19830 2004-10-04  Martin Baulig  <martin@ximian.com>
19831
19832         * class-internals.h (MonoGenericContainer): New type.
19833         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
19834         `MonoGenericContainer *generic_container'.
19835         (MonoClass): Replaced `gen_params' and `num_gen_params' with
19836         `MonoGenericContainer *generic_container'.
19837
19838         * metadata.c (mono_metadata_load_generic_params): Return a
19839         `MonoGenericContainer *' instead of a `MonoGenericParam *';
19840         removed the `num' argument.
19841
19842 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
19843
19844         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
19845         for dynamic images.
19846
19847         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
19848         machine fields.
19849
19850         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
19851
19852         * reflection.c: Save pe_kind and machine values into the generated
19853         image file.
19854
19855         * appdomain.c: Bump corlib version number.
19856
19857         * object-internals.h: Reorganize layout of LocalBuilder.
19858
19859         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
19860         New helper function.
19861
19862         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
19863         created MonoType for dynamic types. Fixes #66180.
19864
19865 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
19866
19867         * threadpool.c: the ares hashtable needs a critical section around it.
19868         this prevents some nasty segfaults
19869
19870 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
19871
19872         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
19873         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
19874         bug 67324).
19875         
19876 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
19877
19878         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
19879         
19880 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
19881
19882         * image.c: Always canonicalize image file names, to avoid loading
19883         the same assembly twice when referenced using a relative path.
19884
19885 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
19886
19887         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
19888
19889         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
19890
19891         * marshal.c: Fix warnings.
19892
19893 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
19894
19895         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
19896         attempting to marshal the delegate_trampoline as the method_addr.
19897         This patch has a static hashtable of marshalled delegates so that 
19898         we can map delegate_trampoline addresses back to delegates.  This
19899         allows a delegate passed to managed code to be passed back into native
19900         code.  Fixes #67039
19901
19902 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19903
19904         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
19905
19906         * reflection.c (method_encode_code): Align method headers properly.
19907         Fixes #66025.
19908
19909 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19910
19911         * marshal.c: In the runtime invoke wrapper, reset the abort
19912         exception if it is cached. This avoids the automatic rethrowal of 
19913         the exception after the catch of the wrapper. Also check for pending
19914         interruptions before calling the managed method. This is done using
19915         the new method emit_thread_force_interrupt_checkpoint, since the
19916         normal checkpoint method is ignored when running the invoke wrapper.
19917         * object.c: If the abort exception is rethrown, set the abort_exc
19918         field of the thread, so it will be rethrown aftere every catch.
19919         * threadpool.c: Only run an interruption checkpoint if what has been
19920         requested is a stop of the thread (aborts will be ignored).
19921         * threads.c: By default, a thread will now never be interrumped while
19922         running the runtime invoke wrapper (this ensures that runtime_invoke
19923         will always return to the caller if an exception pointer is provided).
19924         There is a new special method mono_thread_force_interruption_checkpoint()
19925         to force an interruption checkpoint even if running a protected
19926         wrapper, which is used by the same runtime invoke wrapper to do a check
19927         at a safe point.
19928
19929 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19930
19931         * object.c, object-internals.h: Implemented mono_release_type_locks,
19932         which releases the cctor locks held by a thread.
19933         * threads.c, threads.h: In thread_cleanup, release cctor locks held
19934         by a thread. Added mono_thread_exit() method to be used to safely stop
19935         a thread.
19936
19937 2004-09-28  Raja R Harinath  <rharinath@novell.com>
19938
19939         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19940         Move null check before dereference.  Avoid indexing beyond the end
19941         of the 'modules' array.
19942
19943 2004-09-28  Raja R Harinath  <rharinath@novell.com>
19944
19945         * metadata-internals.h (MonoImage): Add module_count field.
19946         * image.c (load_modules): Set image->module_count.
19947         (mono_image_load_file_for_image): Use image->module_count.
19948         * reflection.c (mono_image_load_module): Append to image->modules array 
19949         of dynamic assembly.
19950         (mono_module_get_object): Fix loop to actually increment index.
19951         Use image->module_count.
19952         * assembly.c (mono_assembly_load_references): Use image->module_count.
19953         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
19954         Likewise.
19955
19956 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19957
19958         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
19959         Avoid assert on generic types.
19960
19961 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
19962
19963         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
19964
19965         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
19966
19967         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
19968         function to convert a MarshalSpec structure to its managed counterpart.
19969
19970         * reflection.c: Fix warnings.
19971         
19972         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
19973         field.
19974
19975         * icall.c (mono_create_icall_signature): Fix build.
19976
19977 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
19978
19979         * icall.c: Add MakePointType icall.
19980
19981         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
19982         warnings.
19983
19984 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19985
19986         * threadpool.c: reuse allocated slots in the queue.
19987
19988 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
19989
19990         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
19991
19992         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
19993
19994         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
19995         previous change.
19996
19997         * tabledefs.h: Add constants for pinvoke attributes BestFit and
19998         ThrowOnUnmappableChar.
19999
20000         * icall.c (ves_icall_Type_GetPacking): New icall.
20001
20002 2004-09-24  Martin Baulig  <martin@ximian.com>
20003
20004         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
20005
20006 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20007
20008         * appdomain.c:
20009         (mono_domain_set): allow setting a domain that is being unloaded.
20010         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
20011         being unloaded.
20012
20013 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
20014
20015         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
20016         the GetCustomAttributes icall.
20017
20018 2004-09-23  Martin Baulig  <martin@ximian.com>
20019
20020         * object-internals.h (MonoReflectionGenericParam): Replaced
20021         'has_ctor_constraint', `has_reference_type' and `has_value_type'
20022         with `guint32 attrs'.
20023
20024 2004-09-23  Martin Baulig  <martin@ximian.com>
20025
20026         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
20027
20028 2004-09-23  Martin Baulig  <martin@ximian.com>
20029
20030         * object-internals.h (GenericParameterAttributes): New enum.
20031
20032 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
20033
20034         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
20035         
20036         * class.c (init_events): Fill out event->other field.
20037
20038         * class.c: Fix warnings.
20039
20040         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
20041
20042 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
20043
20044         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
20045         walk which doesn't supply the IL offset.
20046
20047 2004-09-22  Martin Baulig  <martin@ximian.com>
20048
20049         * reflection.c (mono_reflection_setup_internal_class): If we're
20050         System.ValueType, System.Object or System.Enum, set
20051         `klass->instance_size' and create the vtable.
20052         (mono_reflection_create_internal_class): If we're an enum type,
20053         get the base class from our current corlib.
20054
20055 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
20056
20057         * reflection.h (MonoResolveTokenError): New type.
20058
20059         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
20060         icall.
20061
20062         * icall.c: Add an 'error' argument to the ResolveToken icalls.
20063
20064 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
20065
20066         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
20067         Support also calling constructors, but only for already allocated objects.
20068
20069 2004-09-17  Geoff Norton <gnorton@customerdna.com>
20070
20071         * reflection.c (type_get_qualified_name): If the klass is null
20072         return the typename to avoid a NullRefEx.
20073         (encode_cattr_value): Get the qualified name of the boxed type,
20074         not the underlying enumtype.  Fixes #62984.
20075
20076 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
20077
20078         * marshal.c: Fix problems with previous checkin.
20079
20080 2004-09-21    <vargaz@freemail.hu>
20081
20082         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
20083         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
20084
20085         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
20086
20087 2004-09-21  Geoff Norton <gnorton@customerdna.com>
20088
20089         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
20090         should only return a type for pointers, arrays, and passbyref types.
20091         Fixes bug #63841.
20092
20093 2004-09-21  Martin Baulig  <martin@ximian.com>
20094
20095         * domain.c (mono_debugger_check_runtime_version): New public
20096         function.
20097
20098         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
20099
20100 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
20101
20102         * reflection.c: Added missing sort to the declarative security 
20103         attributes table. MS implementation stops seeing the attributes if the
20104         token number regress in the table (as shown by ildasm and permview).
20105
20106 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
20107
20108         * object-internals.h (MonoReflectionModule): Add 'token' field.
20109         
20110         * reflection.c (mono_reflection_get_token): Add support for Module
20111         and Assembly.
20112         (mono_module_get_object): Set 'token' field.
20113         (mono_module_file_get_object): Set 'token' field.
20114
20115         * icall.c: Add new Assembly and Module icalls.
20116
20117         * appdomain.c: Bump corlib version.
20118
20119 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
20120
20121         * loader.h loader.c class.h class.c: Add helper functions for obtaining
20122         tokens of metadata objects.
20123
20124         * reflection.h reflection.c (mono_reflection_get_token): New function
20125         to obtain the token of a metadata object.
20126
20127         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
20128
20129 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
20130
20131         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
20132         
20133         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
20134
20135 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
20136
20137         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
20138         * object-internals.h: Added 3 MonoArray* members to MonoReflection
20139         AssemblyBuilder to access the permissions set in the class lib.
20140         * reflection.c: Added security attributes encoding step in 
20141         mono_image_build_metadata.
20142         * tabledefs.h: Added new security actions defined in 2.0:
20143         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
20144
20145 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
20146
20147         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
20148         macro parameter.
20149
20150 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
20151  
20152         * locales.c: nullify the ICU_collator member of CompareInfo when it is
20153           finalized. There where random SIGSEVs at program termination, when
20154           an object being finalized was trying to do a string comparison and
20155           the current culture was already finalized.
20156  
20157 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20158
20159         * threads.c: call thread_cleanup before finishing the thread if we get
20160         there.
20161
20162 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
20163
20164         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
20165         assemblies from the parent. Fixes #65665.
20166
20167 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
20168
20169         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
20170         modifiers.
20171
20172 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
20173
20174         * reflection.h: add prototype for mono_get_dbnull_object
20175         * reflection.c: add prototypes for get_default_param_value_blobs 
20176         and mono_get_object_from_blob for fussier compilers
20177
20178 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
20179  
20180         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
20181         false deadlock checks in class initialization.
20182  
20183 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
20184
20185         * image.c (mono_image_addref): Fix comment.
20186
20187         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
20188         possible.
20189
20190 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
20191
20192         * reflection.c (mono_param_get_objects): Modified to return
20193         ParameterInfo.DefaultValue object.
20194
20195         (get_default_param_value_blobs):
20196         (mono_get_object_from_blob):
20197         (mono_get_dbnull_object): New helper routines. 
20198
20199         * object.c (mono_get_constant_value_from_blob): New helper routine
20200         carved out from get_default_field_value ()
20201
20202         * object-internals.h (mono_get_constant_value_from_blob): Added
20203         function declaration.
20204
20205 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
20206
20207         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
20208         referenced assemblies. Fixes #62135.
20209
20210         * exception.h exception.c (mono_get_exception_file_not_found2): New
20211         helper function.
20212
20213 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
20214
20215         * class.h class.c: Add mono_type_get_underlying_type ().
20216
20217 2004-09-09  Geoff Norton <gnorton@customerndna.com>
20218
20219         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
20220         Fix GetTypes() to support dynamically created assemblies.
20221
20222 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
20223
20224         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
20225         
20226         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
20227         previous patch.
20228
20229         * reflection.h reflection.c loader.c: Allow dynamic construction of
20230         pinvoke methods. Fixes #65571.
20231         
20232         * reflection.c (mono_reflection_get_type): Revert previous change since
20233         it causes regressions.
20234
20235 2004-09-08  Martin Baulig  <martin@ximian.com>
20236
20237         * class.c (class_compute_field_layout): Don't call
20238         mono_class_layout_fields() for open generic instances.
20239
20240 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
20241         * threads.c appdomain.c: fix typo in GC macro
20242
20243 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20244
20245         * threads.c: don't call mono_thread_detach() in start_wrapper(),
20246         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
20247
20248 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
20249
20250         * image.c (mono_image_close): Applied patch from 
20251         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
20252         assembly is loaded multiple times from data.
20253         
20254         * image.c (mono_image_open): Fix warning.
20255
20256 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
20257
20258         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
20259         once. Fixes #58334.
20260         
20261         * reflection.c (mono_reflection_create_runtime_class): Initialize
20262         klass->nested_classes. Fixes #61224.
20263
20264 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
20265
20266         * threads.c: sched_yield() on exit, to allow threads to quit.
20267
20268 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
20269
20270         * object.c (mono_unhandled_exception): Remove leftover debug code.
20271
20272 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
20273
20274         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
20275
20276 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
20277
20278         * marshal.c (emit_marshal_array): Really null terminate string arrays.
20279         
20280         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
20281
20282 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20283
20284         * marshal.c (emit_marshal_array): Null terminate string arrays.
20285         
20286         * marshal.c (raise_auto_layout_exception): Fix warning.
20287
20288         * reflection.c (mono_param_get_objects): Initialize the default value
20289         with DBNull.Value, not null. Fixes #62123.
20290
20291 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
20292
20293         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
20294         throw an exception with a cute explanation.
20295
20296 2004-09-06  Dick Porter  <dick@ximian.com>
20297
20298         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
20299         Close the new process's thread handle, as we don't use it.  The
20300         handle stays around forever otherwise.
20301
20302 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20303
20304         * object.c (arith_overflow): Fix warning.
20305
20306         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
20307         calling conventions in method refs. Fixes #65352.
20308
20309         * reflection.c: Fix warnings.
20310
20311 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
20312
20313         * icall.c: Add a new icall for Array.Clear
20314
20315 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
20316
20317         * object.c: When allocating an array, we have to throw
20318         an overflow exception if any of the lengths are < 0.
20319
20320 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20321
20322         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
20323         properly. Also move implementation of string array marshalling to 
20324         managed code. Fixes #42316.
20325
20326 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20327
20328         * assembly.c: provide more information when loading an assembly fails.
20329
20330 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20331
20332         * filewatcher.c: don't expect the development fam package to be
20333         installed.
20334
20335 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
20336
20337         * marshal.c: Make a copy of the signature cookie since it will be
20338         freed by the caller.
20339         
20340         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
20341
20342         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
20343
20344         * metadata.c (mono_metadata_free_marshal_spec): New function to free
20345         marshal specs.
20346
20347         * marshal.c: More refactoring.
20348         
20349         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
20350         smaller functions.
20351
20352 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
20353
20354         * object.c: In mono_message_invoke, fill the output parameter array after
20355           calling the managed method (it was done before the call). This fixes
20356           bug #59299.
20357
20358 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
20359
20360         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
20361         as well.
20362
20363 2004-09-02  Martin Baulig  <martin@ximian.com>
20364
20365         * class.c (mono_class_instance_size): Don't allow generic type
20366         definitions or open generic instances.
20367         (mono_class_array_element_size): If we're a value type, call
20368         mono_class_instance_size() on the original class.
20369
20370         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
20371         handle generic instances.
20372
20373         * mono-debug-debugger.c (write_type): Handle generic instances
20374         like classes.
20375
20376 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
20377
20378         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
20379         the allocation request fails. Fixes #65089.
20380
20381         * object.c (mono_runtime_free_method): Do not call mono_free_method.
20382         
20383         * object.c (mono_runtime_free_method): New function to free a dynamic
20384         method.
20385
20386         * marshal.c (mono_delegate_free_ftnptr): New function to free the
20387         delegate trampoline.
20388
20389         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
20390         with hasthis as dynamic,
20391
20392         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
20393
20394         * domain.c (mono_jit_info_table_remove): New function to remove an
20395         entry from the jit info table.
20396
20397         * class-internals.h (MonoMethod): Add 'dynamic' field.
20398
20399         * loader.c: Fix warnings.
20400
20401 2004-09-01  Martin Baulig  <martin@ximian.com>
20402
20403         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
20404         instead of mono_debugger_lock() because the latter one is a no-op
20405         unless running in the debugger.
20406
20407 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
20408
20409         * class.c (class_compute_field_layout): Classes with auto-layout or
20410         reference fields are not blittable.
20411         
20412 2004-09-01  Dick Porter  <dick@ximian.com>
20413
20414         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
20415         mono_image_get_filename() to get the assembly location.
20416
20417         * icall.c:
20418         * metadata.h: Fix compile warnings
20419
20420 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
20421
20422         * class.c (class_compute_field_layout): System.Object is blittable.
20423
20424         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
20425         as in/out. Fixes #59909.
20426
20427 2004-09-01  Martin Baulig  <martin@ximian.com>
20428
20429         * metadata.h (MONO_TYPE_ISREFERENCE): Call
20430         mono_metadata_generic_inst_is_valuetype() if we're a generic
20431         instance to check whether our underlying type is a reference type.
20432
20433 2004-09-01  Martin Baulig  <martin@ximian.com>
20434
20435         * metadata.c (mono_type_size): If we're a generic instance, call
20436         mono_class_value_size() for value types.
20437
20438 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
20439
20440         * marshal.c: Implement more custom marshalling functionality. Fixes
20441         #64915.
20442
20443 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20444
20445         * mono-debug.c, debug-mono-symfile.c: add some locking love.
20446
20447 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
20448
20449         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
20450
20451         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
20452
20453         * icall.c: Fix some warnings.
20454
20455         * threads.c (abort_appdomain_thread): Fix unref errors.
20456         (mono_thread_current): Fix THREAD_DEBUG define.
20457
20458 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
20459
20460         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
20461
20462         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
20463
20464 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
20465
20466         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
20467         string arrays.
20468
20469 2004-08-28  Martin Baulig  <martin@ximian.com>
20470
20471         * metadata.c
20472         (mono_metadata_generic_inst_is_valuetype): New public function.
20473
20474         * metadata.h (MONO_TYPE_ISSTRUCT): Call
20475         mono_metadata_generic_inst_is_valuetype() if we're a generic
20476         instance to check whether our underlying type is a valuetype.
20477
20478 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
20479
20480         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
20481         #63768.
20482
20483 2004-08-25  Martin Baulig  <martin@ximian.com>
20484
20485         * loader.c (mono_get_method_from_token): Abstract methods can also
20486         be generic and thus have type parameters.
20487
20488         * metadata-internals.h
20489         (MonoDynamicImage): Added `GPtrArray *gen_params'.
20490
20491         * reflection.c (mono_image_get_generic_param_info): Don't create a
20492         metadata row, just add an entry to the `gen_params' array.
20493         (build_compressed_metadata): Sort the `gen_params' array and then
20494         actually create the metadata.
20495
20496 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20497
20498         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
20499
20500 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
20501
20502         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
20503
20504 2004-08-24  Martin Baulig  <martin@ximian.com>
20505
20506         * class.cs (mono_class_is_subclass_of): Like an interface, a
20507         generic instance also derives from System.Object.
20508
20509 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
20510
20511         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
20512         custom modifiers to be in any order. Fixes #61990.
20513
20514 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
20515
20516         * object.c: Register mono_object_new_fast icall.
20517         
20518         * object.c (mono_class_get_allocation_ftn): Return to calling
20519         mono_object_new_fast, since it seems faster to compute the object 
20520         size in unmanaged code than passing it as a parameter.
20521
20522         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
20523
20524         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
20525         this function with Boehm as the oom handler, so we don't have to check
20526         the result of GC_malloc.
20527
20528         * object.c: Remove checks for oom.
20529
20530         * object.h object.c (mono_class_get_allocation_ftn): New function to
20531         return the icall which can be used to allocate an instance of a given
20532         class. 
20533
20534         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
20535
20536         * class-internals.h: Add 'enabled' field.
20537
20538 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
20539
20540         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
20541
20542 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
20543         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
20544         value 0x0010.
20545
20546 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
20547
20548         * appdomain.c: use the Tls function for appdomain too,
20549         at Zoltan's request. Actually return in mono_context_get
20550
20551         * appdomain.c, profiler.c, threads.c: use __thread
20552
20553 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
20554
20555         * appdomain.c threads.c: Call GC_CreateThread on windows.
20556
20557         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
20558         multiple libraries since this don't work on windows.
20559
20560 2004-08-18  Martin Baulig  <martin@ximian.com>
20561
20562         * class-internals.h
20563         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
20564         MonoMethodHeader.
20565
20566         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
20567         MonoMethodNormal since we also need it for abstract and interface
20568         methods.
20569
20570         * reflection.c
20571         (build_compressed_metadata): Sort the GenericParam table.
20572         (mono_image_create_token): Added `gboolean create_methodspec'
20573         argument; this is false when generating a MethodImpl token.
20574         (reflection_methodbuilder_to_mono_method): Abstract and interface
20575         methods may also have generic parameters.
20576
20577 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
20578
20579         * appdomain.c: thread local alloc
20580
20581 2004-08-17  Martin Baulig  <martin@ximian.com>
20582
20583         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
20584
20585         * icall.c
20586         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
20587         argument.
20588
20589         * class.c (mono_type_get_full_name): New public function.
20590         (mono_type_get_name): Don't include the type arguments.
20591
20592 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
20593
20594         * Makefile.am: Build static versions of libmetadata and libmonoruntime
20595         for inclusion into the mono executable.
20596
20597 2004-08-16  Martin Baulig  <martin@ximian.com>
20598
20599         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
20600         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
20601
20602 2004-08-14  Martin Baulig  <martin@ximian.com>
20603
20604         * class.c (dup_type): Also copy the `byref' field.
20605
20606 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
20607
20608         * reflection.c (create_dynamic_mono_image): Revert the last change 
20609         since it breaks bootstrap.
20610
20611 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
20612
20613         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
20614
20615         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
20616         not free them with g_free.
20617
20618 2004-08-11  Martin Baulig  <martin@ximian.com>
20619
20620         * reflection.c (mono_reflection_setup_internal_class): Also call
20621         mono_class_setup_mono_type() if we already have a `tb->type.type'.
20622
20623 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
20624
20625         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
20626         called during default (first) AppDomain creation. Keep track of
20627         Evidence when loading assemblies.
20628
20629 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
20630
20631         * opcodes.c, opcodes.h: reduce runtime relocations.
20632
20633 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
20634
20635         * culture-info.h, locales.c: fixes and chages to sue the new
20636         optimized format of the locale data.
20637         * culture-info-tables.h: regenerated.
20638
20639 2004-08-06  Geoff Norton <gnorton@customerdna.com>
20640         
20641         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
20642
20643 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
20644
20645         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
20646         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
20647         * domain-internals.h: icall declaration.
20648         * icall.c: icall registration.
20649         * object-internals.h: New fields in MonoAssembly for CAS.
20650
20651 2004-08-05  Duncan Mak  <duncan@ximian.com>
20652
20653         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
20654         CEE_LDELEM_ANY.
20655
20656 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
20657
20658         * reflection.c: fix to deal with object[] arrays in custom ctors
20659         (bug #62550).
20660
20661 2004-08-05  Martin Baulig  <martin@ximian.com>
20662
20663         * class.c (mono_class_array_element_size): Added support for
20664         generic instances and correctly handle "recursive" types.
20665
20666 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
20667
20668         * assembly.c: Fix warnings.
20669
20670 2004-08-04  Martin Baulig  <martin@ximian.com>
20671
20672         * class.c
20673         (mono_type_get_name_recurse): Added `gboolean include_arity'
20674         argument specifying whether or not we should include the generic
20675         arity in the type name.
20676         (_mono_type_get_name): New static function.
20677         (mono_class_setup_vtable): If we're a generic instance, don't
20678         include the generic arity in the names of explicit method
20679         implementations.        
20680
20681 2004-08-03  Martin Baulig  <martin@ximian.com>
20682
20683         * class.c (mono_type_get_name_recurse): Enclose the generic type
20684         arguments in `<', '>'.
20685
20686 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20687
20688         * gc.c: make GC warning messages use the trace API, they are just
20689         noise to most of the users.
20690
20691 2004-08-03  Martin Baulig  <martin@ximian.com>
20692
20693         * debug-mono-symfile.c (read_string): Correctly read the string.
20694
20695 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20696
20697         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
20698         
20699         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
20700         icalls.
20701         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
20702
20703 2004-07-30  Martin Baulig  <martin@ximian.com>
20704
20705         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
20706         Reflect latest symbol writer changes.   
20707
20708 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
20709
20710         * object.c: always create an object if null is passed
20711         to Invoke() where a valuetype is expected.
20712
20713 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
20714
20715         * marshal.c (mono_marshal_init): make managed
20716         signatures match native ones better for 64bits.
20717
20718 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20719
20720         * appdomain.c: hack to build correctly the private bin path on windows.
20721         Fixes bug #61991.
20722
20723 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
20724
20725         * assembly.c: Load mscorlib from the correct framework directory
20726           (mono/<version>/mscorlib.dll).
20727         * appdomain.h: Added prototypes for new functions.
20728         * internals.h: Added some prototypes.
20729         * domain.c: When initializing the runtime, get from the executable and
20730           the configuration files the runtime version that the app supports.
20731           Added support methods for reading app.exe.config. Added list of versions
20732           supported by the JIT. Added two new methods: mono_init_from_assembly,
20733           which initializes the runtime and determines the required version from
20734           the provided exe file, and mono_init_version, which initializes
20735           the runtime using the provided version.
20736         * icall.c: Get machine.config from version-specific directory.
20737         * reflection.c: When generating an image, embed the version number
20738           of the current runtime.
20739
20740 2004-07-28  Dick Porter  <dick@ximian.com>
20741
20742         * socket-io.c
20743         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
20744         returned sockaddr size before creating the remote address object.
20745         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
20746         61608.
20747
20748 2004-07-28  Dick Porter  <dick@ximian.com>
20749
20750         * locales.c (string_invariant_compare_char): Fix invariant char
20751         compares between upper and lower cases.  Fixes bug 61458.
20752
20753 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
20754         
20755         * marshal.c: actually cache stelem.ref wrappers.
20756         
20757 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
20758
20759         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
20760         sections and remove the mono_cli_rva_map () function.
20761
20762 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
20763
20764         * debug-mono-symfile.c: fix one more endianess issue, from a patch
20765         by Geoff Norton (<gnorton@customerdna.com>).
20766
20767 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20768
20769         * class.c: fix class loads for pointer types (typeof(int) !=
20770         typeof(int*)).
20771
20772 2004-07-27  Martin Baulig  <martin@ximian.com>
20773
20774         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
20775         reading the debugging information from an external ".mdb" file.
20776
20777 2004-07-24  Martin Baulig  <martin@ximian.com>
20778
20779         * reflection.c (mono_image_get_type_info): Only write a class
20780         layout entry if we actually have a size or a packing size.
20781
20782 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
20783
20784         * reflection.c (type_get_fully_qualified_name): 
20785         insert cast to get type checking of ?: with non-gcc compilers
20786
20787 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
20788
20789         * rand.c: use g_getenv for both lookups of
20790         MONO_EGD_SOCKET
20791
20792 2004-07-17  Martin Baulig  <martin@ximian.com>
20793
20794         * reflection.c (mono_reflection_bind_generic_method_parameters):
20795         Set `gmethod->reflection_info'.
20796
20797 2004-07-17  Martin Baulig  <martin@ximian.com>
20798
20799         * class.c (mono_class_create_from_typedef): Insert the newly
20800         created class into the hash table before computing the interfaces
20801         since we could be called recursively.
20802
20803 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
20804
20805         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
20806         function to implement stelem.ref in managed code
20807         * class-internals.h, debug-helpers.c: a new wrapper type
20808         for the above.
20809
20810 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
20811
20812         * gc.c: allow GC handles to work even when no GC is compiled in.
20813         Fix part of bug #61134 (GetAddrOfPinnedObject).
20814
20815 2004-07-13  Peter Williams  <peter@newton.cx>
20816  
20817         * process.c (complete_path): Make sure we don't attempt to execute
20818         directories.
20819  
20820 2004-07-12  Geoff Norton <gnorton@customerdna.com>
20821
20822         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
20823           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
20824           and will add/subtract the hour if needed
20825
20826 2004-07-12  Martin Baulig  <martin@ximian.com>
20827
20828         * reflection.c (mono_field_get_object): If we have
20829         `field->generic_info', take the attributes from
20830         `field->generic_info->generic_type'.    
20831
20832 2004-07-12  Martin Baulig  <martin@ximian.com>
20833
20834         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
20835         This function must be called before initializing the runtime.
20836         (mono_debug_init_1): New function; call this after initializing
20837         the runtime, but before loading the assembly.  It tells the
20838         debugger to load corlib and the builtin types.
20839
20840         * mono-debug-debugger.c: Did some larger changes in the debugging
20841         code; support recursive class declarations, make sure we actually
20842         add all classes.
20843
20844 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20845
20846         * debug-helpers.c: undo my previous patch and fixed the real issue in
20847         ../mini/exceptions-x86.c
20848
20849 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20850
20851         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
20852         when no HOME env. variable was set and a NullRef was thrown in a .cctor
20853         called from other .cctors.
20854
20855 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20856
20857         * loader.c: Removed the mono_loader_wine_init hack now that we are
20858         doing a managed version of Windows.Forms.
20859
20860 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
20861
20862         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
20863         threadpool.c, threads.c: remove static data from rootset.
20864
20865 2004-07-09  Dick Porter  <dick@ximian.com>
20866
20867         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
20868         Don't do any more processing if the matched length was 0.  It was
20869         increasing the size of the string before.  Fixes bug 61167.
20870
20871 2004-07-09  Dick Porter  <dick@ximian.com>
20872
20873         * socket-io.h:
20874         * socket-io.c
20875         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20876         Add support for SO_PEERCRED if its available.
20877
20878 2004-07-09  Peter Bartok <pbartok@novell.com>
20879         * loader.c: winelib.exe.so error message is now only displayed if
20880         MONO_DEBUG is set. To help us avoid questions when people are trying
20881         out the new Managed.Windows.Forms.
20882
20883 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
20884
20885         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
20886         for isinst and castclass wrappers.
20887
20888         * class-internals.h icall.c: Move registration and lookup of JIT icalls
20889         to libmetadata from the JIT, so they could be used by the marshalling
20890         code and the interpreter.
20891
20892         * marshal.c: Register marshalling related JIT icalls here instead of
20893         in mini.c. Use CEE_MONO_ICALL instead of the family of 
20894         CEE_MONO_PROC<x> opcodes to call marshalling functions.
20895
20896         * metadata.h: Remove unneeded marshalling conversions.
20897
20898         * opcodes.c: Update for new opcodes.
20899         
20900 2004-07-08  Martin Baulig  <martin@ximian.com>
20901
20902         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
20903         (mono_debug_get_domain_data): Make this function static.
20904
20905 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
20906
20907         * gc.c, object.h: add nice GC handle API for embedders.
20908
20909 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
20910
20911         * reflection.c: more changes for the new api
20912
20913         * object.c: When we reflect on a field w/ a constant value, it
20914         will not have a memory location, so we must access metadata. Also,
20915         allow easier reading of strings so that we can read them from
20916         the constant data.
20917
20918         * class.c (mono_class_layout_fields): no need for literal fields here.
20919
20920         * class-internals.h: api changes for const fields
20921
20922         * icall.c (ves_icall_get_enum_info): use new apis for const fields
20923
20924 2004-07-06  Martin Baulig  <martin@ximian.com>
20925
20926         * mono-debug.h: Increment version number to 44.
20927
20928         * mono-debug.c (mono_debug_add_wrapper): The second argument is
20929         now a gpointer, rewrote this whole method.
20930
20931         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
20932         function.  Add information about the wrapper in a new "misc table".
20933
20934         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
20935         for the new misc table.
20936
20937 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
20938
20939         * metadata-internals.h image.c: Add a cache for helper signatures.
20940
20941         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
20942
20943 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
20944
20945         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
20946         delegates from a delegate. Fixes #61033.
20947         
20948         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
20949         marshalling of stringbuilder arrays. Fixes #59900.
20950
20951 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
20952
20953         * icall.c: Add EnumBuilder:setup_enum_type icall.
20954
20955 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
20956
20957         * icall.c: Added a new icall for the property version of
20958         OffsetOfStringData.
20959
20960 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
20961
20962         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
20963         it has a constant size across platforms.
20964
20965         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
20966         stack trace.
20967
20968 2004-06-29  Martin Baulig  <martin@ximian.com>
20969
20970         * mono-debug.c (mono_debug_add_method): Protect the whole function
20971         in mono_debugger_lock(), not just parts of it.
20972
20973 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
20974
20975         * reflection.c: make sure padding bytes in heaps are zeroed.
20976
20977 2004-06-24  David Waite  <mass@akuma.org>
20978
20979         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
20980         image.c, loader.c, locales.c, marshal.c, metadata.c,
20981         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
20982         string-icalls.c, threads.c: change to C90-style comments from C99 /
20983         C++ -style
20984
20985 2004-06-24  Dick Porter  <dick@ximian.com>
20986
20987         * threads.c
20988         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
20989         return createdNew.  Fixes bug 60412.
20990
20991         * threads-types.h: 
20992         * icall.c: Add createdNew parameter to CreateMutex icall
20993
20994 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
20995
20996         * reflection.c, object-internals.h: save default value in params.
20997
20998 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20999
21000         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
21001         no need to build a new path combining that with the application base.
21002         Fixes bug #60442.
21003
21004 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
21005
21006         * reflection.c: fixed minor standard compliance issues.
21007
21008 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
21009
21010         * reflection.c: fixed issue with encoding some custom attributes
21011         (arrays in properties and fields, bug #60411).
21012
21013 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21014
21015         * reflection.c: fix start address when copying the public key token.
21016
21017 2004-06-23  Martin Baulig  <martin@ximian.com>
21018
21019         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
21020         the `exc' object in a static object to put it into the GC's root set.
21021
21022 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
21023
21024         * reflection.c: make mono_reflection_setup_internal_class ()
21025         callable a second time to setup a new parent class.
21026
21027 2004-06-23  Dick Porter  <dick@ximian.com>
21028
21029         * threads.c: Check for WAIT_IO_COMPLETION return values.
21030
21031 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
21032
21033         * appdomain.c: Removed the g_free on the public key token. Now copy 
21034         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
21035         * assembly.c: Added public key token string value when loading 
21036         assemblies. Fix bug #60439.
21037         * icall.c: Added missing informations (like public key) in 
21038         GetReferencedAssemblies. Fix #60519.
21039         * image.h: Changed definition for public key token from const char*
21040         public_tok_value to guchar public_key_token [17];
21041         * reflection.c: Updated for changes to public key token.
21042
21043 2004-06-22  Lluis Sanchez Gual
21044
21045         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
21046         for the field in base classes.
21047
21048 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
21049
21050         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
21051         mark headers as not supported, they are installed only for use by the
21052         debugger.
21053
21054 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
21055
21056         * *.c, *.h: avoid namespace pollution in public headers.
21057
21058 2004-06-21  Martin Baulig  <martin@ximian.com>
21059
21060         * exception.c (mono_get_exception_security): It's in
21061         "System.Security", not in "System".
21062
21063         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
21064         the exception classes.
21065
21066 2004-06-21  Martin Baulig  <martin@ximian.com>
21067
21068         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
21069         Protect the exception object from being finalized.
21070
21071 2004-06-21  Martin Baulig  <martin@ximian.com>
21072
21073         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
21074         public function.
21075
21076 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
21077
21078         * reflection.c: Load the assembly in mono_reflection_type_from_name,
21079         if it was not loaded before. Fix parts of #60439.
21080
21081 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
21082
21083         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
21084         code that was broken since Ben's change: wrappers are now
21085         dependent on the method signature only again.
21086
21087 2004-06-21  Martin Baulig  <martin@ximian.com>
21088
21089         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
21090         added interface support.
21091
21092 2004-06-21  Martin Baulig  <martin@ximian.com>
21093
21094         * class.c (mono_vtable_get_static_field_data): New public method.
21095
21096 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
21097
21098         * filewatcher.c : Windows build fix to be compliant with API changes.
21099
21100 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
21101
21102         * class.h, class.c: more accessors.
21103         * metadata.h, metadata.c: prepare for hiding MonoType and
21104         MonoMethodSignature: people should use the accessors from now on
21105         outside of the tree.
21106
21107 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
21108
21109         * *.c, *.h: more API cleanups.
21110
21111 2004-06-18  Jackson Harper  <jackson@ximian.com>
21112
21113         * assembly.c: Trace loading assemblies.
21114         * loader.c: Trace loading native libraries.
21115         * mono-config.c: Trace loading config files.
21116         
21117 2004-06-18  Dick Porter  <dick@ximian.com>
21118
21119         * locales.c: Tell ICU the lengths of strings, it can cope with
21120         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
21121
21122 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
21123
21124         * image.c: swapped name/filename;
21125
21126 2004-06-18  Martin Baulig  <martin@ximian.com>
21127
21128         * mono-debug-debugger.c (write_class): Write the parent class at
21129         the end of the header.
21130
21131 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
21132
21133         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
21134
21135 2004-06-17  Raja R Harinath  <rharinath@novell.com>
21136
21137         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
21138         (bundle_obj): New conditional define.
21139         (BUILT_SOURCES): Remove.
21140         ($(bundle_srcs)): Make parallel-make safe.
21141         (libmonoruntime_la_LIBADD): Make unconditional.
21142         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
21143         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
21144
21145 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
21146
21147         * culture-info-tables.h: It was inconsistent with the latest
21148           supp info files.
21149
21150 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
21151
21152         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
21153         be loaded.
21154
21155         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
21156         with gcc 2.95.
21157
21158 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
21159
21160         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
21161         cleaned up public header threads.h.
21162
21163 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
21164
21165         * Makefile.am, *.c, *.h: more API cleanups.
21166
21167 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
21168
21169         * Makefile.am: removed monosn from compilation.
21170         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
21171         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
21172         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
21173         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
21174         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
21175         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
21176
21177 2004-06-15  Jackson Harper  <jackson@ximian.com>
21178
21179         * assembly.c: Make locales lower case when searching the GAC for
21180         assemblies. gacutil will always make locales lowercase when
21181         installing so this effectively makes them case insensitive.
21182         
21183 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
21184
21185         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
21186         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
21187           parameter which allows to choose whether the wait can be interrupted or 
21188           not. Also added the method mono_monitor_enter(), which locks the monitor
21189           using an infinite wait and without allowing interruption.
21190           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
21191           interrupted.
21192         * object.h: Added new fields in MonoThread. suspend_event holds the event
21193           used to susped/resume the thread. synch_lock is the lock object to use for
21194           modifying the thread state.
21195         * threads.c: Use the new synch_lock object for locking, instead of "this",
21196           which can generate deadlocks.
21197           Moved thread state change in Thread.Sleep and Thread.Join from managed
21198           to unmanaged code. This avoids a deadlock when the thread was suspended
21199           just after acquiring the thread lock.
21200           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
21201           Implemented Thread.Suspend using an event instead of ThreadSuspend,
21202           which is not fully implemented in the io-layer.
21203         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
21204
21205 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
21206
21207         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
21208         threads-types.h: more API cleanups.
21209
21210 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
21211
21212         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
21213         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
21214         threadpool.c, threads.c: first pass at the exported API cleanup.
21215
21216 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
21217
21218         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
21219
21220 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21221
21222         * icall.c: added internalGetHome.
21223
21224 2004-06-14  Dick Porter  <dick@ximian.com>
21225
21226         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
21227         possible to return successfully when '.' or '..' were the only
21228         entries in a directory, but were skipped.  The MonoIOStat was not
21229         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
21230         Fixes bug 59574.
21231
21232 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
21233
21234         * reflection.c: make binaries run on .Net 1.1 by default.
21235
21236 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
21237
21238         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
21239
21240 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
21241
21242         * marshal.c: keep track of struct size with explicit layout
21243         (bug #59979).
21244
21245 2004-06-12  Martin Baulig  <martin@ximian.com>
21246
21247         * mono-debug-debugger.c: Comment out a debugging g_message().
21248
21249 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
21250
21251         * reflection.c, reflection.h: do not free custom attrs that are cached.
21252         * icall.c: use braces to make code clearer.
21253
21254 2004-06-11  Martin Baulig  <martin@ximian.com>
21255
21256         * class.h (MonoInflatedField): New type.
21257         (MonoClassField): Replaced `MonoType *generic_type' with
21258         `MonoInflatedField *generic_info'.
21259
21260         * icall.c
21261         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
21262
21263 2004-06-11  Martin Baulig  <martin@ximian.com>
21264
21265         * reflection.c (mono_image_create_method_token): Correctly encode
21266         varargs methods.
21267
21268 2004-06-11  Martin Baulig  <martin@ximian.com>
21269
21270         * metadata.c (mono_metadata_parse_method_signature): When parsing
21271         a MethodDef which has VarArgs, also set sentinelpos if we don't
21272         have any parameters.
21273
21274 2004-06-11  Martin Baulig  <martin@ximian.com>
21275
21276         * verify.c (mono_method_verify): In CEE_CALL, use
21277         mono_method_get_signature() to get the method's signature, unless
21278         we're a PInvoke method.
21279
21280 2004-06-10  Jackson Harper  <jackson@ximian.com>
21281
21282         * assembly.c: Use <path>/lib/mono/gac for the extra paths
21283         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
21284         logical name as the supplied path is just a prefix to the gac not
21285         the direct path to it.
21286         
21287 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
21288
21289         * reflection.c: make the token for a created method match
21290         the token of the MethodBuilder it was created from
21291         (IKVM requires this behaviour now).
21292
21293 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
21294
21295         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
21296         reflection.c, socket-io.c: leak fixes.
21297
21298 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
21299
21300         * icall.c: handle sentinel pos in vararg methods in position different
21301         from 0.
21302
21303 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21304
21305         * culture-info-tables.h: freshly generated.
21306
21307 2004-06-09  Martin Baulig  <martin@ximian.com>
21308
21309         * loader.c (mono_get_method_constrained): Call `mono_class_init
21310         (constrained_class)'.   
21311
21312 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
21313
21314         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
21315         any methods. Fixes #59629.
21316
21317 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21318
21319         * culture-info-tables.h: reflecting locale-builder updates.
21320
21321 2004-06-08  Dick Porter  <dick@ximian.com>
21322
21323         * object.h:
21324         * locales.c: Fixed compile warnings, including a real bug in
21325         CompareInfo_internal_compare.
21326         
21327 2004-06-08  Dick Porter  <dick@ximian.com>
21328
21329         * locales.c
21330         (ves_icall_System_Globalization_CompareInfo_internal_index):
21331         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
21332         Double-check the resuls of usearches, because ICU currently
21333         ignores most of the collator settings here.  Fixes bug 59720.
21334         
21335 2004-06-08  Dick Porter  <dick@ximian.com>
21336
21337         * locales.c
21338         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
21339         Fix memory leak and segfault-causing typo.  No idea how this one
21340         lasted so long without being noticed.
21341
21342 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
21343
21344         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
21345         any methods. Fixes #59629.
21346
21347 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21348
21349         * assembly.c:
21350         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
21351         own the critical section before). Removed dead code (that's done
21352         in the preload hook).
21353
21354         (mono_assembly_load_with_partial_name): call the preload hook.
21355
21356 2004-06-08  Martin Baulig  <martin@ximian.com>
21357
21358         * metadata.c (mono_metadata_signature_alloc): Default
21359         `sentinelpos' to -1.
21360
21361         * reflection.c (mono_image_get_array_token): Likewise.
21362
21363 2004-06-08  Martin Baulig  <martin@ximian.com>
21364
21365         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
21366
21367         * metadata.c (mono_metadata_parse_method_signature): When parsing
21368         a MethodDef which has VarArgs, set sentinelpos.
21369
21370         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
21371         `gint16' since we're using -1 for non-varargs methods.
21372
21373         * reflection.c
21374         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
21375         (method_encode_signature): Added varargs support.
21376         (method_builder_encode_signature): Likewise.
21377         (mono_image_get_varargs_method_token): New static method.
21378         (mono_image_create_method_token): New public method; this is
21379         called via an icall instead of mono_image_create_token() when
21380         calling a varargs method.       
21381
21382 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
21383
21384         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
21385
21386 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21387
21388         * culture-info-tables.h : Reflecting the latest locale-builder that
21389           fixed empty array representation ({} to {0}).
21390
21391 2004-06-07  Jackson Harper  <jackson@ximian.com>
21392
21393         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
21394         looking up extra gac paths. This allows MONO_GAC_PATH to act
21395         exactly like a prefix.
21396         
21397 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
21398
21399         * reflection.c (mono_reflection_type_from_name): Make a copy of the
21400         type name before modifying it. Fixes #59405.
21401
21402 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21403
21404         * culture-info.h: added fields for "all datetime patterns".
21405         * locales.c: (  ves_icall_System_Globalization_CultureInfo
21406           _construct_datetime_format ()): fill xxx_patterns fields.
21407         * object.h: added fields for "all datetime patterns" to
21408           MonoDateTimeFormatInfo.
21409         * culture-info-tables.h: reflecting locale-builder updates.
21410
21411 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
21412
21413         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
21414         the event has no add and remove methods. Fixes #59629.
21415
21416 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
21417
21418         * object.c: Fixed possible integer overflow when allocating large
21419         strings.
21420
21421 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
21422
21423         * culture-info-tables.h: reflecting locale-builder updates.
21424
21425 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
21426
21427         * culture-info-tables.h: reflecting locale-builder updates.
21428
21429 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
21430
21431         * culture-info-tables.h: reflecting locale-builder updates.
21432
21433 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
21434
21435         * threads.c: Made Thread.Sleep abortable.
21436
21437 2004-06-02  Martin Baulig  <martin@ximian.com>
21438
21439         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
21440
21441         * debug-mono-symfile.h: Bumped symbol file version number to 37.
21442
21443 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
21444
21445         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
21446
21447 2004-05-30  Jackson Harper  <jackson@ximian.com>
21448
21449         * reflection.c: Do not hardcode assembly versions or public key
21450         tokens anymore. All of this except the corlib section was dead
21451         code anyways.
21452         
21453 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
21454
21455         * object.c (mono_runtime_invoke_array): Automatically create boxed
21456         objects for byref valuetypes if needed. Fixes #59300.
21457         
21458         * object.c (mono_method_return_message_restore): Handle 
21459         MONO_TYPE_OBJECT as well.
21460
21461 2004-05-28  Jackson Harper  <jackson@ximian.com>
21462
21463         * reflection.c: The modified type encoding was causing build
21464         problems. Reverted for now.
21465         
21466 2004-05-28  Jackson Harper  <jackson@ximian.com>
21467
21468         * reflection.c/h: Take an assembly ref so that we dont create
21469         fully qualified names when encoding types in the same assembly as
21470         the custom attribute being emitted.
21471         * appdomain.c: Increment version number.
21472         
21473 2004-05-26  Duncan Mak  <duncan@ximian.com>
21474
21475         * icall.c
21476         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
21477         Set the full version number (major, minor, build, revision).
21478
21479 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
21480
21481         * marshal.c (emit_struct_conv): increment src/dst after blit
21482         (mono_marshal_get_managed_wrapper,
21483         mono_marshal_get_native_wrapper): make sure we have marshalling
21484         info before marshalling params (info computation affects
21485         blittable)
21486
21487         * class.c (class_compute_field_layout): correctly deal with
21488         blittable
21489         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
21490         value types (as per what windows dows by default)
21491         (mono_class_setup_mono_type): System.ValueType is blittable
21492         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
21493         blittable
21494
21495         * marshal.c (mono_marshal_load_type_info): flag types  as
21496         non-blittable if the native layout doesn't match the managed
21497         layout
21498
21499 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21500
21501         * appdomain.c: don't add stuff in the private search path that is
21502         above the application base. If application base is not set, there's
21503         no private search path.
21504
21505 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
21506
21507         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
21508         byref struct arguments in native->managed marshalling.
21509
21510 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
21511
21512         * marshal.c (mono_marshal_get_runtime_invoke): correctly
21513         cache methods using signature (special case for methods
21514         that are value type or string class)
21515         
21516         * image.c (mono_image_close): clean up allocated GSList's
21517         in runtime_invoke_cache.
21518
21519 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21520
21521         * mono-config.c: set the correct path for mono_cfg_dir on windows when
21522         there's no MONO_CFG_DIR environment variable defined.
21523
21524 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21525
21526         * threads.c: windows version must be >= 0x0500 to include OpenThread.
21527
21528 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
21529
21530         * threadpool.c: Really wait for 500ms after the async call, even if the wait
21531           is interrumped.
21532         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
21533           before waiting for it, and call CloseHandle after the wait to unref it.
21534           This will make sure that handles are not disposed too early.
21535
21536 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21537
21538         * appdomain.c:
21539         * appdomain.h:
21540         * icall.c: removed
21541         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
21542         needed now.
21543
21544         * object.c: se the application_base only for the domain that runs
21545         Main. Fixes bug #59216,
21546
21547 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21548
21549         * appdomain.c:
21550         * object.c: only the domain in which Main is run have
21551         SetupInformation.ConfigurationFile set, so moved a few lines from
21552         appdomain.c to object.c.
21553
21554 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21555
21556         * appdomain.c: we tried to load [name].(dll|exe), but according
21557         to bug #57710, we must also try [culture]/[name].(dll|exe) and
21558         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
21559         There's a test case attached to bug #58922.
21560
21561 2004-05-27  Dick Porter  <dick@ximian.com>
21562
21563         * icall.c:
21564         * file-io.c: Implemented icalls for locking and unlocking regions
21565         in a file.
21566         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
21567         FALSE on error (fixes both compiler warning and real bug.)
21568
21569 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
21570
21571         * culture-info-tables.h: reflecting locale-builder updates.
21572
21573           (Added missing ChangeLog entry for 05/26)
21574
21575 2004-05-27  Jackson Harper  <jackson@ximian.com>
21576
21577         * locales.c: Fix some cut and paste errors.
21578         
21579 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21580
21581         * mono-config.c: set the correct path for config. directory on windows.
21582
21583 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21584
21585         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
21586           on win32.
21587
21588 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
21589
21590         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
21591         from pinvoke functions.
21592         
21593         * marshal.c (mono_ftnptr_to_delegate): Implement this.
21594
21595 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21596
21597         * culture-info-tables.h: reflecting locale-builder updates.
21598
21599 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
21600
21601         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
21602         #59086.
21603
21604 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
21605
21606         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
21607         * icall.c: Modified icalls for RNG.
21608         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
21609         Windows (CryptoAPI).
21610
21611 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
21612
21613         * locales.c: Fix build.
21614
21615 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21616
21617         * culture-info-tables.h: reflecting locale-builder updates.
21618
21619 2004-05-25  Jackson Harper  <jackson@ximian.com>
21620
21621         * locales.c: When creating the current culture use the $LANGs
21622         specific culture. So DateTimeFormat and NumberFormat entries are created.
21623         
21624 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
21625
21626         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
21627         a char array as parameter.
21628
21629 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
21630
21631         * image.c: In mono_image_open(), always use an absolute path name to
21632           look for already loaded images.
21633
21634 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
21635
21636         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
21637         missing in the windows build (like older cygwin include files).
21638
21639 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
21640
21641         * icall.c: Fixed check for possible integer overflow in Buffer_
21642         BlockCopy icall. Replaced comments style // by /* */.
21643
21644 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
21645
21646         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
21647         
21648         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
21649         check after MONO_VTADDR. Fixes pinvoke2.exe.
21650
21651         * marshal.h marshal.c metadata.h: Add beginnings of support for
21652         ftnptr -> delegate marshalling.
21653
21654 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
21655
21656         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
21657         * threads.c: Fix warnings.
21658
21659 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
21660
21661         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
21662         * icall.c: Registered icalls for Suspend and Resume.
21663         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
21664           Thread.Abort.
21665         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
21666         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
21667         * process.c: Use WaitForSingleObjectEx.
21668         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
21669           checkpoints.
21670         * threads.c, threads.h: Make use of new Ex wait methods. Improved
21671           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
21672           for Suspend and Resume. Added new mono_thread_stop, used for stoping
21673           background threads. Added basic support for Abort in Windows.
21674           Start new threads using a managed delegate invoke wrapper. This wrapper
21675           has an interruption checkpoint that is needed since an interruption
21676           can be requested before the thread leaves the unmanaged code that starts 
21677           the thread.
21678         * marshal.c: Added interruption checkpoint after every native call, and
21679           also before managed calls for wrappers called from unmanaged code to
21680           go into managed code.
21681         * object.h: Added new field in MonoThread to keep track of interruption
21682           requests.
21683
21684 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
21685
21686         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
21687         calls.
21688
21689 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21690
21691         * appdomain.c:
21692         * assembly.c:
21693         * gc.c:
21694         * locales.c:
21695         * mono-config.c:
21696         * rand.c: getenv -> g_getenv (windows!)
21697
21698         * process.c: complete_path is also used on non-windows platforms.
21699
21700 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21701
21702         * icall.c: new signature for Process_Start.
21703
21704         * process.[ch]: new signature for Process_Start. If we're on windows
21705         and UseShellExecute is false, we have to search for the program by
21706         ourselves if we don't get a full path.
21707
21708 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
21709
21710         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
21711         marshalling and call CleanUpNativeData if needed. Fixes #58646.
21712
21713 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21714
21715         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
21716         Fixes bug #58373.
21717
21718 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21719
21720         * process.c: use double quotes to quote program name and arguments on
21721         windows. Fixes bug #58575.
21722
21723 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21724
21725         * file-io.c: don't return "." and ".." when using windows Find*File.
21726
21727 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
21728
21729         * marshal.c: Don't pass wrappers to message init because method 
21730         addressed used to lookup metadata. part of remoting[2|3] fix.
21731
21732 2004-05-15  Jackson Harper  <jackson@ximian.com>
21733
21734         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
21735         path is essentially the same as MONO_PATH except that it points to
21736         GACs instead of lib directories.
21737         * loader.h: The user gac is gone so we dont need function to
21738         enable/disable it.
21739         * mono-config.c: user gac option is now gone.
21740         
21741 2004-05-15  Jackson Harper  <jackson@ximian.com>
21742
21743         * culture-info.h: Make defines more consistent, add calendar data
21744         to the culture info table.
21745         * culture-info-tables.h: Add basic calendar data. Basically
21746         everyone gets default gregorian until all the data is
21747         updated.
21748         * locales.c: Use the new consistent defines. Set calendar data for
21749         culture info objects.
21750         * object.h: add a field for calendar data to CultureInfo
21751         
21752 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
21753
21754         * image.c: image->runtime_invoke_cache is keyed on signatures now.
21755         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
21756         a signature.
21757         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
21758         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
21759         an extra param that is the pointer of the method to invoke. The IL for
21760         the invoke method is no longer specific to the method, but to the
21761         signature of the method. Thus, we can share the same code for multiple
21762         methods. This reduces the number of methods that have to be compiled.
21763
21764 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
21765
21766         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
21767
21768         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21769
21770         * icall.c: Optimize Buffer.BlockCopy.
21771
21772 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21773
21774         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
21775         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
21776         quote). Changed them to "MMMM yyyy".
21777
21778 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
21779
21780         * rand.c
21781         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
21782
21783 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
21784
21785         * reflection.h: Updated after changes to managed structures.
21786
21787         * appdomain.c: Bump corlib version.
21788
21789 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21790
21791         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
21792         windows.
21793
21794 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21795
21796         * Makefile.am: link to ../os/libmonoos.la on windows.
21797
21798         * assembly.c:
21799                 -If MONO_DEBUG, warn about non-existing directories in
21800                 MONO_PATH.
21801                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
21802                 compile time variable.
21803                 -Removed init_default_path and call mono_set_rootdir from
21804                 libmonoos.a instead (windows only).
21805
21806         * assembly.h: declare mono_assembly_getrootdir().
21807
21808         * domain.c:
21809         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
21810
21811         * loader.c: s/getenv/g_getenv/
21812
21813 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
21814
21815         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
21816
21817         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
21818
21819         * metadata.h: Add new marshalling conversions.
21820
21821         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
21822         function.
21823
21824         * reflection.c (mono_reflection_get_type): Lookup the type in all
21825         modules of a multi-module assembly. Fixes #58291.
21826
21827 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
21828
21829         * threads.c: Before aborting a background, set the StopRequested
21830         state.  This avoids throwing the Abort exception.
21831         In mono_thread_manage, don't continue with the shutdown until all
21832         aborted threads have actually stopped.
21833
21834 2004-05-10  Jackson Harper  <jackson@ximian.com>
21835
21836         * locales.c: Remove the modifier from culture names.
21837         
21838 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21839
21840         * Makefile.am: monosn is not installed any more. It has been deprecated
21841         in favor of sn.
21842
21843 2004-05-07  Jackson Harper  <jackson@ximian.com>
21844
21845         * locales.c
21846         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
21847         Fix array construction, add bailout if the length is 0.
21848
21849 2004-05-07  Dick Porter  <dick@ximian.com>
21850
21851         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
21852         machine doesn't have a DNS entry.  Patch by Urs Muff
21853         (umuff@quark.com), fixes bug 57928.
21854
21855 2004-05-06  Jackson Harper  <jackson@ximian.com>
21856
21857         * reflection.c: Handle null PublicTokens properly. alloc mem for
21858         assembly names culture so we dont crash when freeing it.
21859         
21860 2004-05-06  Jackson Harper  <jackson@ximian.com>
21861
21862         * assembly.c: Check the usergac when loading with partial names.
21863         
21864 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
21865
21866         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
21867         does nothing for now (not required for Linux/Windows) but the class
21868         library can call it (and a newer or modified runtime could need it).
21869         * icall.c: Registred icall.
21870
21871 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21872
21873         * loader.c: prints a message on module loading error we set MONO_DEBUG
21874         environment variable.
21875
21876 2004-05-05  Jackson Harper  <jackson@ximian.com>
21877
21878         * appdomain.c: Handle PublicKeyToken=null properly.
21879         
21880 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
21881
21882         * environment.c|h: Added icall ves_icall_System_Environment_
21883         GetOSVersionString to get the current OS version as a string.
21884         * icall.c: Registred icall.
21885
21886 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
21887
21888         * object.c: in mono_object_get_virtual_method(), take into account that
21889         non-virtual methods don't have a slot in the vtable. Check needed when
21890         the object is a proxy.
21891
21892 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
21893
21894         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
21895         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
21896
21897         * object.c (mono_class_compute_gc_descriptor): Fix warning.
21898
21899         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
21900         passed when a valuetype is expected.
21901
21902         * object.c (mono_unhandled_exception): Only set the exit code if the
21903         exception happens in the main thread. Fixes thread5.exe.
21904
21905         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
21906         invalid names. Fixes #58047.
21907
21908 2004-05-03  Jackson Harper  <jackson@ximian.com>
21909
21910         * assembly.c: This line was committed accidently and is unneeded.
21911         
21912 2004-05-03  Jackson Harper  <jackson@ximian.com>
21913
21914         * icall.c: Add new icall for Assembly::LoadWithPartialName
21915         * assembly.c/.h: new function that probes the GAC to load partial
21916         assembly names by Paolo Molaro.
21917         
21918 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21919
21920         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
21921         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
21922         (type_get_fully_qualified_name): Added PublicKeyToken when building a
21923         full type name.
21924
21925 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21926
21927         * appdomain.c: fixed check for 'neutral' culture and removed warning.
21928         * reflection.c: fix bug when parsing a full type name and Version is not
21929         the last thing in the string.
21930
21931 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
21932
21933         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
21934         crashes when it is freed.
21935
21936 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21937
21938         * assembly.c: print the compat warning to stderr.
21939
21940 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
21941
21942         * assembly.c (mono_assembly_load_references): Add a compatibility
21943         hack to run old applications that might be still referencing the
21944         3300-based assemblies, only do this for System.xxx.
21945
21946 2004-05-01  Jackson Harper  <jackson@ximian.com>
21947
21948         * appdomain.c: If the culture is neutral we set it to "".
21949         
21950 2004-04-29  Jackson Harper  <jackson@ximian.com>
21951
21952         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
21953
21954 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
21955  
21956         * string-icalls.c: added low overhead function for copying chars
21957         * icall.c: added needed icall for the above function
21958  
21959 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21960
21961         * icall.c: fix return value of get_global_assembly_cache.  Implemented
21962         Environment.GetLogicalDrives.
21963
21964 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
21965
21966         * rand.c: try and talk to egd or prngd
21967         for random bytes if opening devices fail.
21968
21969 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
21970
21971         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
21972         alignment for the type using the native alignment of its members 
21973         instead of using klass->min_align.
21974
21975         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
21976
21977 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21978
21979         * file-io.c:
21980         * socket-io.c: added check for sys/aio.h.
21981
21982 2004-04-28  Dick Porter  <dick@ximian.com>
21983
21984         * threads.c: Don't abort a thread thats already aborting, when
21985         terminating everything.
21986
21987 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21988
21989         * icall.c: added 2 new async calls for Socket.
21990
21991         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
21992         IO on *nix systems.
21993
21994         * threadpool.c: removed unused variable.
21995
21996 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
21997
21998         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
21999
22000 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
22001
22002         * locales.c: put back string_invariant_tolower () and
22003         string_invariant_toupper ().
22004
22005 2004-04-26 David Waite <mass@akuma.org>
22006
22007         * file-io.h:
22008         * socket-io.h:
22009         * threads.h:
22010         * unicode.h: remove comma from end of enumeration declarations
22011
22012 2004-04-26 David Waite <mass@akuma.org>
22013
22014         * debug-mono-symfile.h:
22015         * decimal.c:
22016         * mono_debug.h:
22017         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
22018
22019
22020 2004-04-26  Jackson Harper  <jackson@ximian.com>
22021
22022         * appdomain.c: Increment version number.
22023         
22024 2004-04-26  Jackson Harper  <jackson@ximian.com>
22025
22026         * appdomain.c: Set assembly references public token value when
22027         PublicKeyToken is specified, not the hash_value. Free public token
22028         values when free assembly name data. Previously the public key
22029         token was hex decoded, however we are using hex encoded public key
22030         tokens, so this is not neccasary.
22031         * assembly.c: Lookup assemblies in the gac if their public token
22032         value is set. Add function to allow enabling user gac
22033         lookups. Specify whether or not the assembly was loaded from the
22034         GAC. Compare full assembly names when checking the cache for
22035         assemblies (Temporarily disabled see comment in code). Remove
22036         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
22037         specifies trace-loader they get extra info to stdout on the
22038         loading of assemblies.
22039         * image.h: Add a field for an assembly references public token
22040         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
22041         whether an assembly has been loaded from the GAC.
22042         * image.c: Remove a corlib -> mscorlib name mapping.
22043         * loader.h: Add function to enable/disable the user gac.
22044         * mono-config.c: Check if the usergac is enabled in the config
22045         file.
22046         * icall.c: New icall to determine whether or not an assembly has
22047         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
22048         * tabldefs.h: Add constant for assemblyref flag that specifies a
22049         full public key is used instead of a public token.
22050         * reflection.c: Remove mscorlib -> corlib mappings. Set
22051         PublicTokenValue instead of hash value. This value is a hex
22052         string so it does not need to be expanded.
22053
22054 2004-04-26  Martin Baulig  <martin@ximian.com>
22055
22056         * mono-debug-debugger.c (mono_debugger_initialize): Set
22057         `mono_debugger_initialized' before calling mono_debug_lock().
22058
22059 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
22060
22061         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
22062           InternalToUpper/InternalToLower.
22063         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
22064           removed invariant culture shortcut.  This is now done in managed code.
22065         * locales.c: (string_invariant_toupper/tolower) removed.
22066
22067 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22068
22069         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
22070         Added Poll internal call.
22071
22072         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
22073         call for Poll. Select was too heavy for polling a single socket.
22074
22075         * threadpool.[ch]: added mono_threadpool_cleanup.
22076         * threads.c: use it. Don't use Thread_Abort on windows.
22077
22078 2004-04-23  Martin Baulig  <martin@ximian.com>
22079
22080         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
22081
22082 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
22083
22084         * icall.c: Registred new icalls for key pair protection and added an
22085         icall for Environment.GetFolderPath on Windows.
22086         * security.c|h: Added new icalls for key pair protection.
22087
22088 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22089
22090         * socket-io.c: don't display the non-supported family warning for known
22091         families. Now this is not displayed on windows when checking support
22092         for IPv4/IPv6.
22093
22094 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22095
22096         * class.c: don't display the layout warning for static fields.
22097
22098 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
22099
22100         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
22101         * locales.c, locales.h: Added new icalls for culture-specific
22102         Char.ToLower and Char.ToUpper.
22103
22104 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22105
22106         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
22107         by David Waite.
22108
22109 2004-04-20  Martin Baulig  <martin@ximian.com>
22110
22111         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
22112         of the type name before passing it to mono_reflection_type_from_name().
22113
22114 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
22115
22116         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
22117         encodings here. Fixes #56965.
22118
22119 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
22120
22121         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
22122         fix test on strstr result not that I can see anything that
22123         relies on the result.
22124
22125 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
22126
22127         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
22128         Fixes #57081.
22129
22130         * marshal.c (mono_marshal_get_string_encoding): New helper function.
22131
22132         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
22133         function to determine which marshalling to use for strings. Fixes
22134         #56965.
22135
22136         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
22137
22138         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
22139
22140 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
22141
22142         * icall.c: #include mono-config.h
22143
22144 2004-04-15  Jackson Harper  <jackson@ximian.com>
22145
22146         * culture-info-tables.h: Fix date formats for en-US culture.
22147         
22148 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
22149
22150         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
22151         ThreadPool.SetMinThreads.
22152         * threadpool.c: Implemented ThreadPool.GetMinThreads and
22153         ThreadPool.SetMinThreads.
22154
22155 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
22156
22157         * mono-config.c: also load the .config file in the directory
22158         where the assembly was found.
22159
22160 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
22161
22162         * assembly.c: load per-assembly config files.
22163         * icall.c: decrapified code to get the config dir and moved to
22164         mono-config.c.
22165         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
22166         per-assembly config files. When doing a dll map lookup give precedence
22167         to the per-assembly data.
22168
22169 2004-04-14  Martin Baulig  <martin@ximian.com>
22170
22171         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
22172         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
22173         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
22174
22175         * mono-debugger-debugger.c: While the debugger is locked, remember
22176         whether the symbol tables have changes and send one single
22177         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
22178
22179 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
22180
22181         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
22182
22183         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
22184         function.
22185
22186         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
22187         account when marshalling string arrays. Fixes #56965.
22188
22189 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
22190
22191         * icall.c: Add new icalls mapping for security.
22192         * security.c|h: Add internal calls for WindowsIdentity,
22193         WindowsImpersonationContext and WindowsPrincipal.
22194
22195 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
22196
22197         * class.c: Added comment to ensure the System.MonoDummy class
22198         is removed when no longer necessary
22199
22200 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
22201
22202         * appdomain.c: Pass arguments to the bootstraping exceptions to
22203         minimize JITed methods at boot
22204
22205         * metadata.c (mono_exception_from_name_two_strings): Allow for the
22206         second string to be null.
22207
22208         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
22209         Change the protocol to minimize the JIT methods at startup.  Now
22210         it Returns the internal codepage, if the value of "int_code_page"
22211         is 1 at entry, and we can not compute a suitable code page
22212         number, returns the code page as a string.
22213
22214 2004-04-13  Jackson Harper  <jackson@ximian.com>
22215
22216         * culture-info-tables.h: Fix number of decimal digits for all
22217         english locales.
22218
22219 2004-04-13  Jackson Harper  <jackson@ximian.com>
22220
22221         * icall.c: Clairfy out of sync error message. It is not always
22222         your corlib that is out of sync.
22223
22224 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
22225
22226         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
22227         properties when only the set accessor is overriden. Fixes #55874.
22228
22229 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
22230
22231         * assembly.c (mono_assembly_load_references): Make this thread safe.
22232         Fixes #56327.
22233
22234 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
22235
22236         * monosn.c: Add missing initialization calls.
22237
22238 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
22239
22240         * locales.c:
22241         ves_icall_System_Globalization_CultureInfo_construct_number_format
22242         Fix g_assert so it compiles on fussier compilers re int/ptr
22243         mismatch
22244
22245 2004-04-08  Dick Porter  <dick@ximian.com>
22246
22247         * socket-io.h:
22248         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
22249         53992.  Also rearrange the code so that the internal calls return
22250         an error value and exceptions are thrown from managed code.
22251
22252         * icall.c: Add type info to the socket icalls.
22253
22254 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22255
22256         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
22257         owes me a beer.
22258
22259 2004-04-07  Martin Baulig  <martin@ximian.com>
22260
22261         * class.c (mono_class_from_generic_parameter): Don't default
22262         `klass->parent' to `mono_defaults.object_type'.
22263
22264 2004-04-07  Martin Baulig  <martin@ximian.com>
22265
22266         * reflection.c (mono_reflection_initialize_generic_parameter): Set
22267         `param->pklass->reflection_info'.       
22268
22269 2004-04-07  Jackson Harper  <jackson@ximian.com>
22270
22271         * culture-info-tables.h: Fix date separator symbol.
22272         
22273 2004-04-07  Martin Baulig  <martin@ximian.com>
22274
22275         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
22276         from System.Type to System.MonoType.
22277
22278 2004-04-07  Martin Baulig  <martin@ximian.com>
22279
22280         * reflection.h
22281         (MonoReflectionGenericParam): Added `has_reference_type' and
22282         `has_value_type' fields.
22283
22284         * reflection.c (mono_image_get_generic_param_info): Encode the
22285         correct flags if we have the `class' or `struct' constraint.
22286
22287 2004-04-07  Martin Baulig  <martin@ximian.com>
22288
22289         * reflection.h
22290         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
22291
22292 2004-04-07  Jackson Harper  <jackson@ximian.com>
22293
22294         * appdomain.c: Revert extra patches, just wanted to bump the
22295         version number.
22296         
22297 2004-04-07  Jackson Harper  <jackson@ximian.com>
22298
22299         * Makefile.am: Add culture-info private headers.
22300         * icall.c: Add new icalls for contructing locales.
22301         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
22302         * locales.h: Declare new culture info construction methods.
22303         * object.h: Add new fields used to avoid the CultureMap to
22304         MonoCultureInfo.
22305         * culture-info.h: Definition of structs used in the culture info
22306         tables.
22307         * culture-info-tables.h: Autogenerated tables that contain culture
22308         info data. This file was generated with the locale-builder tool.
22309         * appdomain.c: Incement corlib version number.
22310         
22311 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
22312
22313         * appdomain.c: (mono_runtime_init) move mono_thread_init
22314         to before mono_object_new calls so critical sections
22315         are initialized before use.
22316
22317 2004-04-07  Martin Baulig  <martin@ximian.com>
22318
22319         * icall.c
22320         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
22321         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
22322         (ves_icall_MonoGenericParam_initialize): Removed.
22323         (monogenericparam_icalls): Removed.
22324         (generictypeparambuilder_icalls): Added new table for
22325         System.Reflection.Emit.GenericTypeParameterBuilder.
22326
22327         * reflection.c
22328         (mono_reflection_define_generic_parameter): Removed.
22329         (mono_reflection_initialize_generic_parameter): This is now called
22330         from GenericTypeParameterBuilder's .ctor.
22331
22332 2004-04-06  Martin Baulig  <martin@ximian.com>
22333
22334         * class.c (mono_class_init): Don't inflate nested classes in a
22335         generic instance.
22336         (mono_type_get_name_recurse): Include the generic arguments for
22337         generic instances and generic type declarations.
22338         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
22339         (_mono_class_get_instantiation_name): Removed.
22340         (mono_class_create_generic): Always use `gklass->name' as our name.
22341
22342         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
22343
22344         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
22345         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
22346         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
22347         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
22348         closed generic methods here.
22349
22350         * reflection.c
22351         (mono_reflection_generic_inst_get_nested_types): Removed.
22352         (inflate_mono_method): Copy the generic parameters from the
22353         MonoMethodHeader into out MonoGenericMethod.
22354
22355 2004-04-06  Martin Baulig  <martin@ximian.com>
22356
22357         * row-indexes.h
22358         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
22359
22360         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
22361
22362         * reflection.c (build_compressed_metadata): If we have any entries
22363         in the GenericParam, MethodSpec or GenericParamConstraint tables,
22364         set the header version to 1.1.
22365
22366 2004-04-06  Martin Baulig  <martin@ximian.com>
22367
22368         * class.c (mono_class_init): If we're a generic instance,
22369         initialize our nested classes, too.
22370         (_mono_class_get_instantiation_name): Deal with the new `!%d'
22371         suffix. 
22372
22373 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22374
22375         * process.c: quote the argument passed to the shell on windows.
22376
22377 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
22378
22379         * threads.c (mono_alloc_special_static_data): Allow this to be
22380         called during startup.
22381
22382 2004-04-02  Martin Baulig  <martin@ximian.com>
22383
22384         * icall.c
22385         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
22386
22387 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
22388
22389         * icall.c: Fix build.
22390
22391 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
22392
22393         * Makefile.am: Added security.c|h.
22394         * icall.c: Added icall for get_UserName;
22395         * security.c: New file for security related icalls. Added function
22396         get_UserName for System.Environment (fix #56144).
22397         * security.h: New. Header file for security.c
22398
22399 2004-04-02  Dick Porter  <dick@ximian.com>
22400
22401         * icall.c: Deleted the icalls that were obsoleted some time ago
22402         by the ICU string code, and which were mixed into the icall
22403         rearranging.  Fixes bug 55969.
22404
22405         * string-icalls.h: 
22406         * string-icalls.c: Deleted the code that those icalls reference.
22407
22408 2004-04-01  Martin Baulig  <martin@ximian.com>
22409
22410         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
22411
22412         * class.c (mono_class_from_generic_parameter): Don't set 
22413         TYPE_ATTRIBUTE_INTERFACE.
22414         (my_mono_class_from_generic_parameter): Likewise.
22415
22416 2004-04-01  Martin Baulig  <martin@ximian.com>
22417
22418         * loader.c (find_method): Added an optional `MonoClass *ic'
22419         argument to search in a specific interface.
22420         (mono_get_method_constrained): New public function.
22421
22422 2004-04-01  Martin Baulig  <martin@ximian.com>
22423
22424         * reflection.c (mono_image_get_generic_field_token): Use the
22425         `handleref' cache here.
22426
22427 2004-04-01  Martin Baulig  <martin@ximian.com>
22428
22429         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
22430
22431         * reflection.c (create_generic_typespec): Use the `typespec' hash
22432         here, not the `typeref' one.    
22433
22434 2004-04-01  Martin Baulig  <martin@ximian.com>
22435
22436         * class.c (mono_class_inflate_generic_type): Moved the
22437         functionality into a new static inflate_generic_type() which
22438         returns NULL if it didn't do anything.  Only increment the
22439         `mono_stats.inflated_type_count' if we actually inflated
22440         something.
22441         (mono_class_get_full): Check the classes type to see whether we
22442         need to inflate it; also inflate MONO_TYPE_(M)VAR.
22443
22444 2004-04-01  Jackson Harper  <jackson@ximian.com>
22445
22446         * reflection.c: Set culture for assembly references.
22447         
22448 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
22449
22450         * reflection.[ch], icall.[ch], Fix support for pinning variables.
22451
22452 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22453
22454         * assembly.c:
22455         (do_mono_assembly_open): the critical section also covers
22456         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
22457
22458 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22459
22460         * threads.c:
22461         (mono_manage_threads): abort the background threads when finishing.
22462         Fixes bug #47232.
22463
22464 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22465
22466         * gc.c: only close the done_event handle if there was no timeout.
22467         C-ified comments.
22468
22469 2004-03-30  Martin Baulig  <martin@ximian.com>
22470
22471         * icall.c (icall_entries): It's called "System.Activator", not
22472         "System.Activation".    
22473
22474 2004-03-30  Martin Baulig  <martin@ximian.com>
22475
22476         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
22477         (mono_class_create_from_typespec): Likewise.
22478
22479 2004-03-30  Martin Baulig  <martin@ximian.com>
22480
22481         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
22482         `has_ctor_constraint' and `initialized'.
22483
22484 2004-03-30  Martin Baulig  <martin@ximian.com>
22485
22486         * reflection.c (encode_new_constraint): New static function to add
22487         the constructor constraint attribute to a type parameter.
22488         (encode_constraints): Call encode_new_constraint() if necessary.
22489
22490         * reflection.h
22491         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
22492
22493         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
22494         
22495 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
22496
22497         * reflection.c, icall.c: add support for pinning variables. 
22498
22499 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
22500
22501         * marshal.c (mono_marshal_get_managed_wrapper):
22502         init bool local with zero rather than null.
22503
22504 2004-03-29  Martin Baulig  <martin@ximian.com>
22505
22506         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
22507         the "official" behavior here.
22508         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
22509
22510 2004-03-29  Martin Baulig  <martin@ximian.com>
22511
22512         * icall.c: Reflect latest API changes.
22513
22514 2004-03-29  Martin Baulig  <martin@ximian.com>
22515
22516         * loader.c (mono_get_method_from_token): Also call
22517         mono_metadata_load_generic_params () for abstract and interface
22518         methods; replace the type arguments in the method signature with
22519         the ones which are loaded from the metadata.
22520
22521 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
22522
22523         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
22524         of the lock is not the current thread. MS.NET don't do it, in spite of
22525         what the documentation says. See bug #56157.
22526
22527 2004-03-28  Martin Baulig  <martin@ximian.com>
22528
22529         * class.c (mono_class_init): Don't call init_properties() and
22530         init_events() for generic instances; set `prop->parent' when
22531         inflating properties.
22532
22533         * reflection.c (mono_generic_inst_get_object): Call
22534         `mono_class_init (ginst->klass)'.
22535         (mono_type_get_object): Only create a MonoGenericInst if your
22536         generic type is a TypeBuilder.
22537         (do_mono_reflection_bind_generic_parameters): Only set
22538         `ginst->is_dynamic' if our generic type is a TypeBuilder.
22539
22540 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
22541
22542         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
22543         Fixes #56091.
22544
22545 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22546
22547         * icall.c: added Kill_internal icall.
22548         * process.[ch]: added Kill_internal icall.
22549
22550 2004-03-25  Martin Baulig  <martin@ximian.com>
22551
22552         * class.h (MonoStats): Added `generic_instance_count',
22553         `inflated_method_count', `inflated_type_count' and
22554         `generics_metadata_size'.       
22555
22556 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22557
22558         * reflection.c: no warnings now.
22559
22560 2004-03-25  Martin Baulig  <martin@ximian.com>
22561
22562         * class.c (mono_class_get_full): New public function; does a
22563         mono_class_get(), but also takes a `MonoGenericContext *'.
22564
22565         * loader.c (mono_field_from_memberref): Renamed to
22566         `field_from_memberref', made static and added `MonoGenericContext *'
22567         argument.
22568         (mono_field_from_token): Added `MonoGenericInst *' argument.
22569         (method_from_memberef): Likewise.
22570         (mono_get_method_from_token): Likewise.
22571         (mono_get_method_full): New public function; does a
22572         mono_get_method(), but also takes a `MonoGenericContext *'.
22573
22574         * verify.c (mono_method_verify): Get the method's generic context
22575         and pass it to mono_field_from_token(), mono_get_method_full() and
22576         mono_class_get_full().
22577
22578 2004-03-25  Martin Baulig  <martin@ximian.com>
22579
22580         * class.c (mono_class_inflate_generic_type): Take a
22581         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
22582         `MonoGenericMethod *'.
22583
22584 2004-03-25  Martin Baulig  <martin@ximian.com>
22585
22586         * loader.h (MonoMethodInflated): Store the MonoGenericContext
22587         instead of the MonoGenericMethod here.
22588
22589 2004-03-25  Martin Baulig  <martin@ximian.com>
22590
22591         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
22592         each time we create a new MonoGenericInst, we also create a new
22593         context which points back to us.
22594
22595         * class.c (inflate_method): Use `ginst->context' instead of
22596         creating a new context.
22597
22598         * loader.c (method_from_memberref): Use
22599         `klass->generic_inst->context' instead of creating a new context.
22600
22601 2004-03-25  Martin Baulig  <martin@ximian.com>
22602
22603         * class.h (MonoGenericContext): New struct.
22604         (MonoGenericMethod): Removed `generic_inst'.
22605
22606         * class.c (mono_class_inflate_generic_method): Take a
22607         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
22608
22609 2004-03-25  Martin Baulig  <martin@ximian.com>
22610
22611         * loader.h (MonoMethodInflated): New typedef.
22612
22613         * metadata.h (MonoMethodSignature): Removed `gen_method', make
22614         `generic_param_count' consume just 30 bits, added `is_inflated'
22615         and `has_type_parameters' flags (one bit each).
22616
22617         * class.c (mono_class_inflate_generic_method): Create a
22618         MonoMethodInflated instead of a MonoMethodNormal and set
22619         `is_inflated' in the method signature.
22620
22621         * class.h (MonoGenericMethod): Removed `generic_method'.
22622
22623 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
22624
22625         * image.c: Make sure the name of a MonoImage is always an absolute path.
22626           This fixes bug #54415.
22627
22628 2004-03-24  Martin Baulig  <martin@ximian.com>
22629
22630         * class.c (mono_class_setup_vtable): If we're a generic instance,
22631         use our generic type's vtable size.
22632
22633 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
22634
22635         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
22636         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
22637         problems.
22638
22639 2004-03-23  Martin Baulig  <martin@ximian.com>
22640
22641         * class.h (MonoDynamicGenericInst): Added `int count_events' and
22642         `MonoEvent *events'.
22643
22644         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
22645         (typebuilder_icalls): Added "get_event_info"; calls
22646         mono_reflection_event_builder_get_event_info(). 
22647
22648         * reflection.c (mono_reflection_generic_inst_initialize): Added
22649         `MonoArray *events'.
22650         (mono_reflection_event_builder_get_event_info): New function.
22651
22652 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
22653
22654         * object.h: add mono_type_initialization_init
22655
22656         * object.c (mono_runtime_class_init): 
22657         implement class constructor synchronization rules
22658         to cope with threading issues.  
22659         add mono_type_initialization_init
22660
22661         * appdomain.c (mono_runtime_init): call 
22662         mono_type_initialization_init
22663
22664         * class.h: removing initializing field from MonoVTable
22665
22666 2004-03-23  Martin Baulig  <martin@ximian.com>
22667
22668         * class.c (my_mono_class_from_generic_parameter): Use
22669         `param->name' if it's not NULL. 
22670
22671 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
22672
22673         * class.c: do not insert non-virtual methods in the vtable.
22674         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
22675         that means the method is non-virtual. This never would have
22676         happened before.
22677
22678 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
22679
22680         * profiler.c: Added lock for accessing coverage_hash.
22681
22682 2004-03-22  Martin Baulig  <martin@ximian.com>
22683
22684         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
22685         `method->method->signature->generic_param_count != 0' to make it
22686         work for interface methods.
22687
22688 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22689
22690         * process.c: quote the string passed to the shell using g_shell_quote.
22691
22692 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22693
22694         * threads.c:
22695         (mono_threads_manage): don't remove the finalizer thread and self
22696         from the threads hash table so that mono_thread_manage can be called
22697         more than once.
22698
22699 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22700
22701         * process.c: quote the arguments when UseShellExecute is true. Fixes
22702         bug #55790.
22703
22704 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22705
22706         * threads.c: set mono_thread_detach as a cleanup routine for every
22707         thread. This way it's always executed upon thread termination, either
22708         aborted or finished normally. No more xsp hangs!
22709
22710 2004-03-17  Martin Baulig  <martin@ximian.com>
22711
22712         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
22713         `int count_nested' and a `MonoType **nested'.
22714
22715         * reflection.c (mono_reflection_bind_generic_parameters): Moved
22716         most of the functionality into a new static
22717         do_mono_reflection_bind_generic_parameters() and don't take a
22718         `MonoType *nested_in' argument any more.  Don't compute nested
22719         types here.
22720         (mono_reflection_generic_inst_get_nested_types): New public method
22721         to get nested types.
22722
22723         * class.c (mono_class_create_generic): Set `klass->nested_in' if
22724         we're a nested class.
22725
22726         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
22727         mono_reflection_generic_inst_get_nested_types() to compute the
22728         nested types.
22729
22730 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22731
22732         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
22733         descriptive error message under windows.
22734         
22735 2004-03-17  Martin Baulig  <martin@ximian.com>
22736
22737         * class.c (dup_type): Added `const MonoType *original' argument;
22738         copy the attrs from the original type.
22739
22740 2004-03-17  Martin Baulig  <martin@ximian.com>
22741
22742         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
22743         `m->generic_inst_cache' here.
22744
22745 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22746
22747         * exception.h exception.c: Add stack_overflow_exception.
22748
22749 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22750
22751         * threadpool.c:
22752         (overlapped_callback): call SetEvent *after* invoking the callback.
22753         No need to call CloseHandle.
22754
22755 2004-03-16  Martin Baulig  <martin@ximian.com>
22756
22757         * reflection.c (mono_image_get_fieldref_token): Take a
22758         `MonoReflectionField *' instead of a `MonoClassField *' and a
22759         `MonoClass *'; store the `MonoReflectionField *' in the hash.
22760
22761 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22762
22763         * appdomain.c: don't add the culture to the filename we're looking for
22764         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
22765
22766 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22767
22768         * locales.c: don't ignore symbols when doing case insensitive compares.
22769         Thanks Dick! Fixes bug #54046.
22770
22771         * threads.c: surround 'threads' usage with enter/leave in
22772         mono_thread_manage.
22773
22774 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
22775
22776         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
22777         implicitly marshalled as [Out]. Fixes #55450.
22778
22779         (mono_marshal_get_runtime_invoke): Zero out the result if there is
22780         an exception.
22781
22782 2004-03-16  Martin Baulig  <martin@ximian.com>
22783
22784         * class.c (mono_class_from_generic_parameter): Use the actual
22785         parameter name. 
22786
22787 2004-03-16  Martin Baulig  <martin@ximian.com>
22788
22789         * reflection.c (type_get_signature_size): New static function.
22790         Compues the size of the type in a method signature.
22791         (method_get_signature_size): New static function; calls
22792         type_get_signature_size() to compute the actual size of the
22793         method's signature.
22794         (method_encode_signature): Use method_get_signature_size() to get
22795         the signature's size rather than using `nparams * 10'.
22796
22797 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22798
22799         * file-io.h: define here WapiOverlapped on windows. I don't want the
22800         regular OVERLAPPED one.
22801
22802         * file-io.c:
22803         * threadpool.c: somehow, BindIoCompletionCallback is not found.
22804         Disabling AIO on windows.
22805
22806 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22807
22808         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
22809         bug #55385.
22810
22811 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22812
22813         * appdomain.c: upgraded corlib version.
22814
22815         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
22816         and BeginWrite. Allow opening files for asynchrnous operations.
22817
22818         * file-io.h: new struct that maps FileStreamAsyncResult.
22819         * icall.c: added new icalls.
22820         * process.[ch]: support setting child process environment variables
22821         and use the SHELL or COMSPEC when UseShellExecute is true.
22822
22823         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
22824         callback for async. IO is here and also BindHandle.
22825
22826         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
22827         from here.
22828
22829 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
22830
22831         * reflection.c (create_custom_attr): Allow len == 0.
22832
22833         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
22834         computation on big-endian machines.
22835
22836 2004-03-13  Martin Baulig  <martin@ximian.com>
22837
22838         * class.h (MonoGenericInst): Added `int count_ifaces'.
22839
22840         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
22841         `ginst->count_ifaces' instead `klass->interface_count' since we
22842         may get called before the vtable is created.
22843
22844         * loader.c (mono_method_get_param_names): If we're a generic
22845         instance, return and don't initialize the class.
22846
22847         * reflection.c (mono_reflection_setup_generic_class): Don't call
22848         ensure_runtime_vtable().
22849         (mono_reflection_bind_generic_parameters): Set
22850         `ginst->count_ifaces'.
22851
22852 2004-03-11  Jackson Harper <jackson@ximian.com>
22853
22854         * icall.c:
22855         * unicode.c:
22856         * unicode.h: Remove unused System.Char icalls.
22857         
22858 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
22859
22860         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
22861         code when we P/Invoke the first library in Windows.Forms, instead
22862         of when we first open the assembly.
22863
22864         * assembly.c: Drop the lookup from here.
22865
22866 2004-03-10  Martin Baulig  <martin@ximian.com>
22867
22868         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
22869         class for properties, fields and events.  Finally fixes #54945.
22870
22871 2004-03-10  Martin Baulig  <martin@ximian.com>
22872
22873         * metadata.c (mono_metadata_class_equal): New static function;
22874         checks whether two generic instances or two generic parameters are
22875         equal.
22876         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
22877         compare classes.        
22878
22879 2004-03-10  Martin Baulig  <martin@ximian.com>
22880
22881         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
22882
22883         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
22884         argument and write it into the `reflection_info' field.
22885
22886         * icall.c
22887         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
22888         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
22889
22890 2004-03-09  Jackson Harper  <jackson@ximian.com>
22891
22892         * char-conversions.h: use 8 bits for numeric data its all we need
22893         * icall.c: numeric data is only 8 bits now.
22894
22895 2004-03-09  Martin Baulig  <martin@ximian.com>
22896
22897         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
22898
22899         * class.c (init_properties, init_events): Initialize the new
22900         `parent' field.
22901
22902         * reflection.c (typebuilder_setup_properties): Likewise.
22903         (typebuilder_setup_events): Likewise.
22904
22905         * reflection.h (MonoEventInfo): Replaced `parent with
22906         `declaring_type' and `reflected_type'.
22907
22908         * icall.c (ves_icall_get_property_info): Distinguish between
22909         declaring and reflected type.
22910         (ves_icall_get_event_info): Likewise.
22911
22912 2004-03-09  Martin Baulig  <martin@ximian.com>
22913
22914         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
22915         (ves_icall_Type_GetField): Correctly set field->klass.
22916
22917 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
22918
22919         * loader.h: Fix warning.
22920
22921 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
22922
22923         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
22924         library routine if present.  Notice that it will still continue
22925         executing even if its missing, for those working on the Gtk#
22926         edition of Windows.Forms.
22927
22928         * assembly.c (do_mono_assembly_open): If loading the
22929         System.Windows.Forms call mono_loader_wini_init.
22930
22931 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
22932
22933         * class.h: Added MonoRemoteClass struct.
22934         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
22935         function for MonoStrings.
22936         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
22937         Added internal call for getting the proxy type.
22938         * marshal.c: Get the type of transparent proxies from its remote_class.
22939         Added methods that generate the IL for type checks and casts:
22940         mono_marshal_get_isinst, mono_marshal_get_castclass, 
22941         mono_marshal_get_proxy_cancast.
22942         * marshal.h: Declaration of the previous new methods.
22943         * object.c: Added new moethods for creating and updating MonoRemoteClass
22944         instances: mono_remote_class, mono_upgrade_remote_class, 
22945         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
22946         * verify.c: FIx transparent_proxy_fields layout.
22947         * appdomain.c: Bump corlib version.
22948
22949 2004-03-04  Jackson Harper  <jackson@ximian.com>
22950
22951         * icall.c: Add icall to access char conversion tables.
22952         * char-conversions.h: Character conversion tables.
22953         * Makefile.am: Add char-conversions.h private header file.
22954         
22955 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
22956
22957         * appdomain.c (unload_thread_main): Increase unloading timeout to
22958         10 sec as a temporary workaround for Nant problems.
22959
22960 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
22961
22962         * gc.c: Add checks for GC_enable and GC_disable.
22963
22964         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
22965         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
22966         (bug #54988).
22967         
22968 2004-02-27  Martin Baulig  <martin@ximian.com>
22969
22970         * reflection.c (mono_reflection_bind_generic_parameters): Take a
22971         `MonoReflectionType *' instead of a `MonoType *'.
22972
22973 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
22974
22975         * gc.c (run_finalize): Avoid finalizing the object representing the
22976         finalizer thread.
22977         (finalizer_thread): Fix warning.
22978
22979 2004-02-25  Martin Baulig  <martin@ximian.com>
22980
22981         * class.c (_mono_class_get_instantiation_name): Added `int offset'
22982         argument for nested types.
22983         (mono_class_create_generic): Added support for nested generictypes.
22984
22985         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
22986         `GList *nested'.
22987
22988         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
22989
22990         * reflection.c (method_encode_signature): Increase the minimum
22991         value of `size' from 10 to 11.
22992         (mono_reflection_bind_generic_parameters): Take `int type_argc'
22993         and `MonoType **types' arguments instead of the `MonoArray
22994         *types'; added `MonoType *nested_in'.  Recursively instantiate
22995         nested classes. 
22996
22997 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
22998
22999         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
23000         stack_overflow_ex members which are used by exception handling.
23001
23002         * appdomain.c (mono_runtime_init): Initialize the new members.
23003
23004         * gc.c (mono_gc_enable): New helper function.
23005         * gc.c (mono_gc_disable): New helper function.
23006
23007 2004-02-23  Martin Baulig  <martin@ximian.com>
23008
23009         * icall.c: I must have been really stupid - make it actually work
23010         this time ;-)
23011
23012 2004-02-23  Martin Baulig  <martin@ximian.com>
23013
23014         * loader.c (method_from_memberref): Only inflate the method if
23015         it's in another klass.
23016
23017 2004-02-23  Martin Baulig  <martin@ximian.com>
23018
23019         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
23020         (mono_class_init): If we're a generic instance and an interface,
23021         compute `class->interface_id'; also create `class->interfaces'
23022         here and inflate them.
23023
23024         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
23025         `ginst->is_open'.
23026         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
23027
23028         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
23029
23030 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
23031
23032         * reflection.c (method_encode_code): Improved the error message
23033         generated by the exception.
23034
23035 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23036
23037         * icall.c: Martin did not do what he said in the ChangeLog for
23038         2004-02-18, but put back the changes for properties and events.
23039         Commenting those changes out again and adding comment to bug #54518.
23040         
23041         * process.c: removed warning.
23042
23043 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
23044
23045         * marshal.c (emit_struct_conv): Print an error message instead of
23046         asserting when a type does not have the StructLayout attribute.
23047
23048 2004-02-20  Martin Baulig  <martin@ximian.com>
23049
23050         * reflection.c (mono_type_get_object): Also use the cache for
23051         generic instances.
23052         (mono_reflection_bind_generic_parameters): Always compute
23053         `ginst->ifaces'.        
23054
23055 2004-02-20  Martin Baulig  <martin@ximian.com>
23056
23057         * class.h (MonoGenericMethod): Removed `klass'.
23058
23059         * class.c (mono_class_inflate_generic_method): Added `MonoClass
23060         *klass' argument.
23061
23062 2004-02-20  Martin Baulig  <martin@ximian.com>
23063
23064         * reflection.c (method_encode_methodspec): Actually use the
23065         uninflated signature for the memberref.
23066
23067 2004-02-20  Martin Baulig  <martin@ximian.com>
23068
23069         * class.h (MonoGenericMethod): Removed `declaring'.
23070
23071         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
23072         is NULL, compute it here.
23073
23074 2004-02-20  Martin Baulig  <martin@ximian.com>
23075
23076         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
23077
23078         * metadata.c (mono_metadata_generic_inst_hash): New method.
23079         (mono_metadata_generic_inst_equal): New method.
23080
23081         * reflection.c (mono_reflection_bind_generic_parameters): Use the
23082         `klass->image->generic_inst_cache' cache to avoid creating
23083         duplicate MonoGenericInst's.
23084
23085         * class.c (mono_class_inflate_generic_type): Use the cache.
23086
23087 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
23088
23089         * object.c: fixed gc descriptor calculation for embedded valuetypes.
23090
23091 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23092
23093         * icall.c: added Socket.WSAIoctl icall.
23094
23095         * socket-io.[ch]: implemented
23096         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
23097
23098 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
23099
23100         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
23101
23102 2004-02-18  Urs C Muff  <umuff@quark.com>
23103
23104         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
23105         this work on PPC and other big-endian architectures.
23106
23107         * debug-mono-symfile.h: Prepended the names of all the `guint32'
23108         fields with an underscore to make sure they're only accessed by
23109         the read32() macro.
23110
23111 2004-02-18  Martin Baulig  <martin@ximian.com>
23112
23113         * icall.c: Put the klass->refclass changes back for methods and
23114         fields, but not for properties and events.  We're currently not
23115         distinguishing between DeclaringType and ReflectedType for
23116         properties and events, that's what caused the regressions.
23117
23118 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23119
23120         * object.c:
23121         (mono_async_result_new): the handle can be NULL.
23122
23123         * threadpool.c: Use an event instead of a semaphore, don't initialize
23124         it until needed. This saves quite a few semaphores from being created
23125         when using the threadpool.
23126
23127 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
23128
23129         * object.c (mono_string_is_interned_lookup): Fix interning of long
23130         strings. Fixes #54473.
23131
23132         * domain.c (ldstr_equal): Optimize if the two strings are equal.
23133
23134         * icall.c: Revert the klass->refclass changes since they introduce
23135         regressions (bug #54518).
23136
23137 2004-02-18  Martin Baulig  <martin@ximian.com>
23138
23139         * class.c (mono_class_init): If we're a generic instance and don't
23140         come from a TypeBuilder, inflate our members here.
23141         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
23142         (mono_class_create_generic): New public method.
23143         (mono_class_initialize_generic): Removed.
23144         (get_instantiation_name): Renamed to
23145         _mono_class_get_instantiation_name() and made it public.
23146
23147 2004-02-18  Martin Baulig  <martin@ximian.com>
23148
23149         * class.c (mono_class_inflate_generic_type): Clear the new
23150         instance's `nginst->klass' when inflating a generic instance.
23151         (mono_class_is_subclass_of): Added (basic) support for generic
23152         instances.
23153
23154 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
23155
23156         * appdomain.h, domain.c: use a MonoCodeManager instead of a
23157         MonoMempool to hold compiled native code.
23158
23159 2004-02-17  Martin Baulig  <martin@ximian.com>
23160
23161         * class.h (MonoDynamicGenericInst): Added `count_properties' and
23162         `properties'.
23163
23164         * reflection.c (mono_reflection_generic_inst_initialize): Added
23165         `MonoArray *properties' argument.
23166
23167         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
23168
23169 2004-02-17  Martin Baulig  <martin@ximian.com>
23170
23171         * icall.c (ves_icall_Type_GetFields): Renamed to
23172         ves_icall_Type_GetFields_internal() and added a
23173         `MonoReflectionType *rtype' argument; pass it to
23174         mono_field_get_object() to set the field's "reflected" type.
23175         (ves_icall_Type_GetConstructors): Likewise.
23176         (ves_icall_Type_GetEvents): Likewise.
23177         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
23178         argument; pass it to mono_method_get_object() to set the method's
23179         "reflected" type.       
23180
23181 2004-02-17  Martin Baulig  <martin@ximian.com>
23182
23183         * class.h (MonoDynamicGenericInst): New type.
23184         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
23185
23186         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
23187         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
23188         (ves_icall_MonoGenericInst_GetFields): New interncall.
23189
23190         * class.c (mono_class_from_generic): Don't call
23191         mono_class_initialize_generic() if this is a dynamic instance;
23192         ie. it's being created from a TypeBuilder.
23193         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
23194         `class->byval_arg.type'.
23195
23196         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
23197         to `inflate_method' and made static.
23198         (mono_reflection_inflate_field): Removed.
23199         (mono_reflection_generic_inst_initialize): New public method.
23200
23201         * reflection.h (MonoReflectionGenericInst): Removed `methods',
23202         `ctors' and `fields'; added `initialized'.
23203
23204 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
23205
23206         * debug-helpers.c (mono_method_full_name): Fix output for empty
23207         namespaces.
23208
23209 2004-02-12  Martin Baulig  <martin@ximian.com>
23210
23211         * class.h (MonoClassField): Added `MonoType *generic_type'.
23212
23213         * reflection.c (mono_image_get_fieldref_token): Added support for
23214         instantiated generic types.
23215         (field_encode_inflated_field): Removed.
23216         (mono_image_get_inflated_field_token): Removed.
23217         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
23218
23219         * reflection.h (MonoReflectionInflatedField): Removed.
23220
23221 2004-02-12  Martin Baulig  <martin@ximian.com>
23222
23223         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
23224         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
23225
23226         * reflection.c (mono_image_get_methodspec_token): Take a
23227         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
23228         (mono_image_create_token): Check whether we have a
23229         `method->signature->gen_method' and call
23230         mono_image_get_methodspec_token() if appropriate.
23231         (inflated_method_get_object): Removed.
23232         (mono_reflection_bind_generic_method_parameters): Return a
23233         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
23234         (mono_reflection_inflate_method_or_ctor): Likewise.
23235
23236         * reflection.h (MonoReflectionInflatedMethod): Removed.
23237
23238 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
23239
23240         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
23241         for custom valuetype marshalling.
23242
23243         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
23244
23245 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23246
23247         * icall.c: fixed WSAGetLastError_internal name.
23248
23249 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
23250
23251         * threads.c (mono_thread_attach): Allow this to be called multiple
23252         times for a thread.
23253         
23254         * threads.c (build_wait_tids): Do not wait for ourselves.
23255
23256         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
23257         appdomain list is empty.
23258
23259         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
23260         memory returned by mono_string_builder_to_utf16, since it points into
23261         managed memory. Thanks to Bernie Solomon for noticing this.
23262
23263         * icall.c: Add AppDomainSetup icalls.
23264
23265         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
23266
23267         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
23268         types.
23269
23270         * reflection.c (reflection_methodbuilder_to_mono_method): Save
23271         custom attributes to the method_aux struct. Also fix array indexes etc.
23272
23273         * loader.c (mono_method_get_param_names): Make dynamic case work again.
23274         
23275 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
23276
23277         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
23278         (both static and runtime) and reduce startup time.
23279
23280 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
23281
23282         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
23283         AsAny marshalling conversion instead of crashing.
23284
23285         * marshal.c: Fix warnings.
23286
23287 2004-02-09  Martin Baulig  <martin@ximian.com>
23288
23289         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
23290
23291         * reflection.h (MonoReflectionInflatedMethod): Removed the
23292         `declaring' field, it's now in the unmanaged MonoGenericMethod.
23293
23294         * reflection.c (method_encode_methodspec): Removed the `method'
23295         argument; we get it from `gmethod->declaring'.
23296         (inflated_method_get_object): Removed the `declaring' argument.
23297
23298 2004-02-09  Martin Baulig  <martin@ximian.com>
23299
23300         * class.h (MonoGenericMethod): New type.
23301         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
23302         `generic_method'.
23303
23304         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
23305         a `MonoGenericMethod *gen_method' one.
23306
23307         * class.c (mono_class_inflate_generic_type): Take an additional
23308         `MonoGenericMethod * argument.  This is only non-NULL if we're
23309         inflating types for a generic method.   
23310         (mono_class_inflate_generic_signature): Renamed to
23311         inflate_generic_signature() and made static; take a
23312         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
23313         (inflate_generic_header): Take a `MonoGenericMethod *' argument
23314         instead of a `MonoGenericInst *' one.
23315         (mono_class_inflate_generic_method): Likewise.
23316
23317         * reflection.c (encode_generic_method_sig): Take a
23318         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
23319         (method_encode_methodspec): Likewise.
23320         (inflated_method_get_object): Likewise. 
23321
23322         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
23323         field with a `MonoGenericMethod *gmethod' one.  
23324
23325 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
23326
23327         * class.h (mono_class_has_parent): add parens to expansion
23328         so you can ! this.
23329
23330 2004-02-08  Martin Baulig  <martin@ximian.com>
23331
23332         * image.h (MonoImage): Removed `generics_cache'.
23333
23334         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
23335         instead of a `MonoType *' argument; removed the `inflate_methods'
23336         argument.  Don't inflate methods here.
23337
23338         * loader.c (find_method): If it's a generic instance, call
23339         mono_class_init() on the `sclass->generic_inst->generic_type'.
23340
23341         * metadata.c (mono_type_size): Make this work on uninitialized
23342         generic instances; call it on the `ginst->generic_type's class.
23343
23344         * reflection.c (mono_reflection_bind_generic_parameters): Call
23345         mono_class_from_generic() to create the `ginst->klass'.
23346
23347 2004-02-08  Martin Baulig  <martin@ximian.com>
23348
23349         * class.h (MonoClass): Changed type of `generic_inst' from
23350         `MonoType *' to `MonoGenericInst *'.
23351
23352 2004-02-08  Martin Baulig  <martin@ximian.com>
23353
23354         * icall.c (ves_icall_Type_BindGenericParameters): Just call
23355         mono_type_get_object(), this is now creating a `MonoGenericInst'
23356         for MONO_TYPE_GENERICINST.
23357         (ves_icall_MonoGenericInst_GetParentType): Likewise.
23358         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
23359
23360         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
23361         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
23362         (inflated_method_get_object): Added `MonoClass *refclass' argument.
23363         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
23364         and reflected type.
23365
23366         * reflection.h (MonoReflectionInflatedMethod): Removed
23367         `declaring_type' and `reflected_type'.
23368
23369 2004-02-08  Martin Baulig  <martin@ximian.com>
23370
23371         * class.h (MonoGenericInst): Added `MonoType *parent' and
23372         `MonoType **ifaces'.
23373
23374         * reflection.h (MonoReflectionGenericInst): Removed `klass',
23375         `parent' and `interfaces'.
23376
23377         * reflection.c (mono_reflection_bind_generic_parameters): Take a
23378         `MonoType *' argument and return a `MonoType *'.
23379
23380         * icall.c
23381         (ves_icall_MonoGenericInst_GetParentType): New interncall.
23382         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
23383
23384 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
23385
23386         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
23387         valuetype marshalling.
23388
23389 2004-02-06  Martin Baulig  <martin@ximian.com>
23390
23391         * class.c
23392         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
23393         (my_mono_class_from_generic_parameter): Likewise.
23394
23395 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
23396
23397         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
23398         contents of the symbol files lazily.
23399
23400         * object.h (MonoThread): Add 'name' and 'name_len' fields.
23401
23402         * threads.h threads.c icall.c: New icalls for getting and setting the
23403         threads name.
23404
23405 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
23406
23407         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
23408         Raise an exception when the domain is not found.
23409
23410 2004-02-03  Martin Baulig  <martin@ximian.com>
23411
23412         * reflection.c (mono_image_get_methodspec_token): Use the
23413         uninflated signature; fixes gen-33.
23414
23415 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
23416
23417         * gc.c threads.c: Make the finalizer thread a normal managed thread so
23418         the finalizer code can use thread functionality.
23419
23420         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
23421         the finalizer thread.
23422
23423         * threads.c: Make some functions more robust.
23424
23425         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
23426
23427         * metadata.h: Add new marshalling conventions.
23428
23429         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
23430         stringbuilder marshalling. Fixes #53700.
23431
23432         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
23433
23434         * reflection.c (mono_image_get_type_info): Save declarative security
23435         info.
23436
23437         * reflection.c (mono_image_get_field_info): Handle uninitialized 
23438         unmanaged fields as well.
23439
23440         * appdomain.c: Bump corlib version.
23441
23442 2004-02-01  Martin Baulig  <martin@ximian.com>
23443
23444         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
23445         method type arguments.  
23446
23447 2004-01-30  Duncan Mak  <duncan@ximian.com>
23448
23449         * marshal.h: Add prototype for
23450         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
23451         and
23452         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
23453         fix the build.
23454
23455 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
23456
23457         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
23458         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
23459
23460 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
23461
23462         * marshal.c (mono_marshal_get_native_wrapper): Add support for
23463         custom marshalling of valuetypes.
23464
23465         * marshal.c: Fix some warnings.
23466
23467 2004-01-29  Martin Baulig  <martin@ximian.com>
23468
23469         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
23470         for generic method parameters.
23471
23472         * reflection.c (method_encode_methodspec): Write the uninflated
23473         signature into the methodspec table.
23474         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
23475         is always the uninflated method.
23476         (reflection_methodbuilder_to_mono_method): Copy the generic
23477         parameters from the MethodBuilder into `header->gen_params'.
23478
23479 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
23480
23481         * class.c (mono_class_from_generic_parameter): Fix warning.
23482
23483 2004-01-27  Martin Baulig  <martin@ximian.com>
23484
23485         * class.c (mono_class_from_generic_parameter): Don't create
23486         `klass->methods' here.  
23487
23488 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
23489
23490         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
23491         extension since it does not work with libraries named lib<FOO>.dll.so.
23492
23493 2004-01-25  Martin Baulig  <martin@ximian.com>
23494
23495         * class.c (mono_class_inflate_generic_type): Added support for
23496         MONO_TYPE_GENERICINST.
23497
23498         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
23499         inflate methods on open constructed types.      
23500
23501 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23502
23503         * object.c: fire ProcessExit event in the root AppDomain after running
23504         Main. Fixes bug #53299.
23505
23506 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
23507
23508         * socket-io.c: include the new socket-wrappers.h header.
23509         Use the wrappers instead of the unix socket functions to make the code
23510         more clear.
23511
23512 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
23513
23514         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
23515
23516         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
23517         Fixes #22532.
23518
23519 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
23520
23521         * reflection.c (mono_image_create_pefile): Handle the case when the
23522         entry point is not a MethodBuilder.
23523
23524         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
23525         field to ReflectionMethod since it is not allways a builder.
23526
23527         * reflection.c (type_get_fully_qualified_name): New helper function to
23528         return the fully qualified name of a type.
23529
23530         * reflection.c (encode_marshal_blob): Always emit the fully qualified
23531         type name for custom marshallers.
23532
23533         * reflection.c (mono_marshal_spec_from_builder): Ditto.
23534
23535         * class.c (mono_class_setup_vtable): If a parent class already 
23536         implements an interface, use the implementing methods from that class.
23537         Fixes #53148.
23538
23539 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23540
23541         * threadpool.c: just return instead of ExitThread to allow for thread
23542         clean up earlier.
23543
23544 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
23545
23546         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
23547         when closing resource modules.
23548
23549         * reflection.c (mono_image_create_pefile): Handle the case when the
23550         entry point is not a MethodBuilder.
23551
23552         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
23553         field to ReflectionMethod since it is not allways a builder.
23554
23555 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23556
23557         * marshal.c (mono_marshal_get_managed_wrapper): 
23558         mono_marshal_alloc takes native int so CONV_I
23559         the arg for 64bits.
23560
23561 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
23562
23563         * reflection.c (fixup_cattrs): New function to fixup the methoddef
23564         tokens in the cattr table. Fixes #53108.
23565
23566 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23567
23568         * loader.c: don't trim ".dll" before looking up in the config file.
23569         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
23570
23571 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
23572
23573         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
23574         Return the module which contains the resource as well.
23575         (ves_icall_System_Reflection_Module_Close): New icall.
23576
23577         * appdomain.c: Bump corlib version number.
23578
23579         * image.c (mono_image_addref): New public function.
23580
23581         * assembly.c: Call mono_image_addref.
23582
23583         * reflection.c (mono_module_get_object): Increase reference count of 
23584         the image.
23585
23586         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
23587         Fixes #22532.
23588
23589         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
23590         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
23591         proper exceptions on DllImport problems.
23592
23593 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
23594
23595         * class.c, metadata.c: eliminate CSIZE macro.
23596
23597 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
23598
23599         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
23600         * object.h: Added async_callback field in MonoAsyncResult.
23601         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
23602         * verify.c: Added async_callback in MonoAsyncResult layout.
23603
23604 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
23605
23606         * reflection.c (mono_reflection_get_custom_attrs): Add support
23607         for Modules.
23608
23609 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23610
23611         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
23612         marshalling.
23613         (mono_marshal_method_from_wrapper): Add null pointer check.
23614
23615 2004-01-16  Martin Baulig  <martin@ximian.com>
23616
23617         * debug-mono-symfile.h: Set version number to 36 and reflect
23618         latest symbol writer changes.
23619
23620 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23621
23622         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
23623         multi-dimensional arrays.
23624         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
23625         (mono_class_from_mono_type): Use bounded_array_class_get.
23626         
23627         * class.c (mono_bounded_array_class_get): New function which takes
23628         a 'bounded' bool argument to distinguish vectors from one dimensional
23629         arrays.
23630
23631         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
23632         bounded_array_class_get if the array has bounds.
23633
23634         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
23635         Search modules loaded using AssemblyBuilder:AddModule as well.
23636
23637 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23638
23639         * appdomain.c: increased corlib version.
23640         * filewatcher.c: removed g_print.
23641         * icall.c:
23642         (get_property_info): only allocate what is actually requested.
23643         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
23644
23645 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23646
23647         * Makefile.am: added filewatcher.[ch]
23648         * filewatcher.[ch]: FileSystemWatcher runtime support.
23649         * icall.c: added new FSW icalls.
23650
23651 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
23652
23653         * string-icalls.c: fix stringbuilder regression as suggested by
23654         Iain McCoy <iain@mccoy.id.au>.
23655
23656 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
23657
23658         * process.c (process_read_stringtable_block): Recognize '007f' as
23659         a language neutral stringtable block.
23660
23661 2004-01-12  Patrik Torstensson
23662
23663         * object.h (MonoStringBuilder) : Changed layout to support our
23664         new stringbuilder class.
23665         * marshal.c: Change marshalling to support the new layout of 
23666         string builder.
23667         * appdomain.c: increased version number because new layout of
23668         string builder.
23669
23670 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
23671
23672         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
23673         assembly name as an string instead of an AssemblyName, since it is
23674         easier to extract info from it.
23675
23676         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
23677         the culture subdirectories too. Fixes #52231.
23678
23679 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23680
23681         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
23682         It takes 2 new parameters with an optional name for the method to look
23683         for and case ignoring info.
23684
23685         * threadpool.c: removed unused variable.
23686
23687 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23688
23689         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
23690         It takes 2 new parameters with an optional name for the property to look
23691         for and case ignoring info.
23692         Fixes bug #52753.
23693
23694 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
23695
23696         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
23697         Fix #52451.
23698
23699 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23700
23701         * appdomain.c:
23702         * assembly.c: escape the uri before passing it to g_filename_from_uri.
23703         Fixes bug #52630.
23704
23705 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
23706
23707         * reflection.c: Add support for more than one unmanaged resource.
23708
23709         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
23710         in field->def_value, as done in all other cases.
23711
23712         * reflection.c (mono_reflection_get_custom_attrs): Add support for
23713         TypeBuilders.
23714
23715         * reflection.c (mono_reflection_create_runtime_class): Remove 
23716         errorneous assignment to klass->element_class, since it is already
23717         done in mono_reflection_setup_internal_class.
23718
23719 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23720
23721         * gc.c: added missing LeaveCriticalSection.
23722         * icall.c: indented a couple of lines.
23723         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
23724         if we call EndInvoke inside a callback. Fixes bug #52601.
23725
23726 2004-01-07  Martin Baulig  <martin@ximian.com>
23727
23728         * mono-debug-debugger.h
23729         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
23730
23731 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
23732
23733         * appdomain.c: Use messages in NotImplementedException.
23734
23735         * exception.c (mono_get_exception_not_implemented): Now this takes
23736         a message argument.
23737
23738         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
23739         exception instead of g_asserting an aborting when something is not
23740         implemented.
23741
23742         Add some inline docs.
23743
23744 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
23745
23746         * reflection.h: Update after changes to object layout.
23747
23748         * reflection.c: Implement saving of unmanaged aka win32 resources.
23749
23750         * appdomain.c: Bump version number.
23751
23752         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
23753         Handle missing domains gracefully.
23754
23755 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
23756
23757         * file-io.c : On Windows, there are much more invalid_path_chars.
23758
23759 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
23760
23761         * class.h, object.c: prepare for GetType () speedup.
23762
23763 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
23764
23765         * profiler.c: workaround for --profile null reference exception on
23766           cygwin. Patch by Patrik Torstensson.
23767
23768 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
23769
23770         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
23771         make work for unaligned access.
23772
23773 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
23774
23775         * class.c: small cleanup (class->fields [i] -> field).
23776         * image.c: check address of metadata is valid.
23777
23778 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
23779
23780         * assembly.h assembly.c (mono_assembly_loaded): New public function to
23781         search the list of loaded assemblies.
23782
23783         * reflection.c (mono_reflection_type_from_name): Use 
23784         mono_assembly_loaded instead of mono_image_loaded.
23785
23786         * reflection.c: Fix warnings.
23787
23788 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
23789
23790         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
23791         is dynamic. This is needed since an assembly can contain both dynamic and
23792         non-dynamic images.
23793
23794         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
23795         assembly->dynamic.
23796
23797         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
23798
23799         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
23800         to store modules loaded using AddModule.
23801
23802         * reflection.c (mono_image_fill_file_table): Generalize this so it works
23803         on Modules.
23804
23805         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
23806
23807         * reflection.c (mono_image_fill_export_table_from_module): New function to
23808         fill out the EXPORTEDTYPES table from a module.
23809
23810         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
23811         into a separate function. Also handle loaded non-dynamic modules.
23812
23813         * reflection.c (mono_image_basic_init): Fix memory allocation.
23814
23815         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23816
23817         * assembly.c (mono_assembly_load_references): Make this public.
23818
23819 2003-12-19  Martin Baulig  <martin@ximian.com>
23820
23821         * class.c (mono_class_initialize_generic): Made this static, take
23822         a `MonoGenericInst *' instead of a `MonoClass *'.
23823         (mono_class_from_generic): Call mono_class_initialize_generic()
23824         unless we're already initialized or being called from
23825         do_mono_metadata_parse_generic_inst().
23826
23827         * class.h (MonoGenericInst): Added `initialized' and
23828         `init_pending' flags.
23829
23830         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
23831         `mono_class_init (gklass)' or mono_class_initialize_generic()
23832         here; set `generic_inst->init_pending' while parsing the
23833         `type_argv'.
23834
23835 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
23836
23837         * locales.c: include string.h for memxxx prototypes
23838
23839 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
23840
23841         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
23842         constructor when accessing literal fields.
23843
23844 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
23845
23846         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23847
23848         * reflection.c (assembly_add_resource_manifest): New function to fill
23849         the MANIFESTRESOURCE table.
23850
23851         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
23852
23853         * reflection.h: Update to changes in class layout.
23854
23855         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
23856         Reenable call to mono_runtime_is_shutting_down ().
23857
23858         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
23859         determine if the runtime is shutting down.
23860
23861 2003-12-16  Jackson Harper <jackson@ximian.com>
23862
23863         * icall.c: comment out call to mono_runtime_is_shutting_down to
23864         fix build.
23865         
23866 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
23867
23868         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
23869         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
23870
23871 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
23872
23873         * reflection.c: move definition of swap_with_size
23874         to before its first call
23875
23876 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
23877
23878         * appdomain.c (mono_runtime_is_shutting_down): New public function.
23879
23880         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
23881         icall.
23882
23883         * object.c: Fix warnings.
23884
23885         * icall.c (ves_icall_Type_Get...): Only consider inherited static
23886         members if FlattenHierarchy is set.
23887
23888         * reflection.c (mono_image_add_decl_security): New function to emit
23889         declarative security.
23890
23891         * reflection.h reflection.c: Add support for declarative security.
23892
23893         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
23894         
23895 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
23896
23897         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
23898         
23899         * appdomain.c verify.c: Moved corlib version checking into its own
23900         function in appdomain.c since it needs to create vtables etc.
23901
23902 2003-12-13  Patrik Torstensson <p@rxc.se>
23903
23904         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
23905         instead of unwrapped server.
23906
23907 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
23908
23909         * verify.c (check_corlib): Fix field index.
23910
23911 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
23912
23913         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
23914         GetGacPath icall.
23915
23916 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
23917
23918         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
23919         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
23920         cope with sizeof(size_t) != sizeof(guint32).
23921
23922 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23923
23924         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
23925         in case of failure.
23926
23927 2003-12-10  Mark Crichton <crichton@gimp.org>
23928
23929         * icall.c: removed the GetNonZeroBytes.  We now handle this case
23930         in managed code.
23931
23932         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
23933
23934 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
23935
23936         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
23937         marked as deleted.
23938
23939 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
23940
23941         * verify.c (check_corlib): Handle the case when the version field is 
23942         initialized by a static constructor.
23943
23944 2003-12-08  Patrik Torstensson  <p@rxc.se>
23945
23946     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
23947
23948 2003-12-08  Martin Baulig  <martin@ximian.com>
23949
23950         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
23951         a MonoReflectionGenericParameter, also take the parameter index
23952         and name as arguments.
23953         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
23954         (ves_icall_MonoGenericParam_initialize): New interncall.
23955         (ves_icall_Type_make_byref_type): New interncall.
23956
23957         * reflection.h (MonoReflectionGenericParam): Derive from
23958         MonoReflectionType, not just from MonoObject.  Added `refobj' and
23959         `index' fields.
23960
23961         * reflection.c (mono_reflection_define_generic_parameter): Create
23962         and return a new MonoReflectionGenericParam; don't initialize the
23963         constraints here.
23964         (mono_reflection_initialize_generic_parameter): New public method;
23965         initializes the constraints and creates the `param->pklass'.
23966
23967 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
23968
23969         * reflection.h reflection.c: Use the new fields 'num_types', 
23970         'num_fields' and 'num_methods' to track the number of types etc.
23971
23972         * verify.c (check_corlib): Check corlib version number.
23973
23974 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
23975
23976         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
23977         function works on all methods.
23978
23979 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
23980
23981         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
23982         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
23983         the custom_type_info flag of the transparent proxy.
23984         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
23985         objects that supports IRemotingTypeInfo.
23986         * object.h: Added custom_type_info field in transparent proxy.
23987
23988 2003-12-06  Martin Baulig  <martin@ximian.com>
23989
23990         * class.c (mono_class_create_from_generic): Removed.
23991         (mono_class_from_generic): Check `ginst->klass' before doing
23992         anything else.  This is important to fully support "recursive"
23993         generic types.
23994
23995         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
23996         empty `generic_inst->klass' before doing anything else.
23997
23998 2003-12-06  Dick Porter  <dick@ximian.com>
23999
24000         * verify.c: 
24001         * object.h:
24002         * icall.c:
24003         * locales.c: Use C structs to access class fields.  Don't do a
24004         conversion between MonoString and UChar because both are
24005         platform-endian UTF-16.  Compare now takes startindex and count
24006         parameters.  Add a char overload for IndexOf.  Speed up the
24007         invariant string IndexOf.
24008
24009 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
24010
24011         * Makefile.am (monosn_LDADD): Fix parallel build.
24012
24013 2003-12-04  Martin Baulig  <martin@ximian.com>
24014
24015         * icall.c
24016         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
24017         (ves_icall_Type_make_array_type): New interncall.       
24018
24019 2003-12-04  Martin Baulig  <martin@ximian.com>
24020
24021         * locales.c: also change it in the !HAVE_ICU case.
24022
24023 2003-12-04  Dick Porter  <dick@ximian.com>
24024
24025         * icall.c:
24026         * locales.c: construct_compareinfo is now in CompareInfo, not
24027         CultureInfo.
24028
24029 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
24030
24031         * image.c (mono_image_load_file_for_image): Cache loaded images in the
24032         image->files array.
24033
24034         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
24035         table as well.
24036
24037         * assembly.c (mono_assembly_load_references): Only load references
24038         once.
24039
24040         * class.c (mono_class_from_name): Avoid linear search of the 
24041         EXPORTEDTYPE table.
24042
24043         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
24044
24045 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
24046
24047         * image.h (MonoImage): Add 'field_cache' field.
24048
24049         * loader.c (mono_field_from_token): Cache field lookups.
24050         
24051         * reflection.c (mono_module_get_object): Fix name property.
24052
24053         * icall.c (ves_icall_get_enum_info): Update after changes to 
24054         mono_metadata_get_constant_index ().
24055
24056         * icall.c: Get rid of get_type_info icall, use a separate icall for
24057         each type property to avoid needless memory allocations. Fixes #51514.
24058
24059         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
24060         to avoid needless binary searches.
24061
24062         * class.c (class_compute_field_layout): Move the initialization of
24063         field->def_value to mono_class_vtable ().
24064
24065         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
24066         non-corlib types.
24067
24068         * object.c (mono_object_allocate): Make it inline.
24069
24070         * object.c (mono_object_allocate_spec): Make it inline.
24071         
24072 2003-12-02  Dick Porter  <dick@ximian.com>
24073
24074         * locales.c (create_NumberFormat): NumberFormatInfo construction.
24075         Patch by Mohammad DAMT (mdamt@cdl2000.com).
24076
24077 2003-12-01  Dick Porter  <dick@ximian.com>
24078
24079         * threads.c: Fix signature and call in CreateMutex and
24080         CreateEvent.
24081
24082 2003-12-01  Dick Porter  <dick@ximian.com>
24083
24084         * icall.c: 
24085         * locales.c: Implement string compares and searching
24086
24087         * object.h: Add extra Thread field
24088
24089 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
24090
24091         * reflection.c (fixup_method): Add support for MonoCMethod.
24092
24093 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
24094
24095         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
24096
24097         * reflection.c (assembly_name_to_aname): Allow extra characters in
24098         assembly names. Fixes #51468.
24099
24100 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
24101
24102         * exception.c (mono_exception_from_name_domain): New helper function.
24103
24104         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
24105         exception object in the correct domain.
24106
24107         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
24108         formatting + make a copy a the input data.
24109
24110         * loader.c (mono_get_method_from_token): Methods which contain
24111         native code do not have entries in the ImplMap.
24112
24113         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
24114         Thanks to Gonzalo for spotting this.
24115         
24116         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
24117         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
24118
24119         * assembly.h (mono_assembly_load_from): Split the second part of 
24120         assembly loading into a new public function.
24121
24122         * exception.h (mono_get_exception_bad_image_format): New function.
24123
24124 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
24125
24126         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
24127         Enumerate all modules inside a dynamic assembly. Fixes #51293.
24128         
24129         * icall.c: Add new icall for creating dynamic methods.
24130
24131         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
24132
24133         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
24134
24135         * reflection.c (mono_reflection_create_dynamic_method): New icall to
24136         create a dynamic method.
24137
24138         * reflection.c (resolve_object): New helper function.
24139
24140         * reflection.c: Generalize ReflectionMethodBuilder and the functions
24141         which manipulate it so they can also work on dynamic methods.
24142
24143         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
24144         creating the MonoReflectionMethodAux structure if it is not needed.
24145         
24146         * reflection.h verify.c: Update after changes to object layout.
24147
24148         * reflection.c (method_builder_encode_signature): Fix compilation on
24149         gcc 2.95.x.
24150
24151 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
24152
24153         * appdomain.h: Added support for context static fields. Added static_data
24154           field to MonoAppContext and renamed thread_static_fields to a more
24155           generic special_static_fields in MonoAppDomain, since it can now contain
24156           context static fields.
24157         * domain.c: Updated hashtable name.
24158         * object.c: Replaced field_is_thread_static() for a more generic
24159           field_is_special_static() which also checks for context static attribute.
24160           In mono_class_vtable(), added support for static context fields.
24161         * threads.c: Changed methods that manage thread static fields to more
24162           generic methods so they can be reused both for thread and context static
24163           data.
24164         * threads.h: Declared some new methods.
24165
24166 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
24167
24168         * reflection.h: Update after changes to the managed types.
24169
24170         * reflection.c (encode_custom_modifiers): New helper function.
24171
24172         * reflection.c (method_encode_signature): Emit custom modifiers.
24173
24174         * reflection.c (field_encode_signature): Emit custom modifiers.
24175
24176 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
24177
24178         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
24179
24180         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
24181         implementation.
24182
24183         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
24184         icall.
24185
24186         * object.c (mono_field_get_value_object): New function.
24187
24188         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
24189         specific.
24190
24191 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
24192
24193         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
24194         return a preallocated out-of-memory exception instance.
24195
24196         * object.c (out_of_memory): Use the new function.
24197
24198         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
24199         flag is before the custom modifiers. Fixes #49802.
24200
24201 2003-11-16  Martin Baulig  <martin@ximian.com>
24202
24203         * class.c (mono_class_is_open_constructed_type): Implemented the
24204         MONO_TYPE_GENERICINST case.
24205
24206 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
24207
24208         * assembly.c (mono_assembly_fill_assembly_name): New function to
24209         fill out the MonoAssemblyName structure.
24210         (mono_assembly_open): Use the new function.
24211
24212         * icall.c (fill_reflection_assembly_name): New helper function.
24213
24214         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
24215         new function.
24216
24217         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
24218
24219 2003-11-15  Martin Baulig  <martin@ximian.com>
24220
24221         * class.c (mono_class_is_open_constructed_type): New public
24222         function; checks whether a type is an open constructed type,
24223         ie. whether it still contains type parameters.
24224         (mono_class_inflate_generic_type): If we're a type parameter and
24225         the inflated type is also a MONO_TYPE_(M)VAR, return the original
24226         type.
24227
24228         * class.h (MonoGenericInst): Added `guint32 is_open'.
24229
24230         * loader.c (method_from_methodspec): Check whether we're an open
24231         or closed constructed type and set `ginst->is_open'.
24232
24233         * reflection.c (mono_reflection_bind_generic_parameters): Check
24234         whether we're an open or closed constructed type and set
24235         `ginst->is_open'.
24236         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
24237         from open constructed types.
24238
24239 2003-11-15  Martin Baulig  <martin@ximian.com>
24240
24241         * reflection.c (mono_reflection_bind_generic_parameters): If we're
24242         a generic instance (instead of a generic type declaration) with
24243         unbound generic parameters, bind them to our actual types.
24244
24245 2003-11-14  Martin Baulig  <martin@ximian.com>
24246
24247         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
24248
24249         * reflection.c (mono_reflection_bind_generic_parameters): If we're
24250         an interface type, populate `res->interfaces' with instantiated
24251         versions of all the interfaces we inherit.
24252
24253 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
24254
24255         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
24256         when MONO_PATH is set but doesn't contain the install dir.
24257
24258 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24259
24260         * icall.c:
24261         (ves_icall_Type_GetInterfaces): don't return an interface twice when
24262         it's also implemented in base classes. Fixes bug #50927.
24263
24264 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
24265
24266         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
24267         if this method is called from a finalizer. Fixes #50913.
24268
24269 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
24270
24271         * threads.c: Implement VolatileRead/VolatileWrite
24272
24273         * icall.c: Add new icalls for VolatileRead/VolatileWrite
24274
24275 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24276
24277         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
24278         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
24279         2.95.3.
24280
24281         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
24282         from Peter Ross (pro@missioncriticalit.com).
24283         
24284 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
24285
24286         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
24287
24288 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24289
24290         * assembly.c (mono_assembly_load_references): Disable check because it
24291         triggers on older corlibs which lots of people have.
24292
24293 2003-11-12  Jackson Harper  <jackson@ximian.com>
24294
24295         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
24296         load corlib.dll if mscorlib.dll is not found.
24297         * assembly.h: Remove corlib name define.
24298         * class.c:
24299         * domain.c:
24300         * image.c: Change corlib name to mscorlib.
24301         
24302 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24303
24304         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
24305
24306 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
24307
24308         * appdomain.h: Added loader_optimization here to sync with the C#
24309         code, and add disallow_binding_redirects field.
24310
24311 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
24312
24313         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
24314
24315         * reflection.c (mono_image_build_metadata): Fix crash on modules
24316         with no types.
24317
24318         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
24319
24320         * icall.c (ves_icall_get_method_info): Return callingConvention as
24321         well.
24322
24323         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
24324         namespaces from the EXPORTEDTYPE table as well.
24325
24326         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
24327         from all modules inside the assembly.
24328         
24329 2003-11-11  Martin Baulig  <martin@ximian.com>
24330
24331         * reflection.c (mono_reflection_bind_generic_parameters): Make
24332         this work for interfaces.
24333
24334 2003-11-11  Martin Baulig  <martin@ximian.com>
24335
24336         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
24337
24338 2003-11-11  Martin Baulig  <martin@ximian.com>
24339
24340         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
24341         "MonoInflatedMethod" and "MonoInflatedCtor".
24342
24343 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
24344
24345         * reflection.c (resolution_scope_from_image): Use the assembly table
24346         from the manifest module, since other modules don't have it.
24347
24348         * debug-helpers.c (mono_type_full_name): New helper function.
24349
24350         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
24351
24352         * image.c (mono_image_load_file_for_image): New public function which
24353         is a replacement for the load_file_for_image in class.c.
24354
24355         * assembly.c (mono_assembly_load_module): A wrapper for the function
24356         above which does assembly association and reference loading too.
24357
24358         * class.c (mono_class_from_name): Call mono_assembly_load_module.
24359
24360 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24361
24362         * appdomain.c: not all of the attributes for the full assembly name
24363         are required and the order doesn't matter. Fixes bug #50787.
24364
24365 2003-11-10  Dick Porter  <dick@ximian.com>
24366
24367         * locales.c: Use platform-endian UTF16
24368
24369 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
24370
24371         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
24372         
24373 2003-11-10  Martin Baulig  <martin@ximian.com>
24374
24375         * metadata.c
24376         (mono_metadata_load_generic_params): Make this actually work.
24377
24378         * reflection.c (mono_reflection_bind_generic_parameters): If our
24379         parent is a generic instance, pass all the `types' to it, no
24380         matter whether it has the same number of type parameters or not.
24381
24382 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
24383
24384         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
24385
24386         * assembly.c (mono_assembly_load_references): Move the image<->assembly
24387         assignment code to this function so it gets called recursively for all
24388         modules.
24389
24390         * image.c (load_modules): Remove the assembly assignment since it is
24391         now done by mono_assembly_load_references.
24392         
24393         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
24394         Add 'module' argument.
24395         (mono_module_get_types): New helper function.
24396         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
24397
24398 2003-11-08  Martin Baulig  <martin@ximian.com>
24399
24400         * class.c (mono_class_inflate_generic_method): Interface method
24401         don't have a header.
24402
24403         * reflection.c (mono_image_get_methodspec_token): Take an
24404         additional `MonoGenericInst *' argument instead of reading it from
24405         the header; this is necessary to support interfaces.
24406         (mono_image_create_token): Pass the `MonoGenericInst *' from the
24407         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
24408         (inflated_method_get_object): Take an additional `MonoGenericInst *'
24409         argument.
24410
24411         * reflection.h (MonoReflectionInflatedMethod): Added
24412         `MonoGenericInst *ginst'.
24413
24414 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
24415
24416         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
24417
24418 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
24419
24420         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
24421
24422 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
24423
24424         * reflection.c 
24425         (reflection_methodbuilder_from_method_builder):
24426         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
24427         initialize a ReflectionMethodBuilder structure.
24428         (mono_image_get_methodbuilder_token):
24429         (mono_image_get_ctorbuilder_token): New functions to emit memberref
24430         tokens which point to types in another module inside the same assembly.
24431
24432         * reflection.c: Use the new helper functions.
24433         
24434         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
24435
24436         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
24437         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
24438
24439         * reflection.c (resolution_scope_from_image): Emit a moduleref if
24440         neccesary.
24441
24442         * reflection.c (mono_image_build_metadata): Emit metadata only for the
24443         current module. Emit the manifest only for the main module.
24444
24445         * reflection.c (mono_image_create_token): Add assertion when a 
24446         memberref needs to be created.
24447
24448         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
24449
24450         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
24451         larger buffer for the custom attribute blob. Fixes #50637.
24452         
24453 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24454
24455         * threadpool.c: notify listener on async processing handles after
24456         invoking the async callback. Thanks to Zoltan.
24457
24458 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24459
24460         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
24461         avoid code duplication.
24462
24463         * reflection.h (MonoDynamicImage): New type which is currently unused,
24464         but will be used through the ref.emit code in place of 
24465         MonoDynamicAssembly.
24466
24467         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
24468         object layout.
24469
24470         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
24471         a MonoDynamicImage instead of just a MonoImage.
24472         
24473         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
24474         icalls to ModuleBuilder but keep their semantics, so they will work
24475         with moduleb->assemblyb. This will change later.
24476         
24477 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24478
24479         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
24480         object layout.
24481
24482         * reflection.c (mono_image_build_metadata): Avoid creation of a default
24483         main module, since it is now done by the managed code.
24484
24485 2003-11-03  Martin Baulig  <martin@ximian.com>
24486
24487         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
24488         `ginst->klass' here.
24489         (method_encode_methodspec): Don't use the `ginst->generic_method's
24490         klass if it's a generic instance, use `ginst->klass' in this case.
24491
24492 2003-11-03  Martin Baulig  <martin@ximian.com>
24493
24494         * reflection.c (mono_image_get_generic_method_param_info):
24495         Removed, use mono_image_get_generic_param_info() instead.
24496         (mono_image_get_type_info): Write the GenericParam table before
24497         the Method table.  This is neccessary because in the GenericParam
24498         table, type parameters of the class (ie. '!0' etc.) must come
24499         before the ones from its generic methods (ie. '!!0' etc).
24500
24501 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24502
24503         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
24504
24505 2003-11-02  Martin Baulig  <martin@ximian.com>
24506
24507         * reflection.c (create_generic_typespec): Take a
24508         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
24509         the generic parameters from it.
24510
24511 2003-11-02  Martin Baulig  <martin@ximian.com>
24512
24513         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
24514         instead of a `MonoClassField *' since we just need the type.
24515         (create_generic_typespec): New static function.  Creates a
24516         TypeSpec token for a generic type declaration.
24517         (mono_image_get_generic_field_token): New static function.
24518         (mono_image_create_token): If we're a FieldBuilder in a generic
24519         type declaration, call mono_image_get_generic_field_token() to get
24520         the token.
24521
24522 2003-11-02  Martin Baulig  <martin@ximian.com>
24523
24524         * reflection.h
24525         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
24526         `MonoReflectionGenericInst *declaring_type' and
24527         `MonoReflectionGenericInst *reflected_type' fields.
24528
24529         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
24530         `MonoReflectionGenericInst *declaring_type' and a
24531         `MonoReflectionGenericInst *reflected_type' argument instead of a
24532         single `MonoReflectionGenericInst *type' one.  Set
24533         `res->declaring_type' and `res->reflected_type' from them.
24534         (mono_reflection_inflate_field): Likewise.      
24535
24536 2003-11-02  Martin Baulig  <martin@ximian.com>
24537
24538         * class.c (mono_class_setup_vtable): Don't store generic methods
24539         in the vtable.  
24540
24541 2003-11-02  Martin Baulig  <martin@ximian.com>
24542
24543         * reflection.h (MonoReflectionGenericInst): Added
24544         `MonoReflectionType *declaring_type'.
24545
24546         * reflection.c (mono_reflection_bind_generic_parameters): Use
24547         `if (tb->parent)' instead of `klass->parent'.
24548
24549 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
24550
24551         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
24552         with an empty ASSEMBLY table.
24553
24554         * reflection.c (mono_image_build_metadata): Avoid using the same loop
24555         variable in the inner and outer loops.
24556
24557 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
24558
24559         * metadata.h (mono_metadata_make_token): Put parentheses around macro
24560         argument.
24561
24562         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
24563         
24564         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
24565         icalls. Instead, do everything in managed code. This is needed since
24566         it is hard to restore the original domain etc. in unmanaged code in the
24567         presence of undeniable exceptions.
24568
24569         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
24570         New icalls to push and pop appdomain refs.
24571
24572 2003-10-31  Martin Baulig  <martin@ximian.com>
24573
24574         * class.c (inflate_generic_type): Renamed to
24575         mono_class_inflate_generic_type() and made it public.
24576
24577         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
24578         New interncall.
24579
24580         * loader.c (mono_field_from_memberref): Also set the retklass for
24581         typespecs.
24582
24583         * fielder.c (mono_image_get_inflated_field_token): New static
24584         method; creates a metadata token for an inflated field.
24585         (mono_image_create_token, fixup_method): Added support for
24586         "MonoInflatedField".
24587         (fieldbuilder_to_mono_class_field): New static function.
24588         (mono_reflection_inflate_field): New public function.
24589
24590         * reflection.h
24591         (MonoReflectionGenericInst): Added `MonoArray *fields'.
24592         (MonoReflectionInflatedField): New typedef.     
24593
24594 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
24595
24596         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
24597         for Solaris and other platforms without s6_addr16
24598
24599 2003-10-30  Martin Baulig  <martin@ximian.com>
24600
24601         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
24602         argument instead of two.
24603         (mono_class_inflate_generic_signature): Likewise.
24604         (inflate_generic_header): Likewise.
24605         (mono_class_inflate_generic_method): Likewise.  In addition, if
24606         `ginst->klass' is set, it becomes the new `method->klass'.
24607
24608         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
24609         field.
24610
24611         * reflection.c (encode_generic_method_sig): Write a 0xa as the
24612         first byte. [FIXME]
24613         (method_encode_methodspec): If we have generic parameters, create
24614         a MethodSpec instead of a MethodRef.
24615         (fixup_method): Added support for "MonoInflatedMethod" and
24616         "MonoInflatedCtor".
24617         (mono_image_create_token): Added support for "MonoInflatedMethod"
24618         and "MonoInflatedCtor".
24619         (inflated_method_get_object): New static function; returns a
24620         managed "System.Reflection.MonoInflatedMethod" object.
24621         (mono_reflection_bind_generic_method_parameters): Return a
24622         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
24623         (mono_reflection_inflate_method_or_ctor): Likewise.
24624         (mono_image_get_generic_method_param_info): Initialize unused
24625         fields to zero.
24626         (mono_image_get_generic_param_info): Likewise.
24627
24628         * reflection.h (MonoReflectionInflatedMethod): New public
24629         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
24630         "S.R.MonoInflatedCtor" classes.
24631
24632         * loader.c (method_from_memberref): If we're a TypeSpec and it
24633         resolves to a generic instance, inflate the method.
24634
24635 2003-10-28  Dick Porter  <dick@ximian.com>
24636
24637         * object.c (mono_runtime_run_main): Convert command-line arguments
24638         into utf8, falling back to the user's locale encoding to do so.
24639
24640 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
24641
24642         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
24643         at this time.
24644
24645         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
24646
24647         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
24648         up icalls at method definition time. Partially fixes #33569.
24649
24650 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
24651
24652         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
24653         marshalling of arrays. Fixes #50116.
24654
24655         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
24656
24657         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
24658         points to a vtable in the dying appdomain.
24659
24660         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
24661         listeners into unmanaged code inside the lock.
24662
24663         * object.c (mono_class_vtable): Turn off typed allocation in non-root
24664         domains and add some comments.
24665
24666 2003-10-25  Martin Baulig  <martin@ximian.com>
24667
24668         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
24669
24670         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
24671
24672         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
24673         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
24674         currently parsing.  Create the generic class and store it in
24675         `generic_inst->klass' before parsing the type arguments.  This is
24676         required to support "recursive" definitions; see mcs/tests/gen-23.cs
24677         for an example.
24678         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
24679         to support recursive typespec entries.
24680
24681         * class.c (mono_class_setup_parent): If our parent is a generic
24682         instance, we may get called before it has its name set.
24683         (mono_class_from_generic): Splitted into
24684         mono_class_create_from_generic() and mono_class_initialize_generic().
24685
24686 2003-10-25  Martin Baulig  <martin@ximian.com>
24687
24688         * icall.c (ves_icall_Type_BindGenericParameters): Return a
24689         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
24690         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
24691         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
24692
24693         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
24694         (create_typespec): Likewise.
24695         (mono_reflection_bind_generic_parameters): Return a
24696         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
24697         (mono_reflection_inflate_method_or_ctor): New public function.
24698
24699         * reflection.h (MonoReflectionGenericInst): New typedef.        
24700
24701 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
24702
24703         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
24704         inside the domain lock. Fixes #49993.
24705         
24706         * object.c (mono_class_vtable): When typed allocation is used, 
24707         allocate vtables in the GC heap instead of in the mempool, since the
24708         vtables contain GC descriptors which are used by the collector even
24709         after the domain owning the mempool is unloaded.
24710
24711         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
24712
24713         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
24714         reflect what it does. Also invalidate mempools instead of freeing
24715         them if a define is set.
24716
24717         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
24718         of the appdomain.
24719         
24720         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
24721         hold the finalizable objects in this domain.
24722
24723         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
24724         appdomain.
24725
24726         * appdomain.c (mono_domain_set): New function to set the current
24727         appdomain, but only if it is not being unloaded.
24728
24729         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
24730         appdomain which is being unloaded.
24731         
24732         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
24733         unloading of the root appdomain.
24734
24735         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
24736         icall to execute a method in another appdomain. Intended as a 
24737         replacement for InternalSetDomain, which can confuse the code 
24738         generation in the JIT.
24739
24740         * appdomain.c (mono_domain_is_unloading): New function to determine
24741         whenever an appdomain is unloading.
24742
24743         * appdomain.c (mono_domain_unload): New function to correctly unload
24744         an appdomain.
24745
24746         * assembly.c (mono_assembly_load_references): Check that an assembly
24747         does not references itself.
24748
24749         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
24750         domain manually, it asks the finalizer thread to do it, then waits for
24751         the result. Also added a timeout.
24752
24753         * icall.c: Register the new icalls.
24754
24755         * threads.h threads.c: Export the mono_gc_stop_world and 
24756         mono_gc_start_world functions.
24757         
24758         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
24759         function to fill out the mempool with 0x2a.
24760
24761 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
24762
24763         * reflection.h (MonoReflectionMethodAux): New structure to store
24764         information which is rarely used, thus is not in the MonoMethod
24765         structure.
24766
24767         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
24768         store the aux info.
24769
24770         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
24771         and marshalling info into the aux structure.
24772
24773         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
24774         from the aux structure.
24775
24776         * loader.c (mono_method_get_param_names): Retrieve the param names from
24777         the aux structure.
24778         
24779 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
24780
24781         * exception.h exception.c: Add AppDomainUnloadedException && fix 
24782         warning.
24783
24784 2003-10-21  Dick Porter  <dick@ximian.com>
24785
24786         * socket-io.c
24787         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
24788         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
24789
24790 2003-10-21  Martin Baulig  <martin@ximian.com>
24791
24792         * reflection.c (mono_reflection_bind_generic_parameters):
24793         `klass->parent' is NULL for interfaces.
24794
24795 2003-10-21  Martin Baulig  <martin@ximian.com>
24796
24797         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
24798
24799 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
24800
24801         * exception.c (mono_exception_from_name_msg): New helper function for
24802         creating exceptions and initializing their message field.
24803
24804         * exception.c: Simplify functions using the new helper.
24805
24806         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
24807         New function.
24808
24809         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
24810         mono_raise_exception, since otherwise gcc doesn't generate the function
24811         epilog for raise_exception, confusing the stack unwinding in the JIT.
24812         Fixes #45043.
24813
24814         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
24815         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
24816         Fixes #49499.
24817
24818 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24819
24820         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
24821         utf8.
24822
24823 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
24824
24825         * icall.c: Removed GetUninitializedObject method because
24826           AllocateUninitializedClassInstance does the same.
24827
24828 2003-10-18  Martin Baulig  <martin@ximian.com>
24829
24830         * class.c (inflate_generic_signature): Renamed to
24831         mono_class_inflate_generic_signature() and made it public.
24832         (my_mono_class_from_generic_parameter): New static function; if we
24833         don't already have the generic parameter's MonoClass, create a
24834         very simple one which is just used internally in the runtime and
24835         not passed back to managed code.
24836
24837         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
24838
24839         * metadata.h (MonoMethodSignature): Moved the
24840         `MonoGenericParam *gen_params' to the MonoMethodHeader.
24841         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
24842
24843         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
24844         ves_icall_MonoMethod_GetGenericArguments(); this is now an
24845         interncall on the MonoMethod class, not on MethodInfo.
24846         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
24847         calling mono_reflection_bind_generic_method_parameters() directly.
24848
24849         * loader.c (mono_method_get_signature): If this is a MethodSpec;
24850         return the already computed `method->signature'.
24851         (method_from_methodspec): New static function to load a method
24852         from a MethodSpec entry.
24853         (mono_get_method_from_token): Call the new method_from_methodspec()
24854         for MethodSpec tokens.  
24855         (mono_get_method_from_token): If we're a generic method, load the
24856         type parameters.
24857
24858         * reflection.c (mono_image_get_memberref_token): Allow
24859         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
24860         table.
24861         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
24862         (mono_image_create_token): First check whether it's a generic
24863         method (so we'd need to create a MethodSpec), then do the other
24864         two alternatives.
24865         (mono_reflection_bind_generic_method_parameters): Return a
24866         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
24867         called directly from the interncall.
24868
24869 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
24870
24871         * reflection.c (load_public_key): Move loading of the public key
24872         into managed code.
24873
24874         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
24875
24876         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
24877         fields.
24878
24879         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
24880         culture, hash_alg and public_key. Fixes #49555.
24881
24882 2003-10-17  Martin Baulig  <martin@ximian.com>
24883
24884         * class.h (MonoGenericInst): Moved this declaration here and added
24885         `MonoMethod *generic_method'.
24886
24887         * icall.c
24888         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
24889         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
24890
24891         * metadata.c (mono_metadata_type_equal): Two types of
24892         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
24893         index; ie. don't compare the address of the `MonoGenericParam'
24894         structure.
24895         (mono_metadata_load_generic_params): Removed the `MonoMethod
24896         *method' argument.
24897
24898         * metadata.h (MonoGenericInst): Moved declaration to class.h.
24899         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
24900
24901         * reflection.c (method_encode_signature): Encode the number of
24902         generic parameters.
24903         (encode_generic_method_sig): New static function.
24904         (method_encode_methodspec): New static function; creates an entry
24905         in the MethodSpec table for a generic method.
24906         (mono_image_get_methodspec_token): New static function.
24907         (mono_image_create_token): Call mono_image_get_methodspec_token()
24908         for generic methods.
24909         (mono_reflection_bind_generic_method_parameters): New public
24910         function.  Instantiates a generic method.
24911
24912 2003-10-16  Martin Baulig  <martin@ximian.com>
24913
24914         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
24915         *gen_params' here from MonoMethodHeader.
24916
24917         * metadata.c (mono_metadata_parse_method_signature): If we have
24918         generic parameters, initialize `method->gen_params' and then set
24919         the correct `type->data.generic_param' in all the parameters.
24920
24921 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
24922
24923         * threads.c (mono_threads_get_default_stacksize): New function to 
24924         return the default stacksize.
24925
24926         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
24927         termination of the finalizer thread, since the previous method had
24928         race conditions. Fixes #49628.
24929
24930         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
24931         as for the other managed threads.
24932
24933 2003-10-16  Martin Baulig  <martin@ximian.com>
24934
24935         * class.c (inflate_generic_signature): Copy `generic_param_count'
24936         and `gen_params'.
24937
24938         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
24939         New interncall.
24940
24941         * metadata.c (mono_metadata_parse_method_signature): Actually set
24942         the `method->generic_param_count' here.
24943         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
24944
24945 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
24946
24947         * object.h: Add a new field to TypedRef to simplify the implementation
24948         of the REFANY opcodes in the JIT.
24949
24950         * icall.c: Make use of the new field.
24951
24952         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
24953         dynamically.
24954
24955 2003-10-15  Martin Baulig  <martin@ximian.com>
24956
24957         * class.c (mono_class_from_gen_param): Renamed to
24958         mono_class_from_generic_parameter() and moved most of the
24959         functionality from mono_reflection_define_generic_parameter()
24960         here; ie. we create a "real" class here.
24961         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
24962         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
24963         previously been called.
24964
24965         * class.h (MonoGenericParam): Moved the declaration of this struct
24966         here from metadata.h and added `MonoMethod *method'.
24967
24968         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
24969         interncall.
24970
24971         * loader.c (mono_get_method_from_token): If we have any generic
24972         parameters, call mono_metadata_load_generic_params() to read them
24973         from the MONO_TABLE_GENERICPAR.
24974
24975         * metadata.c (mono_metadata_load_generic_params): Added
24976         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
24977
24978         * metadata.h (MonoMethodSignature): Replaced
24979         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
24980         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
24981
24982         * reflection.c (mono_reflection_define_generic_parameter): Moved
24983         most of the functionality into the new
24984         mono_class_from_generic_parameter(); set the `method' field if
24985         we're a method parameter.       
24986
24987 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
24988
24989         * marshal.c (emit_struct_conv): if native size is 0
24990         emit no code.
24991
24992 2003-10-14  Martin Baulig  <martin@ximian.com>
24993
24994         * icall.c: The generics API has changed in the spec since it was
24995         added to System.Type; these modifications make it match the spec
24996         again.
24997         (ves_icall_Type_GetGenericParameters): Renamed to
24998         `ves_icall_Type_GetGenericArguments'.
24999         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
25000         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
25001         `ves_icall_MonoType_get_HasGenericArguments'.
25002         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
25003         `ves_icall_MonoType_get_IsGenericParameter'.
25004         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
25005         this is no interncall anymore.
25006         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
25007         `ves_icall_TypeBuilder_get_IsGenericParameter'.
25008
25009 2003-10-14  Martin Baulig  <martin@ximian.com>
25010
25011         * reflection.c (mono_reflection_bind_generic_parameters): Also
25012         inflate generic methods if we're reading the class from IL.
25013
25014 2003-10-13  Martin Baulig  <martin@ximian.com>
25015
25016         * reflection.c (mono_reflection_define_generic_parameter): This
25017         method isn't called directly from the icall anymore; take a
25018         `MonoReflectionAssemblyBuilder *' so we can use this for type and
25019         method generic parameters.
25020         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
25021         (method_builder_encode_signature): Encode generic parameters.
25022         (mono_image_get_method_info): Write generic params to the
25023         MONO_TABLE_GENERICPARAM table.
25024
25025         * reflection.h (MonoReflectionMethodBuilder): Added
25026         `MonoArray *generic_params'.
25027
25028         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
25029
25030         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
25031         wrapper for mono_reflection_define_generic_parameter().
25032         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
25033
25034 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
25035
25036         * marshal.h: Add missing function to fix build.
25037
25038         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
25039         the SetLastError pinvoke attribute.
25040
25041         * marshal.c (mono_marshal_set_last_error): New helper function called
25042         by the generated code.
25043         
25044         * marshal.c (mono_mb_emit_branch): New helper function.
25045
25046         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
25047
25048         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
25049         classes as parameters and return values of delegates. Fixes #29256. 
25050
25051 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
25052
25053         * locales.c: use gint32 in non HAVE_ICU case
25054
25055 2003-10-11  Martin Baulig  <martin@ximian.com>
25056
25057         * mono-debug.c (mono_debug_add_method): Added a workaround for
25058         bug #48591.
25059
25060 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
25061
25062         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
25063         delegates passed to native code must use the STDCALL calling 
25064         convention. Fixes #35987.
25065
25066 2003-10-10  Martin Baulig  <martin@ximian.com>
25067
25068         * class.c (inflate_generic_type): If we're inflating for a generic
25069         type instance (and not for a generic method), return
25070         MONO_TYPE_MVAR unchanged.
25071
25072 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25073
25074         * string-icalls.c: Join ignores null strings in the source array.
25075         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
25076         * threads.c: GetAvailableTheads is slightly more accurate.
25077
25078 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
25079
25080         * threads.h threads.c : add mono_threads_set_default_stacksize
25081         and pass default to CreateThread calls.
25082
25083 2003-10-09  Dick Porter  <dick@ximian.com>
25084
25085         * icall.c:
25086         * locales.h:
25087         * locales.c: Internal calls for constructing CultureInfo and
25088         related objects from libicu (if its available.)
25089
25090 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
25091
25092         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
25093
25094 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25095
25096         * threadpool.c: added an argument to async_invoke_thread that is the
25097         item to process, pass the MonoAsyncResult to the thread start function
25098         when creating a new thread. This way we don't need to acquire any lock
25099         when we're creating a new thread. Readded a semaphore for faster
25100         response times (instead of that Sleep i added).
25101
25102 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
25103
25104         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
25105         get daylight change dates better on Windows, fix handling
25106         of platforms without tm_gmtoff.
25107
25108 2003-10-06  Martin Baulig  <martin@ximian.com>
25109
25110         * class.c (inflate_generic_method): Renamed to
25111         mono_class_inflate_generic_method() and made public.
25112         (mono_class_init): Don't inflate the generic methods here.
25113         (mono_class_from_generic): Added `gboolean inflate_methods'
25114         argument.  Inflate the methods here.
25115
25116         * loader.c (mono_method_get_param_names): Ignore instances of
25117         generic types for the moment.
25118
25119         * reflection.c (fixup_method): Added support for inflated methods.
25120         (mono_image_create_token): Use mono_image_get_methodref_token()
25121         for inflated methods.
25122         (mono_custom_attrs_from_param): Ignore instances of generic types
25123         for the moment.
25124         (mono_reflection_bind_generic_parameters): New public function.
25125         Moved all the functionality from
25126         ves_icall_Type_BindGenericParameters() here and added support for
25127         dynamic types.
25128         (mono_reflection_define_generic_parameter): Initialize
25129         `klass->methods' here.
25130
25131         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
25132         functionality into mono_reflection_define_generic_parameter().
25133         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
25134         TypeBuilder, return that TypeBuilder.
25135
25136 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25137
25138         * appdomain.c: removed mono_delegate_semaphore.
25139
25140         * threadpool.c:
25141         (mono_thread_pool_add): moved hash table creation inside and the thread 
25142         creation outside of the critical region.
25143         (mono_thread_pool_finish): removed obsolete code.
25144         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
25145         continue or exit the thread depending on the queue.
25146
25147 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
25148
25149         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
25150         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
25151         handle more bool marshalling options
25152
25153 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
25154
25155         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
25156         arrays of structs. Also add a more descriptive error message when
25157         a structure member is marshalled as LPArray.
25158
25159 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
25160
25161         * marshal.c (mono_marshal_get_native_wrapper): Add support for
25162         marshalling arrays of complex types. Fixes #29098. Also remove an
25163         usused and incomplete function.
25164
25165 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
25166
25167         * gc.c: report heap_size - free_bytes as total memory allocated
25168         (bug#49362).
25169
25170 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
25171
25172         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
25173         fix timezone handling problems on Windows.
25174         
25175         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
25176         asserts when the year is outside the range handled by ms the functions.
25177
25178         * class.c (setup_interface_offsets): If the class is an interface,
25179         fill out its interface_offsets slot.
25180
25181 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25182
25183         * threadpool.c: mark threadpool threads as background.
25184
25185 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
25186
25187         * decimal.c - define DECINLINE to nothing if not using GCC
25188
25189 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
25190
25191         * assembly.c: More refcount fixes.
25192
25193 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25194
25195         * string-icalls.c: if we're not trimming, return the same string.
25196         When not splitting, don't create a new string.
25197
25198 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25199
25200         * image.c:
25201         (mono_image_open): increment the ref_count inside the critical section.
25202
25203 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
25204
25205         * image.c (mono_image_open): Fix reference counting bug.
25206
25207 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
25208
25209         * marshal.c (mono_marshal_type_size) struct alignment changed for 
25210         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
25211         64bits. Avoid leak in mono_marshal_get_native_wrapper when
25212         mono_lookup_pinvoke_call throws.        
25213
25214 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
25215
25216         * reflection.c (mono_reflection_parse_type): Fix #49114.
25217
25218         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
25219         temporary workaround for cygwin header problem.
25220
25221         * object.c (mono_object_isinst): Synchronize this with the code
25222         generated by the JIT for casts.
25223
25224 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
25225
25226         * reflection.c (encode_type): Fix #38332.
25227
25228 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
25229
25230         * marshal.c (mono_marshal_method_from_wrapper): New function to return
25231         the original method from the wrapper method.
25232
25233 2003-09-25  Martin Baulig  <martin@ximian.com>
25234
25235         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
25236         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
25237         (ves_icall_Type_get_IsGenericInstance): New interncall.
25238
25239 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
25240
25241         * object.c: fix cast warning in big endian code.
25242
25243 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
25244
25245         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
25246         
25247 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25248
25249         * assembly.c: don't call check_env from mono_assembly_load. It's
25250         already done once in mono_assemblies_init and may cause headaches when
25251         multiple threads are loading assemblies.
25252
25253 2003-09-19  Martin Baulig  <martin@ximian.com>
25254
25255         * reflection.c (mono_reflection_define_generic_parameter): Don't
25256         allocate `klass->methods', set `klass->flags' to
25257         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
25258
25259 2003-09-18  Martin Baulig  <martin@ximian.com>
25260
25261         * class.c (mono_class_init): Don't create `class->methods' if it's
25262         already initialized.
25263
25264         * metadata.c (mono_metadata_load_generic_params): Make this
25265         actually work.
25266
25267         * reflection.c (mono_reflection_define_generic_parameter): Set
25268         parent class and interfaces from the constraints.
25269
25270         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
25271         to keep this struct in sync with the declaration in TypeBuilder.cs.
25272
25273 2003-09-17  Martin Baulig  <martin@ximian.com>
25274
25275         * metadata.h (MonoType): Replaced the data's `int type_param'
25276         field with `MonoGenericParam *generic_param'.
25277         (MonoGenericParam): Added `MonoClass *klass'.
25278
25279         * class.c (mono_class_from_gen_param): Removed the
25280         `MonoImage *image' and `int type_num' arguments.
25281
25282         * metadata.c (mono_metadata_parse_generic_param): New static
25283         method; creates a MonoGenericParam which just contains the index.
25284         (do_mono_metadata_parse_type): Call
25285         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
25286         MONO_TYPE_MVAR.
25287
25288         * reflection.c (mono_image_typedef_or_ref): Generic type
25289         parameters may be in the same assembly, but never use a typedef
25290         for them.
25291         (mono_reflection_define_generic_parameter): We're now creating a
25292         "real" class for the type parameter; it's now safe to call
25293         mono_class_from_mono_type() on the class'es type, it'll do the
25294         right thing.
25295
25296 2003-09-16  Martin Baulig  <martin@ximian.com>
25297
25298         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
25299         `symfile->range_entry_size' and `symfile->class_entry_size' here;
25300         the `symfile' data structure must be fully initialized before it
25301         gets added to the table.
25302
25303 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
25304
25305         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
25306
25307         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
25308         class init trampolines.
25309
25310 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
25311
25312         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
25313         to the built-in profiler to turn off time and allocation profiling
25314         respectively.
25315
25316 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
25317
25318         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
25319         g_direct_equal.
25320
25321         * debug-helpers.c (mono_method_full_name): Print the wrapper type
25322         in human readable form.
25323
25324 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
25325
25326         * reflection.c icall.c: Fixed warnings.
25327
25328         * image.c (load_class_names): Use a temporary hash table to hold the
25329         namespaces in order to avoid doing many string comparisons.
25330
25331         * image.h: Fix typo.
25332
25333         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
25334         Pass NULL instead of g_direct_equal to the GHashTable constructor 
25335         since the NULL case is short-circuited inside g_hash_table_lookup, 
25336         leading to better performance.  
25337
25338         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
25339         obtain the first custom attribute for a given index. Depends on the
25340         CustomAttribute table being sorted by the parent field.
25341
25342         * reflection.c (mono_custom_attrs_from_index): Use the new function 
25343         for better performance.
25344
25345 2003-09-07  Martin Baulig  <martin@ximian.com>
25346
25347         * class.c (mono_class_init): If we're a generic instance, inflate
25348         all our methods instead of loading them from the image.
25349         (mono_class_from_generic): Set `class->methods = gklass->methods'.
25350
25351 2003-09-07  Martin Baulig  <martin@ximian.com>
25352
25353         * mono-debug-debugger.c: Added support for constructors.
25354
25355 2003-09-06  Martin Baulig  <martin@ximian.com>
25356
25357         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
25358         New interncall.
25359
25360         * reflection.c (mono_reflection_setup_generic_class): Call
25361         ensure_runtime_vtable() to create the vtable.
25362
25363 2003-09-05  Martin Baulig  <martin@ximian.com>
25364
25365         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
25366         MONO_TYPE_MVAR.
25367
25368 2003-09-04  Martin Baulig  <martin@ximian.com>
25369
25370         * reflection.c (mono_reflection_define_generic_parameter): Generic
25371         parameters start with zero.
25372
25373 2003-09-04  Martin Baulig  <martin@ximian.com>
25374
25375         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
25376
25377         * reflection.h (MonoReflectionGenericParam): New typedef.
25378         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
25379         the generic parameters from the managed TypeBuilder.
25380
25381         * reflection.c (mono_reflection_define_generic_parameter): New function.
25382         (mono_reflection_create_runtime_class): Encode generic parameters.
25383         (mono_reflection_setup_generic_class): New function; this is
25384         called after adding adding all generic params to the TypeBuilder.
25385         (encode_type): Added MONO_TYPE_VAR.
25386
25387 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
25388
25389         * class.h class.c (mono_class_needs_cctor_run): Moved this method
25390         here from the JIT.
25391
25392         * assembly.h assembly.c: Moved the AOT loading code into an assembly
25393         load hook.
25394
25395 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
25396
25397         * reflection.h reflection.c class.h class.c: Delete duplicate 
25398         definition of mono_type_get_name () from reflection.c and export the
25399         one in class.c.
25400
25401         * class.c: Class loading fixes from Bernie Solomon 
25402         (bernard@ugsolutions.com).
25403
25404         * reflection.c: Endianness fixes from Bernie Solomon 
25405         (bernard@ugsolutions.com).
25406         
25407 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
25408
25409         * assembly.h assembly.c: Define a file format version for AOT
25410         libraries.
25411         
25412         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
25413
25414         * appdomain.h (MonoJitInfo): New field to determine whenever the
25415         code is domain neutral.
25416         
25417 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
25418
25419         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
25420
25421 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
25422
25423         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
25424         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
25425         Avoid caching the result since strings must be domain specific. Fixes
25426         #48050.
25427
25428 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
25429
25430         * marshal.c (mono_marshal_init): Make this callable multiple times
25431         since it is hard to find a correct place to call it.
25432
25433         * object.c (mono_runtime_class_init): Execute static constructors in
25434         the correct appdomain.
25435
25436         * image.c (build_guid_table): Handle the case when multiple images have
25437         the same GUID.
25438
25439 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25440
25441         * icall.c: added a couple of icalls for System.Web.
25442
25443 2003-08-28  Martin Baulig  <martin@ximian.com>
25444
25445         * icall.c (ves_icall_Type_BindGenericParameters): Use
25446         `klass->generic_inst' instead of `&klass->byval_arg' in the
25447         mono_type_get_object() call.  The returned type must be
25448         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
25449
25450 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
25451
25452         * NOTES: New file.
25453
25454         * object.c (mono_class_proxy_vtable): Make it thread safe.
25455
25456         * pedump.c: Fix warning.
25457
25458         * object.c appdomain.h: Get rid of metadata_section. 
25459         It is no longer needed and it was causing deadlocks with domain->lock.
25460
25461         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
25462
25463 2003-08-26  Martin Baulig  <martin@ximian.com>
25464
25465         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
25466
25467 2003-08-26  Martin Baulig  <martin@ximian.com>
25468
25469         * pedump.c (main): Call mono_metadata_init(),
25470         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
25471         and mono_loader_init().
25472
25473 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
25474
25475         * loader.h: Add missing include to fix build.
25476
25477         * image.h: mono_image_load_references is no more.
25478
25479         * assembly.c: Reworked assembly loading to make it really thread safe.
25480         After these changes, the assembly returned by mono_assembly_open is
25481         fully initialized, i.e. all its references assemblies are loaded.
25482
25483         * assembly.c (mono_image_load_references): Renamed to 
25484         mono_assembly_load_references, and made private, since clients no
25485         longer need to call it.
25486
25487         * class.c: Removed calls to mono_assembly_load_references, since it was
25488         a source of deadlocks.
25489
25490         * loader.h loader.c class.h class.c: Protect data structures using a 
25491         new lock, the loader lock.
25492
25493         * class.c (mono_class_setup_vtable): Create temporary hash tables and
25494         GPtrArrays only when needed.
25495
25496         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
25497         into empty structures by mcs. Fixes pinvoke7.cs.
25498         
25499         * domain.c (mono_init): Call a new initialization function.
25500
25501         * appdomain.c (mono_runtime_init): Call the new initializer function
25502         of the marshal module.
25503
25504         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
25505         inserted into empty structures by mcs. Fixes pinvoke7.cs.
25506
25507         * marshal.h marshal.c: Added locks around the wrapper caches to make
25508         this module thread safe.
25509
25510         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
25511         this argument. Fixes pinvoke1.exe.
25512
25513 2003-08-25  Lluis Sanchez <lluis@ximian.com>
25514
25515         * object.h: Added call_type field to MonoMethodMessage and the corresponding
25516         enumeration of values. Removed fields to store remote call output values in
25517         MonoAsyncResult. Not needed any more.
25518         * object.c: Initialize call_type and async_result fields in mono_message_init.
25519         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
25520         dispatching the message.
25521         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
25522         async call to finish. To do it use a message with EndInvoke call type.
25523
25524 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
25525
25526         * loader.h loader.c (mono_method_hash_marhal_info): New function which
25527         determines whenever a method has marshalling info.
25528
25529 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25530
25531         * assembly.c: fix the build on windows.
25532
25533 2003-08-22 Lluis Sanchez <lluis@ximian.com>
25534
25535         * object.cs: Fixed bug #47785.
25536
25537 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
25538
25539         * string-icalls.c (StringReplace): If their are no occurances of
25540         the old string found return a reference to the supplied
25541         string. This saves some memory and matches MS behavoir.
25542         
25543 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25544
25545         * socket-io.c: fixed compilation for systems that define AF_INET6
25546         and don't define SOL_IP/SOL_IPV6.
25547
25548 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
25549
25550         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
25551         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
25552
25553         * rawbuffer.c rawbuffer.h: Make this module thread safe.
25554
25555         * domain.c: Make this module thread safe.
25556
25557         * domain.c (mono_init): Call new initialization function.
25558
25559         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
25560         reference types too. Fixes #38812.
25561
25562         * image.c (mono_image_init): Fixed warnings.
25563
25564         * class.c (mono_class_from_typeref): Handle assembly load failure
25565         correctly.
25566
25567         * appdomain.c (add_assemblies_to_domain): Handle the case when
25568         the references of an assembly are not yet loaded.
25569
25570         * metadata.c image.c assembly.c: Moved initialization of global
25571         variables to a separate function called at startup since lazy 
25572         initialization of these variables is not thread safe.
25573         
25574         * image.c assembly.c: Made this module thread safe by adding locks in 
25575         the appropriate places.
25576
25577         * domain.c (mono_init): Call the new initialization functions of the
25578         three modules.
25579
25580 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
25581
25582         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
25583           make a direct call. It is proxy's work to make the call asynchronous.
25584           mono_delegate_end_invoke(): If the targe is a proxy, just collect
25585           the return values.
25586         * object.cs: mono_method_call_message_new(): read AsyncResult and
25587           state object from parameters list, if this info is requested.
25588         * object.h: Added fields to store remote call output values in
25589           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
25590
25591 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25592
25593         * object.h: add needed fields to MonoThread.
25594         * threads.c, threads.h: allow registering a function to cleanup data
25595         allocated per thread by the JIT.
25596
25597 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25598
25599         * loader.h: portability fix by Bernie Solomon
25600         * <bernard@ugsolutions.com>.
25601
25602 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
25603
25604         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
25605         return a MonoArray. This simplifies the code and also ensures that
25606         the cache allways contains an object reference as a value.
25607
25608         * icall.c (ves_icall_get_parameter_info): Simplified using the new
25609         function.
25610
25611 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25612
25613         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
25614         fixes a problem with byte ordering when getting the address family for
25615         a socket.
25616
25617 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
25618
25619         * .cvsignore: Added monosn.
25620
25621         * reflection.h reflection.c loader.c: Added support for parameter
25622         marshalling to dynamically created types. Fixes #47295.
25623
25624 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
25625
25626         * rand.c: remove useless warnings.
25627
25628 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25629
25630         * class.c: implemented ldtoken for methods and fieldrefs.
25631
25632 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25633
25634         * threadpool.c: when mono_async_invoke was called, no one took care of
25635         monitoring the queue. So if the method invoked took some time and we
25636         got new async invoke requests after 500 ms (the thread created waited
25637         that long in WaitForSingleObject), the new async invoke was not called
25638         until the previous one finished.
25639
25640         This is fixed now. Thanks to Totte for helping with it.
25641
25642 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25643
25644         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
25645
25646 2003-08-11  Martin Baulig  <martin@ximian.com>
25647
25648         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
25649
25650 2003-08-06  Martin Baulig  <martin@ximian.com>
25651
25652         * mono-debug-debugger.c: Added support for static fields,
25653         properties and methods.
25654
25655 2003-08-06  Martin Baulig  <martin@ximian.com>
25656
25657         * mono-debug-debugger.c: Don't store the MonoString's vtable to
25658         make this work for applications with multiple application domains.
25659
25660 2003-08-04  Martin Baulig  <martin@ximian.com>
25661
25662         * mono-debug-debugger.c: Completely reworked the type support; the
25663         most important thing is that we're now just using one single
25664         `MonoType' instance per type.
25665
25666 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
25667
25668         * mono-endian.h, mono-endian.c, icall.c: Added icall
25669         ves_icall_System_Double_AssertEndianity to assert double word endianity
25670         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
25671
25672 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25673
25674         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
25675         support, icalls and fixes.
25676
25677 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
25678
25679         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
25680         classes that are a punctuation character in .NET is not the same a
25681         g_unichar_ispunct.
25682
25683 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25684
25685         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
25686
25687 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
25688
25689         * icall.c: Add new MemCopy internalcall.
25690         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
25691         Simplified code; It is not necessary to handle all the cases here,
25692         as the C# code takes care of it.  Only handle the case of the name
25693         resource embedded into the assembly.
25694
25695         Changed signature to return the data pointer and the size of the
25696         data. 
25697
25698 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
25699
25700         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
25701         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
25702
25703 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
25704
25705         * socket-io.c: ignore EINTR error in select.
25706
25707 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
25708
25709         * class.h, class.c: removed unused subclasses field in MonoClass.
25710
25711 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
25712
25713         * icall.c: improve fix of get_base_definition(). If the parent class
25714           doesn't have the mehod, look at the parent of the parent.
25715         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
25716           to check if a parameter is an in or out parameter
25717           (PARAM_ATTRIBUTE_IN is not set by default).
25718           mono_method_return_message_restore(): Use mono_class_value_size to
25719           get the size of a value type. mono_type_stack_size (parameterType)
25720           does not return the correct value if parameterType is byRef.
25721           mono_load_remote_field(), mono_load_remote_field_new(),
25722           mono_store_remote_field(), mono_store_remote_field_new():
25723           raise exception if the remote call returns an exception.
25724
25725 2003-07-28  Martin Baulig  <martin@ximian.com>
25726
25727         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
25728         method.  This is a wrapper around mono_runtime_invoke() which
25729         boxes the instance object if neccessary.
25730
25731 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25732
25733         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
25734         metadata.h, row-indexes.h, verify.c: first cut of generics support.
25735
25736 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25737
25738         * icall.c: disable mcs bug workaround.
25739
25740 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
25741
25742         * object.c (mono_runtime_class_init): Take the metadata_section
25743         mutex before obtaining the domain mutex.
25744
25745         * appdomain.h: Added definition of metadata_section mutex here. 
25746
25747         * object.c: define metadata_mutex here.
25748
25749 2003-07-24  Ravi Pratap  <ravi@ximian.com>
25750
25751         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
25752         fixed.
25753
25754 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
25755
25756         * reflection.c: Fix bug #46669
25757
25758 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25759
25760         * exception.c:
25761         * exception.h:
25762         * icall.c:
25763         * object.h: fill in the type name for TypeLoadException.
25764
25765 2003-07-23  Ravi Pratap  <ravi@ximian.com>
25766
25767         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
25768         relationship between TypeBuilders while compiling corlib) and bug
25769         45993 (Array types returned from the runtime while compiling
25770         corlib were from the loaded corlib).
25771
25772 2003-07-22  Martin Baulig  <martin@ximian.com>
25773
25774         * mono-debug-debugger.c: Reworked the type support a bit more;
25775         distinguish between types and classes.
25776
25777 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
25778
25779         * icall.c: add IsArrayImpl icall.
25780
25781 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
25782
25783         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
25784         initializing real_size only once. Also fix bug #46602.
25785
25786 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
25787
25788         * object.c: Renamed mono_metadata_section to metadata_section.
25789
25790 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
25791
25792         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
25793           empty array if the type is an array. Fixed.
25794           ves_icall_MonoMethod_get_base_definition: if the base method
25795           is abstract, get the MethodInfo from the list of methods of
25796           the class.
25797         * reflection.c: ParameterInfo.PositionImpl should be zero-based
25798           and it was 1-based. Fixed in mono_param_get_objects.
25799
25800 2003-07-20  Martin Baulig  <martin@ximian.com>
25801
25802         * mono-debug.h: Set version number to 31.
25803         (mono_debug_init): Added `MonoDomain *' argument.
25804
25805         * mono-debug-debugger.c: Reworked the type support; explicitly
25806         tell the debugger about builtin types; pass the `klass' address to
25807         the debugger.
25808
25809 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
25810
25811         * image.c: Allow new metadata tables to be loaded without a
25812         warning. Also update the warning message to give the new constant value.
25813                 
25814 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25815
25816         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
25817         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
25818         array type representation changes.
25819
25820 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25821
25822         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
25823         on Environment.Exit () call.
25824
25825 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25826
25827         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
25828         requires a matching corlib.
25829
25830 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
25831
25832         * Changelog: My editor decided to add a CR to each line. Sorry about that.
25833           Committed again without the CRs.
25834         
25835 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
25836
25837         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
25838           getting it from the "this" socket instance. Did not work
25839           if the socket is a subclass of Socket.
25840           Also fixed bug #35371.
25841
25842 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25843
25844         * metadata.c: fixed size for TypedByRef.
25845         * loader.c: when searching for a method, consider the vararg amrker.
25846         * unicode.c, decimal.c: constify some arrays.
25847
25848 2003-07-15  Dick Porter  <dick@ximian.com>
25849
25850         * socket-io.c: Fixed compilation for gcc < 3.2.
25851
25852         Fixed compilation for machines that don't have AF_INET6 (thanks to
25853         Bernie Solomon <bernard@ugsolutions.com> for that part.)
25854
25855         Fixed compile warnings.
25856         
25857         Fixed formatting and line endings.
25858
25859 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
25860
25861         * socket-io.h:
25862         * socket-io.c: Added IPv6 support.
25863
25864 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
25865
25866         * class.c (mono_class_is_assignable_from): New function to implement
25867         the is_assignable_from logic. Used by mono_object_isinst, 
25868         Type::IsAssignableFrom () and the interpreter.
25869
25870         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
25871         Object, even interfaces.
25872         
25873         * object.c (mono_object_isinst): Implement in terms of 
25874         is_assignable_from.
25875
25876         * icall.c (ves_icall_type_is_assignable_from): New icall.
25877
25878 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
25879
25880         * domain.c (foreach_domain): fix compiler warning.
25881
25882 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
25883
25884         * image.c (load_metadata_ptrs): use g_strndup because strndup is
25885         not available on all plattforms
25886
25887 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
25888
25889         * image.h image.c: Store the metadata version string in MonoImage.
25890         * icall.c: New icall to retrieve the image version.
25891         * reflection.c (create_dynamic_image): Fill in the image version field
25892         * reflection.c (build_compressed_metadata): Use the image version
25893         from the image structure.
25894
25895 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25896
25897         * appdomain.c: modified comment.
25898         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
25899         That will be its last iteration when mono_gc_cleanup is called from
25900         mono_runtime_cleanup and before the domain is unloaded.
25901
25902         Fixes bug #45962.
25903
25904 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
25905
25906         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
25907         attributes.
25908
25909 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25910
25911         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
25912         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
25913         Bernie Solomon <bernard@ugsolutions.com>.
25914
25915 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25916
25917         * object.c, object.h: provide mono_object_new_fast() for faster
25918         allocation in some special cases.
25919
25920 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25921
25922         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
25923         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
25924
25925 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
25926
25927         * threadpool.c: fix leaks.
25928
25929 2003-07-01  Dick Porter  <dick@ximian.com>
25930
25931         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
25932         using MonoGHashTables.  Fixes threadpool bug posted to list.
25933
25934 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
25935
25936         * image.h, image.c: added support to load an assembly from a byte array.
25937         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
25938         assembly bundle support.
25939
25940 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
25941
25942         * threadpool.c (mono_thread_pool_add): keep a reference to the
25943         AsyncResult to prevent GC
25944
25945 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
25946
25947         * class.c: leak fix.
25948
25949 2003-06-25  Dick Porter  <dick@ximian.com>
25950
25951         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
25952         for the async object, the WaitHandle object will close the handle.
25953         Fixes bug 45321.
25954
25955 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
25956
25957         * class.c: in mono_array_class_get (), lookup from the hash with the
25958         same type we insert: this works around a bug in
25959         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
25960         lluis. The real fix will have to wait for after the release.
25961
25962 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25963
25964         * icall.c: fix memory leak when getting type members.
25965
25966 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
25967
25968         * reflection.c: added more pubtoken special cases.
25969
25970 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
25971
25972         * class.c: handle field offset correctly when class size
25973         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
25974
25975 2003-06-20  Martin Baulig  <martin@ximian.com>
25976
25977         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
25978         *image' field.
25979
25980 2003-06-20  Martin Baulig  <martin@ximian.com>
25981
25982         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
25983
25984 2003-06-20  Martin Baulig  <martin@ximian.com>
25985
25986         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
25987         just distinguish between variables in registers and variables at
25988         an offset relative to a register.
25989
25990 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25991
25992         * icall.c: #ifdef out latest changes until mcs is fixed.
25993
25994 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25995
25996         * icall.c: return members in metadata order.
25997
25998 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25999
26000         * icall.c: avoid infinite loop in GetTimeZoneData.
26001
26002 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
26003
26004         * icall.c: added Marshal.Prelink/All icalls.
26005
26006 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
26007
26008         * object.c, object.h: fix warnings and do some overflow checking
26009         when creating arrays.
26010
26011 2003-06-17  Dick Porter  <dick@ximian.com>
26012
26013         * file-io.h:
26014         * file-io.c: File attributes need to be tweaked slightly when
26015         passed from the managed to the w32 world.
26016
26017 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
26018         * profiler.h profiler-private.h profiler.c: Rework last patch
26019         based on suggestion by Paolo.
26020         
26021 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
26022
26023         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
26024         instruction level coverage data collection.
26025         * profiler.h profiler.c (: Added new callback function which can be
26026         used by the profiler to limit which functions should have coverage
26027         instrumentation.
26028         * profiler.c (mono_profiler_load): Call g_module_build_path to
26029         generate the file name of the profiler library.
26030
26031 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
26032
26033         * profiler.c, profiler.h, profiler-private.h: added basic block 
26034         coverage profiling API.
26035
26036 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
26037
26038         * reflection.c (mono_reflection_create_runtime_class): Add support
26039         for events in dynamically generated code.
26040
26041         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
26042         not allocated.
26043
26044 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
26045
26046         * icall.c: when getting timezone info, return reasonable values if we
26047         can't get the actual data.
26048
26049 2003-06-14  Dick Porter  <dick@ximian.com>
26050
26051         * threads.c (start_wrapper): Remove the reference to the thread
26052         object in the TLS data, so the thread object can be finalized.
26053         This won't be reached if the thread threw an uncaught exception,
26054         so those thread handles will stay referenced :-( (This is due to
26055         missing support for scanning thread-specific data in the Boehm GC
26056         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
26057
26058 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
26059
26060         * reflection.c: ensure streams and tables are first allocated with
26061         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
26062
26063 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
26064
26065         * icall.c: fixed GetElementType for byrefs (bug# 44792).
26066
26067 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
26068
26069         * reflection.c (mono_reflection_create_runtime_class): Add support for
26070         properties to dynamically created classes.
26071         * reflection.c: Fix a few places where non-MonoObjects were inserted
26072         into the tokens hashtable.
26073
26074 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
26075
26076         * object.c: some support to handle out of memory exceptions.
26077
26078 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
26079
26080         * marshal.c (mono_marshal_get_native_wrapper): support reference
26081         return types
26082
26083 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
26084
26085         * object.h, object.c: more portability stuff from Bernie Solomon.
26086         Unexport mono_object_allocate(). Added mono_object_unbox ().
26087         Set exitcode when an unhandled exception is thrown.
26088
26089 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
26090
26091         * marshal.c (mono_marshal_get_native_wrapper): use custom
26092         marshaler for return types.
26093
26094 2003-06-10  Dick Porter  <dick@ximian.com>
26095
26096         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
26097         ip_mreq is available
26098
26099 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
26100
26101         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
26102         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
26103         by Bernie Solomon <bernard@ugsolutions.com>.
26104
26105 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
26106
26107         * gc.c (mono_gc_init): Avoid error message on shutdown when
26108         GC_DONT_GC=1 is used.
26109
26110         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
26111         New icall to return the GUID of a module.
26112
26113 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
26114
26115         * class.c: ensure instance size always includes the parent's size
26116         even whem class size is set explicitly (fixes bug#44294).
26117
26118 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
26119
26120         * profiler.h, profiler.c: made the simple profiler thread-safe,
26121         get more accurate timing info. Allow the loading of an
26122         externally-developed profiler module.
26123
26124 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
26125
26126         * marshal.c (mono_marshal_get_native_wrapper): improved
26127         class/byref arguments.
26128         (mono_marshal_get_native_wrapper): better string marshaling support.
26129
26130 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
26131
26132         * class.c: ensure .pack and .size are handled correctly and
26133         simplified layout of static fields.
26134
26135 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
26136
26137         * appdomain.c
26138         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
26139
26140         * loader.c (mono_lookup_pinvoke_call): look for modules in the
26141         current directory (fix bug 44008)
26142
26143 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
26144
26145         * marshal.c (mono_marshal_get_native_wrapper): started support for
26146         custom marshalers.
26147         (mono_delegate_to_ftnptr): consider marshalling specifications
26148
26149 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
26150
26151         * reflection.c, reflection.h: emit custom marshal info.
26152
26153 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26154
26155         * object.c: free the GError.
26156         * icall.c: added CloseEvent_internal.
26157         * threads.[ch]:
26158         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
26159         call.
26160
26161 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
26162
26163         * loader.c (mono_method_get_signature): Add support for dynamic
26164         assemblies.
26165
26166 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
26167
26168         * reflection.c: fixed bug #43905.
26169
26170 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
26171
26172         * class.c, domain.c, icall.c, metadata.h, object.h: support for
26173         handling TypedReference and ArgIterator.
26174         * loader.c, loader.h: added function to get signature at call site.
26175
26176 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
26177
26178         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
26179         data readonly. Buglets and warning fixes. Some MethodSpec support.
26180
26181 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
26182
26183         * class.h, class.c, object.c: remove relative numbering support.
26184
26185 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
26186
26187         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
26188         free the string, until we get a chance to fix Gtk#
26189
26190 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26191
26192         * marshal.c: revert last patch.
26193
26194 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
26195
26196         * icall.c: updates for new mono_class_vtable() not calling
26197         the type constructor anymore.
26198
26199 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
26200
26201         * object.h, object.c: separate vtable creation from type
26202         initialization. Make running the .cctor thread safe.
26203
26204 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
26205
26206         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
26207
26208 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
26209
26210         * loader.c (mono_get_method): consider calling convention
26211
26212 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
26213
26214         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
26215         to return the invisible global type for a module.
26216
26217         * reflection.c (mono_image_build_metadata): Emit global fields too.
26218
26219 2003-05-20  Peter Williams  <peterw@ximian.com>
26220
26221         * loader.c (mono_lookup_internal_call): Add a few newlines.
26222
26223 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
26224
26225         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
26226         literal strings.
26227
26228         * appdomain.c (set_domain_search_path): Recalculate search path when
26229         AppDomainSetup.PrivateBinPath changes.
26230
26231         * object.c (mono_class_compute_gc_descriptor): It turns out some
26232         parts of the class libs (like System.Thread) holds pointers to
26233         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
26234         to treat native int a pointer type here.
26235         
26236 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
26237
26238         * appdomain.h, domain.c: add hashtable for jump target resolution.
26239
26240 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
26241
26242         * reflection.h reflection.c icall.c: Added new icalls 
26243         GetManifestResourceInfoInternal, GetModulesInternal and support
26244         infrastructure.
26245
26246 2003-05-16  Dick Porter  <dick@ximian.com>
26247
26248         * icall.c:
26249         * file-io.h:
26250         * file-io.c: Implement System.IO.MonoIO::GetTempPath
26251
26252 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
26253
26254         * object.c: mono_store_remote_field: little fix to previous patch.
26255
26256 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
26257
26258         * class.c: add constructors to array classes.
26259         * icall.c: special case array construction for InternalInvoke (),
26260
26261 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
26262
26263         * class.h class.c reflection.c object.c: Added support for field
26264         defaults in dynamically generated classes.
26265
26266 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
26267
26268         * reflection.c: properly encode charset for ddlimport.
26269
26270 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
26271
26272         * threads.c: allow compiling without GC.
26273
26274 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
26275
26276         * appdomain.h, object.c, object.h, threads.c, threads.h: added
26277         handling of thread static data.
26278
26279 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
26280
26281         * reflection.h, reflection.c: added mono_custom_attrs_free ().
26282
26283 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
26284
26285         * class.c (mono_array_class_get): always set the serializable flags
26286         (mono_array_class_get): always set the SEALED attribute for array types
26287
26288 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
26289
26290         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
26291         attributes (fix for bug 42021).
26292
26293 2003-05-12  Dick Porter  <dick@ximian.com>
26294
26295         * gc.c: Don't run finalizers when the finalizer thread is
26296         finishing up, because the default domain has already been
26297         destroyed.
26298
26299 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
26300
26301         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
26302         value is null, we should throw an exception.   This is slightly
26303         different than the other conventions used for the constructor.
26304
26305 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26306
26307         * socket-io.c: fixed windows build.
26308
26309 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26310
26311         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
26312
26313 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
26314
26315         * object.c (mono_string_new_wrapper): Compatibility fix for MS
26316         compilers.
26317
26318 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
26319
26320         * class.c (mono_class_layout_fields): Add experimental GC aware
26321         auto layout facility. Requires class library changes to work correctly.
26322
26323         (mono_class_setup_vtable): Avoid overriding explicit interface
26324         method implementations. Fixes iface3.exe test.
26325
26326         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
26327         object reference.
26328         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
26329         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
26330
26331         * metadata.h: Add new type classification macro which determines
26332         whenever the type holds an object reference.
26333
26334 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
26335
26336         * marshal.c (mono_marshal_get_native_wrapper): cleanups
26337
26338 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
26339
26340         * gc.c (finalizer_thread): Work around a GC bug.
26341
26342 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
26343
26344         * marshal.c (emit_struct_conv): allow unions
26345
26346         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
26347
26348 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
26349
26350         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
26351
26352 2003-05-06  Martin Baulig  <martin@ximian.com>
26353
26354         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
26355
26356 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26357
26358         * socket-io.c:
26359         (Select_internal): allow NULLs, don't create arrays if not needed.
26360         Coupled with Socket.cs changes.
26361
26362         * threadpool.c:
26363         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
26364         register a finalizer for it that will close the semaphore handle. This
26365         fixes the leak and make Lupus' test run with > 4080 loops.
26366
26367 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
26368
26369         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
26370         Jerome Laban (bug #42287)
26371
26372 2003-05-02  Martin Baulig  <martin@ximian.com>
26373
26374         * debug-mono-symfile.h
26375         (MonoSymbolFile): Moved declaration into mono-debug.h.
26376         (MonoDebugMethodJitInfo): Likewise.
26377         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
26378         argument.
26379         (_mono_debug_address_from_il_offset): Take a
26380         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
26381
26382         * mono-debug.h
26383         (MonoDebugDomainData): New struct.
26384         (mono_debug_get_domain_data): New function.
26385         (mono_debug_add_method): Take an additional `MonoDomain *'
26386         argument.
26387         (mono_debug_source_location_from_address): Likewise.
26388         (mono_debug_il_offset_from_address): Likewise.
26389         (mono_debug_address_from_il_offset): Likewise.
26390
26391 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
26392
26393         * reflection.c: one more check for null type in custom attrs.
26394
26395 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26396
26397         * reflection.c: avoid warning (comparison is always false due to limited
26398         range of data type).
26399
26400 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26401
26402         * icall.c: throw an exception in Type.GetField if the argument 'name'
26403         is NULL.
26404
26405 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
26406
26407         * reflection.c: fixed handling of enums in named arguments to custom
26408         attributes (bug #42123).
26409
26410 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
26411
26412         * reflection.c: use the right array element type and handle
26413         a null for a Type argument, too.
26414
26415 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
26416
26417         * reflection.c: handle arrays as arguments to custom attributes.
26418
26419 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
26420
26421         * reflection.c: handle a string value in a custom attr
26422         ctor that takes an object.
26423
26424 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
26425
26426         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
26427         (fix bug #42063)
26428
26429 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
26430
26431         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
26432
26433 2003-04-27  Martin Baulig  <martin@ximian.com>
26434
26435         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
26436         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
26437         MONO_DEBUGGER_EVENT_BREAKPOINT.
26438         (mono_breakpoint_trampoline_code): Removed.
26439         (mono_debugger_event_handler): The last argument is now a
26440         `guint32'.
26441         (mono_debugger_insert_breakpoint_full): Removed the
26442         `use_trampoline' argument.
26443         (mono_debugger_method_has_breakpoint): Likewise.
26444         (mono_debugger_trampoline_breakpoint_callback): Renamed to
26445         mono_debugger_breakpoint_callback(); take the method and
26446         breakpoint number as arguments.
26447
26448 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
26449
26450         * metadata.c: fix off by one when loading parameters attributes.
26451
26452 2003-04-24  Martin Baulig  <martin@ximian.com>
26453
26454         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
26455
26456 2003-04-24  Martin Baulig  <martin@ximian.com>
26457
26458         * mono-debug-debugger.c: Moved all code which interacts with the
26459         Mono Debugger here.
26460
26461         * debug-mono-symfile.c: This code now just deals with the symbol
26462         file itself, the debugger code is now in mono-debug-debugger.c.
26463
26464 2003-04-23  Martin Baulig  <martin@ximian.com>
26465
26466         * mono-debug.c (mono_debug_source_location_from_il_offset):
26467         New method; like mono_debug_source_location_from_address(), but
26468         takes an IL offset instead of a machine address.
26469
26470 2003-04-23  Martin Baulig  <martin@ximian.com>
26471
26472         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
26473         `line' field; this is now computed by the debugger.
26474
26475 2003-04-23  Martin Baulig  <martin@ximian.com>
26476
26477         * mono-debug.[ch]: New files.  This is the new debugging interface.
26478
26479         * mono-debug-debugger.[ch]: New files.  Moved all code which
26480         interacts with the Mono Debugger here.
26481
26482 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
26483
26484         * domain.c (mono_init): initialize mono_defaults.monitor_class
26485
26486 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
26487
26488         * reflection.c (method_encode_code): Add a spicy exception to help
26489         future compiler authors.
26490
26491 2003-04-21  Martin Baulig  <martin@ximian.com>
26492
26493         * icall.c
26494         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26495         Make this work with relative pathnames; g_filename_to_uri() needs
26496         an absolute filename.
26497
26498 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
26499
26500         * icall.c: Track name changes in Object and ValueType.
26501
26502 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
26503
26504         * metadata.c (mono_type_stack_size): size should be a multiple of
26505         sizeof (gpointer)
26506
26507 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26508
26509         * gc.c:
26510         (internal_domain_finalize): moved into mono_domain_finalize. No need
26511         to create another thread because the finalizers will be run in the
26512         finalizer thread.
26513         
26514         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
26515         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
26516         to be run (MS does this too).
26517
26518 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
26519
26520         * object.c (mono_class_compute_gc_descriptor): Update comment.
26521
26522         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
26523
26524         * image.h: Add synchronized wrapper cache.
26525
26526         * image.c (do_mono_image_open): Initialize cache.
26527
26528         * reflection.c (create_dynamic_mono_image): Initialize cache.
26529
26530 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26531
26532         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
26533         ves_icall_System_Buffer_ByteLengthInternal.
26534
26535 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
26536
26537         * reflection.c: setup klass->nested_in earlier. Allow
26538         a dash in the assembly name.
26539
26540 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
26541
26542         * metadata.c (mono_type_to_unmanaged): dont access
26543         type->data.klass for MONO_TYPE_OBJECT
26544         (mono_type_to_unmanaged): consider System.Delegate class
26545
26546 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
26547
26548         * class.c: just setup supertypes in the proper place instead of
26549         initializing the full element class for arrays.
26550
26551 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
26552
26553         * class.c: ensure the element class of arrays is initialized.
26554         Setup the supertype info for array classes, too.
26555
26556 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
26557
26558         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
26559
26560 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26561
26562         * Makefile.am: re-added -m option when running cygpath. This way,
26563         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
26564         separator.
26565         * mono-config.c: same codepath for locating mono config file for WIN32
26566         and the rest.
26567         * assembly.c: if mono_assembly_setrootdir is called, don't override
26568         the value set.
26569
26570 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26571
26572         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
26573         MONO_ASSEMBLIES variable.
26574
26575 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
26576
26577         * icall.c: added Assembly::GetNamespaces() icall.
26578
26579 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26580
26581         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
26582
26583 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
26584
26585         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
26586         * object.c: fixed bug in the construction of vtable for proxies
26587
26588 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
26589
26590         * object.c (mono_array_new): Mark mono_array_new as an icall.
26591
26592 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26593
26594         * class.c: fixed test for public method when overriding interfaces.
26595         Closes bug #40970.
26596
26597 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
26598
26599         * appdomain.h, domain.c: added mono_domain_foreach() to
26600         be able to access the currently loaded appdomains.
26601         * object.c: make string interning work across sppdomains.
26602         Mark some functions for use as icalls.
26603
26604 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
26605
26606         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
26607
26608         * reflection.h reflection.c: Allocate long living data using 
26609         GC_MALLOC_ATOMIC so the collector does not need to scan it.
26610
26611         * reflection.c: Double the allocation size in streams instead of
26612         increasing it, to prevent unneccesary copying on large assemblies.
26613         
26614         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
26615         creation if the assembly does not have the Run flag set.
26616
26617 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
26618
26619         * class.h: avoid the C++ keywords in header files (Jerome Laban
26620         spotted and fixed this).
26621
26622 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26623
26624         * object.c:
26625         (mono_unhandled_exception): fill in the arguments for the
26626         UnhandledException event. Only trigger that event for the default
26627         domain (as MS does).
26628
26629 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
26630
26631         * object.c: Improve typed allocation stuff based on suggestions from
26632         Paolo. Also turn it on if the GC library supports it.
26633
26634 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
26635
26636         * object.c object.h class.h: Added experimental typed allocation
26637         facility using the interfaces in gc_gcj.h.
26638
26639         * os/gc_wrapper.h: Added new include files.
26640         
26641 2003-04-03  Martin Baulig  <martin@ximian.com>
26642
26643         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
26644         which is not yet enabled by default.
26645
26646         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
26647         functions.
26648         (mono_gc_lock, mono_gc_unlock): New static functions.
26649
26650         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
26651         functions; stop/start the world for the garbage collector.  This
26652         is using the windows API; we need to complete the SuspendThread()/
26653         ResumeThread() implementation in the io-layer to make this work on Unix.
26654         (mono_gc_push_all_stacks): New public function; tells the garbage
26655         collector about the stack pointers from all managed threads.
26656
26657 2003-04-03  Martin Baulig  <martin@ximian.com>
26658
26659         * object.h (MonoThread): Added `gpointer stack_ptr'.
26660
26661         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
26662
26663 2003-04-03  Martin Baulig  <martin@ximian.com>
26664
26665         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
26666
26667 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
26668
26669         * reflection.c (typebuilder_setup_fields): Initialize field.first and
26670         field.last.
26671
26672 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
26673
26674         * loader.c (mono_lookup_internal_call): Report the corlib that is
26675         out of sync.
26676
26677 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
26678
26679         * icall.c (ves_icall_type_GetTypeCode): fixed check for
26680         System.DBNull (it's class not valuetype).
26681
26682 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
26683
26684         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
26685         if the array method was already assigned a token (fixes bug#40646).
26686
26687 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
26688
26689         * reflection.c (mono_reflection_get_type): Attempt type resolve even
26690         if no assembly is given.
26691
26692 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
26693
26694         * metadata.h: Added the new tables.
26695
26696         * row-indexes.h: Added definitions for new tables.
26697
26698         * metadata.c: Add schemas for new tables, and add support for
26699         computing the sizes of them.
26700
26701         * class.c: Update for handling the new type cases.
26702
26703 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
26704
26705         * metadata.h (MONO_TYPE_IS_VOID): new macro
26706
26707 2003-03-31  Martin Baulig  <martin@ximian.com>
26708
26709         * threads.h (MonoThreadCallbacks): Added `thread_created'.
26710
26711         * threads.c (mono_thread_new_init): Call `thread_created' in the
26712         mono_thread_callbacks.
26713
26714 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
26715
26716         * loader.h: added marshalbyrefobject_class to mono_defaults
26717         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
26718         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
26719           generation of output parameters.
26720           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
26721         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
26722           contextbound and the target object belongs to the context of the caller.
26723         * object.h: added context and unwrapped_server variables in MonoRealProxy.
26724         * object.c: Implemented support for interfaces and abstract classes
26725           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
26726           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
26727
26728 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
26729
26730         * class.h class.c (mono_class_is_subclass_of): New function.
26731         
26732         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
26733         routines for most common case (calls from ArrayList::ToArray).
26734
26735         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
26736         routine so programs which call Environment::Exit() can be profiled.
26737
26738         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
26739         Added MONO_ARCH_SAVE_REGS.
26740
26741         * icall.c (ves_icall_type_is_subtype_of): Use new function.
26742
26743 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
26744
26745         * blob.h: Add a couple of new MonoType types definitions.
26746
26747         * tabledefs.h: Add a couple of new call convs.
26748
26749 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
26750
26751         * reflection.h (MonoReflectionDynamicAssembly): track changes in
26752         the layout of the class.
26753
26754         * reflection.c (alloc_table): double the size on overflow to avoid
26755         unnecessary copying.
26756
26757         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
26758         avoid filling out metadata tables and blobs. Also set mb->ilgen to
26759         null so it can be garbage collected.
26760         
26761 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
26762
26763         * reflection.c (mono_reflection_get_type): Return the resolved type
26764         only if it is in the assembly we searched.
26765
26766         * reflection.c (ensure_runtime_vtable): Initialize method slots.
26767
26768         * class.c (mono_class_setup_vtable): Set the slot of the overriding
26769         method.
26770
26771 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26772
26773         * appdomain.c:
26774         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
26775         the right one is 'file:///blah', but MS allows it.
26776         * assembly.c:
26777         (mono_assembly_open): allow 'file://blah'
26778
26779         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
26780
26781 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
26782
26783         * socket-io.c: fixes bug #40310.
26784
26785 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
26786
26787         * reflection.c (mono_reflection_parse_type): handle deeply nested
26788         types correctly.
26789
26790         * reflection.c (mono_image_create_token): Use unique token values
26791         since they will be put into a hash table.
26792
26793         * class.c (mono_class_setup_vtable): If a method occurs in more than
26794         one place in the vtable, and it gets overriden, then change the
26795         other occurances too.
26796
26797         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
26798         object as return type.
26799
26800 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26801
26802         * icall.c: Deleted "ToString" implementation for double and float
26803         because they are full implemented in managed code.
26804
26805 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
26806
26807         * reflection.c, reflection.h: implemented and exported functions
26808         to retrieve info about custom attributes.
26809
26810 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26811
26812         * appdomain.c: moved Uri handling to assembly.c
26813         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
26814         work when using a file Uri in *nix and windows.
26815
26816         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
26817         GetReferencedAssemblies.
26818
26819 2003-03-18  Dick Porter  <dick@ximian.com>
26820
26821         * icall.c: Rename a couple of internal calls
26822
26823         * threads.c: Set the thread state to Stopped when a thread exits.
26824         Fixes bug 39377.
26825
26826 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
26827
26828         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
26829         New icall.
26830
26831         * object.c (mono_class_vtable): fix warning.
26832
26833 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
26834
26835         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
26836
26837         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
26838         memory.
26839         (method_encode_clauses): Create exception info structures in the right
26840         order.
26841         (mono_reflection_setup_internal_class): Initialize supertypes field.
26842
26843         * class.c object.c: Handle interfaces which implement other interfaces 
26844         correctly.
26845
26846         * class.h class.c: Move the supertypes array initialization code into 
26847         a separate function so it can be used for dynamic types too. Also call
26848         it earlier, in mono_class_init(), since it can be used before the
26849         type is initialized.
26850
26851 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26852
26853         * Makefile.am:
26854         * assembly.c:
26855         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
26856
26857         * appdomain.c:
26858         * appdomain.h:
26859         * marshal.c:
26860         * object.c: remove warnings.
26861
26862 2003-03-13  Martin Baulig  <martin@ximian.com>
26863
26864         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
26865         (MonoDebugLexicalBlockEntry): New types.
26866
26867         * debug-mono-symfile.c
26868         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
26869
26870 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26871
26872         * process.c: ret can be any non-zero value accroding to MS doc.
26873
26874 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
26875
26876         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
26877         fixing a warning for a miss-used prototype, would have cause
26878         random memory corruption.
26879
26880 2003-03-07  Martin Baulig  <martin@ximian.com>
26881
26882         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
26883         getting really annoying ....
26884
26885 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
26886
26887         * reflection.c (fixup_method): added support for array methods.
26888
26889 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
26890
26891         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
26892         (pointed out by Michael Adams).
26893
26894 2003-03-04  Dick Porter  <dick@ximian.com>
26895
26896         * icall.c: Temporarily reverted the Double and Single ToString()
26897         change, because it broke nunit.
26898
26899 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
26900
26901         * object.h, threads.h: make include files compatible with C++
26902         (patch by Jerome Laban <jlaban@wanadoo.fr>).
26903
26904 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26905
26906         * icall.c: Erased ToString helper functions for Double and Single.
26907         Now, that implementations ar all in managed code (Double and Single
26908         Formatters).
26909
26910 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
26911
26912         * appdomain.c: Added method for initializing the default context of
26913         a domain. Added internal call for getting the default context.
26914         * appdomain.h: Added context variable in MonoDomain struct.
26915         * domain.c: mono_domain_set also sets the default context of the domain
26916         * icall.c: Mapped internal method InternalGetDefaultContext.
26917         * object.c: mono_object_get_virtual_method returns always a remoting
26918         wrapper if the object is a transparent proxy.
26919         mono_runtime_invoke_array: when creating an object by calling the
26920         constructor, if the created object is a proxy, then the constructor should
26921         be called using the a remoting wrapper.
26922
26923 2003-03-03  Dick Porter  <dick@ximian.com>
26924
26925         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
26926         variable so it compiles on solaris.  Problem spotted by
26927         Christopher Taylor <ct@cs.clemson.edu>
26928
26929 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26930
26931         * appdomain.c:
26932         (get_info_from_assembly_name): don't leak value.
26933
26934         * icall.c:
26935         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
26936         result.
26937
26938 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
26939
26940         * assembly.c: export mono_image_load_references ().
26941         * class.c: handle function pointers. mono_class_from_name() now
26942         supports nested type names directly.
26943
26944 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
26945
26946         * reflection.h reflection.c: Encode already created dynamic methods 
26947         and fields correctly as a DEF instead of a REF.
26948
26949         * reflection.c: Get rid of the force_ref argument to 
26950         mono_image_typedef_or_ref since it was wrong in the first place.
26951
26952         * string-icalls.c: add error checking to string constructors according
26953         to the MSDN docs.
26954
26955         * reflection.c: Emit types in the order their TypeBuilders were 
26956         created. Previously, a new table index was assigned to each type before
26957         the tables were emitted. This was wrong because the signature blob
26958         might already refer to a type by its original table index.
26959
26960 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
26961
26962         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
26963         change.
26964         
26965 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26966
26967         * Makefile.am: make assemblies dir have \ instead of / on windows.
26968
26969 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
26970
26971         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
26972         iterate over the NESTEDCLASS table using a linear search since the
26973         table is not guaranteed to be sorted by the secondary key.
26974
26975         * class.c (mono_class_create_from_typedef): fixed up call to
26976         mono_metadata_nesting_typedef.
26977         
26978 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
26979
26980         * marshal.c (mono_string_to_byvalstr): clear the memory as
26981         suggested by Jerome Laban <jlaban@wanadoo.fr>
26982
26983 2003-02-26  Dick Porter  <dick@ximian.com>
26984
26985         * process.c: Cope with padding in .rsrc blocks
26986
26987 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
26988
26989         * metadata.h: reverted the filter_len change, it breaks reflection
26990         
26991 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
26992
26993         * metadata.h: added a new field to store the filter_len
26994         
26995
26996 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
26997
26998         * reflection.c: handle custom attributes for types and members
26999         created with Reflection.Emit (bug#38422).
27000
27001 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
27002
27003         * reflection.c: define RTSpecialName automatically for constructors for
27004         compatibility with MS.NET.
27005
27006         * reflection.c (mono_reflection_create_runtime_class): initialize
27007         nested_in field of dynamically created classes.
27008
27009 2003-02-22  Martin Baulig  <martin@ximian.com>
27010
27011         * debug-mono-symfile.h: Incremented version number.
27012
27013 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
27014
27015         * object.h icall.c process.c: fix warnings.
27016
27017 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
27018
27019         * appdomain.h appdomain.c:
27020         (mono_domain_try_type_resolve): split the 
27021         name_or_tb argument into a name and a tb argument.
27022         (mono_domain_has_type_resolve): new function to check whenever the
27023         application has registered a TypeResolve event handler.
27024         
27025         * icall.c reflection.h reflection.c: move the type resolve logic into
27026         mono_reflection_get_type () so it will be invoked when 
27027         Assembly::GetType () is called.
27028
27029         * reflection.c:
27030         (mono_reflection_get_type): renamed to get_type_internal.
27031         (mono_reflection_get_type): fixed type name generation so it works 
27032         for nested types too.
27033         (mono_reflection_get_type): call has_type_resolve () to avoid the 
27034         costly type name generation if there is no resolve event handler.
27035
27036 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
27037
27038         * class.c, image.c: load exported types from file references.
27039
27040 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
27041
27042         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
27043           used to cache the managed methods used to create proxies and make 
27044           remote invocation of methods.
27045         * class.h: Added in MonoVTable a flag to indicate that a class needs 
27046           to be remotely created.
27047         * object.c: Modified the method mono_class_vtable(). It now initializes 
27048           the remote flag of the vtable. Modified mono_object_new_specific(), 
27049           so now it checks the remote flag.
27050         * icall.c: Added a couple of internal methods, one for enabling instance 
27051           creation interception for a type, and one for creating objects bypassing
27052           the remote check.
27053
27054 2003-02-18  Martin Baulig  <martin@ximian.com>
27055
27056         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
27057         New interncall to get a method's metadata token.
27058
27059         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
27060         New interncall for the debugger.
27061
27062 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
27063
27064         * class.c (mono_class_setup_vtable): allocate supertype array
27065
27066 2003-02-18  Martin Baulig  <martin@ximian.com>
27067
27068         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
27069
27070 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27071
27072         * reflection.c:
27073         (assembly_name_to_aname): jump over unknown properties (i've found
27074         something like: 'type, assembly, version=xxx, custom=null, public...',
27075         so now will ignore custom=null and still get the rest of the values).
27076
27077 2003-02-17  Dick Porter  <dick@ximian.com>
27078
27079         * threads.c: Have Thread.Start() wait for a semaphore to signal
27080         that the thread has set up all its local data.  This fixes bug
27081         34323, where Abort() raced the new thread's TLS data.
27082
27083         Also removes the handle_store() call from start_wrapper, because
27084         threads are now always created suspended and there is no longer a
27085         race between the parent and child threads to store the info.
27086
27087 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
27088
27089         * image.c: explain the #- heap issue in a message, hopefully
27090         avoiding FAQs on mono-list.
27091
27092 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27093
27094         * icall.c:
27095         (GetEntryAssembly): if the domain has not invoked
27096         AppDomain.ExecuteAssembly yet, return the assembly of the default
27097         AppDomain.
27098
27099 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
27100
27101         * class.c (mono_ldtoken): make it work in dynamic assemblies.
27102
27103 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
27104
27105         * metadata.c, reflection.c: simple speedup to type hash
27106         and equals code.
27107
27108 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
27109
27110         * image.c, image.h, class.c, assembly.c: move module loading
27111         to MonoImage. When loading metadata, consider alignemnet from
27112         the start of metadata, not from the metadata address in memory.
27113
27114 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
27115
27116         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
27117         AssemblyBuilder objects. Factored out custom attribute creation into
27118         a separate function.
27119         (create_custom_attr): new function to create custom attributes.
27120
27121 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
27122
27123         * Makefile.am: Got tired of typing the full pathname to pedump.
27124         Until there is another option, am installing this.
27125
27126 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
27127
27128         * class.c (class_compute_field_layout): always set field->parent 
27129         (mono_ldtoken): use mono_defaults.fieldhandle_class;
27130
27131 2003-02-11  Dick Porter  <dick@ximian.com>
27132
27133         * threads-types.h:
27134         * monitor.c: Rewrote Monitor, making lock much faster and
27135         Pulse/Wait work as specified.  Also uses much fewer handles, and only
27136         creates them as needed.
27137
27138         * exception.c: Added SynchronizationLockException
27139
27140         * threads.c: Deleted old Monitor implementation.  The new one is
27141         in a new file.
27142
27143 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
27144
27145         * class.c: handled TypedReference type code. Set the correct size for
27146         class data. Setup interface_offsets for interface classes, too.
27147
27148 2003-02-09  Martin Baulig  <martin@ximian.com>
27149
27150         * debug-mono-symfile.h: Reflect latest symbol writer changes.
27151
27152 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
27153
27154         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
27155         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
27156         * object.c: fixed mono_object_get_virtual_method () for interfaces.
27157         * verify.c: check for code that runs after the end of the method.
27158
27159 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
27160
27161         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
27162         "System.Math::Round2".
27163         * sysmath.h: Added Floor, Round and Round2 definitions.
27164         * sysmath.c: Modified certain functions that were not 100% compliant
27165         with MS.NET (math precision) and added the implementation of Floor,
27166         Round and Round2.
27167
27168 2003-02-07  Martin Baulig  <martin@ximian.com>
27169
27170         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
27171
27172 2003-02-07  Martin Baulig  <martin@ximian.com>
27173
27174         * debug-mono-symfile.c: Reflected latest symwriter changes.
27175         (mono_debug_create_mono_symbol_file): Removed.
27176         (mono_debug_open_mono_symbol_file): Take an argument which
27177         specifies whether to create a dynamic symbol file.
27178
27179 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
27180
27181         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
27182
27183 2003-02-05  Martin Baulig  <martin@ximian.com>
27184
27185         * reflection.c (mono_image_build_metadata): Make this public,
27186         protect it against being called multiple times, don't create
27187         resources and don't build the compressed metadata here.
27188         (mono_image_create_pefile): Do this here.
27189
27190         * icall.c
27191         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
27192
27193 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27194
27195         * socket-io.c: fixed bug #36322.
27196
27197 2003-02-06  Piers Haken <piersh@friskit.com>
27198
27199         * appdomain.[ch]:
27200         * class.h:
27201         * debug-mono-symfile.c:
27202         * icall.c:
27203         * loader.c:
27204         * mono-config.c:
27205         * monosn.c:
27206         * reflection.c:
27207         * socket-io.c: warning cleanups
27208
27209 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
27210
27211         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
27212         function. works like remoting invoke, but does a check for the Proxy first.
27213
27214 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
27215
27216         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
27217
27218 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
27219
27220         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
27221         array of pointers.
27222         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
27223         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
27224
27225         * object.c (mono_store_remote_field_new): used by the new jit
27226         instead of mono_store_remote_field
27227         (mono_load_remote_field_new): used by the new jit
27228         instead of mono_load_remote_field
27229
27230 2003-02-05  Patrik Torstensson
27231
27232         * appdomain.c: changed unload to take the domain id instead
27233         of domain
27234         
27235         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
27236
27237
27238 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27239
27240         * appdomain.c: don't look for assemblies in ApplicationBase if
27241         PrivateBinPathProbe is set.
27242
27243 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27244
27245         * object.c: make the first argument in main_args contain the absolute
27246         path to the assembly. Fixes bug #37511.
27247
27248 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27249
27250         * icall.c: get correct UTC offset for countries not using daylight
27251         time saving. Fixes bug #30030.
27252
27253 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27254
27255         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
27256         and 1 are the family).
27257
27258 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
27259
27260         * icall.c (ves_icall_InternalExecute): removed wrong assertion
27261
27262         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
27263
27264 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
27265
27266         * reflection.c: added support for SignatureHelper tokens, which is
27267         needed by the Calli opcode.
27268
27269         * reflection.h: track changes to SignatureHelper class.
27270
27271         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
27272
27273 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27274
27275         * appdomain.c: fixed loading assemblies from PrivateBinPath.
27276
27277 2003-02-03  Patrik Torstensson
27278         * appdomain.[c|h], domain.c : 
27279          - Added support for getting a domain via domain id
27280          - Support for setting and getting domain from System.AppDomain 
27281            (used in cross appdomain channel)
27282          - Added support for get/set for a MonoAppContext on a thread 
27283            (Context class in System.Runtime.Remoting.Contexts),
27284          - Removed hack in Get/SetData and ExecuteAssembly.
27285         
27286         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
27287         the managed world to get control when a proxy is created.
27288
27289         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
27290         
27291 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
27292
27293         * icall.c
27294         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27295         Populate the codebase field as well.
27296
27297 2003-02-02  Martin Baulig  <martin@ximian.com>
27298
27299         * debug-mono-symfile.c
27300         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
27301         (mono_debug_symfile_add_method): Allow interncalls.
27302
27303 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27304
27305         * icall.c: throw parse exception if strtod fails or the string is empty.
27306
27307 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
27308
27309         * marshal.c: handle object type separately from defined
27310         class types.
27311
27312 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
27313
27314         * marshal.c: handle NATIVE_LPSTR for strings when it's
27315         explicitly specified.
27316
27317 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
27318
27319         * reflection.c, reflection.h, icall.c: setup the reflection
27320         handle cache for ModuleBuilders and AssemblyBuilders.
27321
27322 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
27323
27324         * reflection.c (reflection_methodbuilder_to_mono_method): set
27325         pinvoke flag
27326
27327 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27328
27329         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
27330
27331 2003-01-29  Dick Porter  <dick@ximian.com>
27332
27333         * threads.c: No need for the fake_thread kludge now that Thread
27334         doesn't run a class constructor
27335         
27336 2003-01-29  Dick Porter  <dick@ximian.com>
27337
27338         * threads.c: Use g_direct_hash instead of the rather bogus
27339         g_int_hash
27340
27341 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
27342
27343         * marshal.c (mono_marshal_get_native_wrapper): add check for null
27344         (fix pinvoke12.exe)
27345         (mono_marshal_get_struct_to_ptr): generate valid IL code
27346         (mono_marshal_get_ptr_to_struct): generate valid IL code
27347         (*): correctly set sig->pinvoke, we need to memdup the signature
27348         to do that
27349
27350 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
27351
27352         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
27353         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
27354
27355 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
27356
27357         * profiler.c: provide more callers information.
27358
27359 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
27360
27361         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
27362
27363         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
27364
27365         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
27366
27367 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27368
27369         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
27370         exception instead of going into an infinite loop on dates which it 
27371         can't yet handle.
27372
27373         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
27374         out-of-range exception if needed.
27375
27376         * class.c (mono_class_setup_vtable): allow a virtual method to provide
27377         an implementation for an interface method and to override an inherited
27378         method at the same time. 
27379         Imagine a scenario when a virtual method is used to override a
27380         virtual abstract method in a parent class, and this same method 
27381         provides an implementation for an method inherited from an interface. 
27382         In this case, the interface resolution code will set im->slot, which 
27383         means that the virtual method override pass will skip this method 
27384         which means a pointer to the abstract method inherited from the parent
27385         will remain in the vtable of this non-abstract class.
27386
27387         * class.c: (mono_class_setup_vtable): continue search for a real 
27388         method if only an abstract method is found.     
27389
27390 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
27391
27392         * reflection.c: add size to encoding for ByValStr and ByValArray
27393         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
27394
27395 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27396
27397         * class.c (mono_class_setup_vtable): pass the override info as an
27398         argument.
27399
27400         * class.c (mono_class_setup_vtable): set the slot of overriding methods
27401         correctly.
27402         
27403         * reflection.c (ensure_runtime_vtable); add support for method 
27404         overrides.
27405         
27406 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27407
27408         * reflection.c (resolution_scope_from_image): Hack to work to work with
27409         dynamic assemblies.
27410
27411         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
27412         added a 'force_ref' argument to force this function to allways return 
27413         a TypeRef. This is needed by mono_image_get_memberref_token ().
27414         
27415 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27416
27417         * reflection.c (mono_image_get_type_info): interfaces really don't have
27418         a parent.
27419
27420         * reflection.c (mono_image_basic_init): fill out missing fields of
27421         image structure.
27422
27423         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
27424         dynamic assemblies. This is required so dynamic assemblies show up in
27425         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
27426         Type::GetType() etc. This is consistent with MS behaviour.
27427
27428         * image.c image.h reflection.c: add newly created classes to the name 
27429         cache so mono_class_get () will find them.      
27430
27431 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27432
27433         First part of changes to get IKVM.NET running under mono.
27434         
27435         * appdomain.h, appdomain.c: added new function 
27436         mono_domain_try_type_resolve() which will emit TypeResolve events. 
27437         This function will call AppDomain::DoTypeResolve to do the actual work.
27438
27439         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
27440         moved existing code dealing with dynamic tokens to a new function 
27441         called mono_reflection_lookup_dynamic_token (). This function will 
27442         raise TypeResolve events when appropriate. Since reflection.c is not 
27443         part of libmetadata, a new hook function called 
27444         mono_lookup_dynamic_token() is added to class.c which will call this.
27445
27446         * assembly.h assembly.c: make the invoke_load_hook function public,
27447         so it can be called for dynamic assemblies.
27448
27449         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
27450
27451         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
27452         type isn't found.
27453
27454         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
27455         MonoGHashTable, since it contains pointers to objects which the GC 
27456         needs to track.
27457
27458         * assembly.c (search_loaded): remove unused variable.
27459         
27460 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
27461
27462         * object.c: fixed issue exposed by gcc-generated IL programs
27463         that use RVA data for pointers.
27464
27465 2003-01-25  Martin Baulig  <martin@ximian.com>
27466
27467         * threads.c (start_wrapper): Moved the initialization of
27468         `start_func' above the mono_new_thread_init() call to which we
27469         pass it as argument.
27470
27471 2003-01-24  Martin Baulig  <martin@ximian.com>
27472
27473         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
27474         the MonoThread pointer.
27475
27476 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
27477
27478         * icall.c: Rename `PowImpl' to Pow.
27479
27480 2003-01-23  Dick Porter  <dick@ximian.com>
27481
27482         * threads.c (start_wrapper): Create a Thread object if needed, so
27483         the Main() thread can do the class initialisation in a subthread
27484         that has been set up to allow managed code execution.
27485
27486         Pass the thread ID instead of the MonoThread pointer to the thread
27487         start and attach callbacks.  This change is required, because the
27488         jit thread start callback must be called _before_ the Thread
27489         object can be created.
27490         
27491         (mono_thread_init): Removed much object creation code that is no
27492         longer needed.  No managed code is called from here now.
27493
27494         * object.c (mono_runtime_exec_managed_code): Create a subthread
27495         for Main, and call back to the runtime to use it.
27496         Set the exit code when Main exits.
27497
27498         * gc.c: Make sure domain finalisation happens in a subthread.
27499         Re-enable threaded GC, fixing bug 31333 (again).
27500
27501         * environment.c: System.Environment internall calls (so far just
27502         ExitCode is here, the others are still in icall.c)
27503
27504         * appdomain.c (mono_runtime_cleanup): All threads running managed
27505         code should have finished before mono_runtime_cleanup() is
27506         reached, so no need to clean up threads.
27507
27508 2003-01-22  Martin Baulig  <martin@ximian.com>
27509
27510         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
27511         `gpointer func' arguments.      
27512         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
27513         but added `MonoThread *thread' argument.
27514         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
27515
27516         * threads.c (mono_new_thread_init): Added `gpointer func' argument
27517         and pass it to the mono_thread_start_cb callback.
27518         (mono_install_thread_callbacks): New public function to install a
27519         set of callbacks which are set by the debugger.
27520         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
27521
27522 2003-01-22  Martin Baulig  <martin@ximian.com>
27523
27524         * Makefile.am: Install debug-mono-symfile.h.
27525
27526 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
27527
27528         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
27529
27530 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
27531
27532         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
27533         * class.c (mono_ptr_class_get): correctly set access levels of pointers
27534         (mono_array_class_get): correctly set access levels of arrays
27535
27536 2003-01-20      Patrik Torstensson
27537         * image.h (MonoAssemblyName): changed major, minor, build, revision
27538         from signed to unsigned.
27539
27540 2003-01-20  sean kasun <skasun@azstarnet.com>
27541
27542         * reflection.c (load_cattr_value): Now this handles
27543         MONO_TYPE_SZARRAY.  Fixes bug #35629
27544
27545 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
27546
27547         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
27548         integer value
27549
27550 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27551
27552         * decimal.c: fixed bug #26056.
27553
27554 2003-01-17  Martin Baulig  <martin@ximian.com>
27555
27556         * gc.c: Raise an ExecutionEngineException instead of using g_error().
27557
27558 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27559
27560         * exception.[ch]:
27561         (mono_get_exception_type_initialization): new function.
27562
27563         * object.c: throw a TypeInitializationException when an exception is
27564         thrown invoking the class constructor.
27565
27566 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27567
27568         * reflection.c: fixed attribute reading.
27569
27570 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27571
27572         * icall.c:
27573         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
27574         provided, look for the type in the calling assembly and then in
27575         mscorlib; if the assembly name is provided, only try that one.
27576
27577 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
27578
27579         * object.c: register the vtable before there is a chance it's
27580         queried again recursively.
27581
27582 2003-01-13  Duncan Mak  <duncan@ximian.com>
27583
27584         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
27585         gc-internal.h. 
27586         
27587 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
27588
27589         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
27590
27591 2003-01-11  Martin Baulig  <martin@ximian.com>
27592
27593         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
27594         this to 20 for the release.
27595
27596 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
27597
27598         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
27599
27600         * loader.c (mono_method_get_marshal_info): bug fix
27601
27602         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
27603         structures with explicit layout
27604
27605 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
27606
27607         * profiler.c: made the output more readable (and sorted). 
27608         Added caller information for the allocation profiler.
27609
27610 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
27611
27612         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
27613
27614 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27615
27616         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
27617         to get value types.
27618         
27619 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
27620
27621         * object.c, profiler.h, profiler.c, profiler-private.h:
27622         Added object allocation profiler.
27623
27624 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
27625
27626         * reflection.h, reflection.c: handle global methods.
27627         Compress blob entries.
27628
27629 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
27630
27631         * marshal.c: fix compilation.
27632
27633 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
27634
27635         * loader.c (mono_method_get_marshal_info): impl.
27636
27637         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
27638
27639 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27640
27641         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
27642         for reference types.
27643
27644 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
27645
27646         * loader.c: fixed off by one error in loaded parameter names.
27647
27648 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
27649
27650         * marshal.c (mono_marshal_get_icall_wrapper): like
27651         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
27652         instead of a MonoMethod.
27653
27654 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27655
27656         * decimal.c: fixed bug #36537.
27657
27658 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
27659
27660         * marshal.c: throw a missing method exception if a
27661         P/Invoke method is not found.
27662
27663 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
27664
27665         * icall.c: allow a null this for constructors.
27666
27667 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
27668
27669         * icall.c: raise the proper exceptions if the arguments to the
27670         internal Invoke are incorrect.
27671
27672 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
27673
27674         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
27675
27676 2003-01-03  Martin Baulig  <martin@ximian.com>
27677
27678         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
27679
27680 2002-12-31  Martin Baulig  <martin@ximian.com>
27681
27682         * debug-mono-symfile.c: Completely rewrote the type section.
27683         Instead of using individual malloc()ed fields, we use one big
27684         continuous memory area and offsets into this area.
27685         See the comments in the source code for details.
27686
27687 2002-12-30  Martin Baulig  <martin@ximian.com>
27688
27689         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
27690
27691 2002-12-30  Martin Baulig  <martin@ximian.com>
27692
27693         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
27694         line number table in this data blob instead of using an external
27695         pointer.
27696
27697 2002-12-28  Martin Baulig  <martin@ximian.com>
27698
27699         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
27700
27701 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
27702
27703         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
27704         as a boxed return type.
27705
27706 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
27707
27708         * appdomain.c
27709         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
27710         g_build_filename to properly get separators on the filename created.
27711
27712         * object.h: Small change, introduce MonoMarshalByRefObject to
27713         track the layout of that structure in the C# universe as we make
27714         changes there.
27715
27716 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
27717
27718         * object.c: removed assert to allow static fields on interfaces.
27719         * loader.c: a TypeSpec may be used for any type, not just arrays.
27720
27721 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27722
27723         * class.c, class.h: added mono_class_array_element_size ().
27724         Ignore static methods in interfaces.
27725
27726 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27727
27728         * threads.c: fixed the build under cygwin.
27729
27730 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27731
27732         * reflection.c: handle nullref constants. Allocate keys for
27733         reflection handles with the GC.
27734
27735 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27736
27737         * threads.c, threads.h: added mono_thread_get_abort_signal()
27738         to get a suitable signal for thread abort.
27739
27740 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27741
27742         * metadata.c: fix handling of ExportedType table.
27743
27744 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27745
27746         * icall.c: added WriteWindowsDebugString internal call.
27747
27748 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27749
27750         * reflection.h: added fields to match C# implementation.
27751
27752 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27753
27754         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
27755
27756 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
27757
27758         * gc.h, gc-internal.h: Rename header for GC internal calls to
27759         gc-internal.h from gc.h as to not clash with Boehm GC having its
27760         header installed as <gc.h> in outside include paths.
27761         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
27762         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
27763
27764 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27765
27766         * icall.c: assign minor, build and revision in FillName.
27767
27768 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
27769
27770         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
27771         Added support for running code generated by Reflection.Emit.
27772
27773 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27774
27775         * appdomain.c: check for NULL argument in LoadFrom.
27776
27777 2002-12-10  Dick Porter  <dick@ximian.com>
27778
27779         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
27780
27781 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27782
27783         * appdomain.c: fix buglet when building exe file name.  Handle full
27784         assembly name (needed after latest changes to AssemblyName).
27785         * image.c:
27786         (mono_image_close): free some hashtables.
27787
27788 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
27789
27790         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
27791         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
27792         on some systems (redhat 7.3) 
27793
27794 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
27795
27796         * threads.c: delete the critical section of a sync block,
27797         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
27798
27799 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
27800
27801         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
27802
27803 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27804
27805         * appdomain.[ch]: handle the assembly preload event to try loading the
27806         assemblies using the paths we have in the current domain.
27807
27808         * assembly.[ch]: created an assembly preload hook that is called to try
27809         loading the assembly by other means that the ones provided here.
27810
27811         * domain.c: initialize the domain search path.
27812
27813         From now on, assemblies (TODO: except corlib and System) are loaded
27814         according to these rules when using mono_assembly_load ():
27815
27816                 1. It tries to load the assembly from the ApplicationBase
27817                 of the current domain appending .dll and .exe (TODO: have to
27818                 try loading from name/name.dll and name/name.exe).
27819
27820                 2. It tries the search path specified in PrivateBinPath for the
27821                 current domain (if any).
27822
27823                 3. Previous behavior.
27824
27825 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
27826
27827         * icall.c: implemented GetInterfaceMap() related icall.
27828         * domain.c, loader.h: load MethodInfo in mono_defaults.
27829
27830 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27831
27832         * gc.c: disable the finalizer thread for now, untill all the issues
27833         with it are resolved.
27834
27835 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27836
27837         * string-icalls.c: handle embedded nulls in string ctor when the
27838         length is specified.
27839
27840 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27841
27842         * class.c: look for explicit interface implementation in parent
27843         classes, too.
27844
27845 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
27846
27847         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
27848
27849 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27850
27851         * gc.c: protect handles with a critical section.
27852
27853 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27854
27855         * icall.c:
27856         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
27857         parameters. If no assembly specified, try getting the type from all
27858         the assemblies in the current domain, else, load the assembly and get
27859         the type from it.
27860
27861 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27862
27863         * marshal.c: applied patch from Aleksey Demakov that fixes
27864         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
27865
27866 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27867
27868         * icall.c: fixed get_location.
27869
27870 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
27871
27872         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
27873         declarations to make it work with older gcc. 
27874
27875         * loader.c (mono_get_method): set signature->pinvoke for native calls
27876
27877 2002-11-20  Dick Porter  <dick@ximian.com>
27878
27879         * threads.c (mono_thread_init): Set the main thread's handle
27880
27881 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27882
27883         * gc.c: allow compilation without GC support. Changed to match the
27884         mono coding style.
27885
27886 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27887
27888         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
27889
27890 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
27891
27892         * reflection.c: set a public key token on the core assemblies.
27893
27894 2002-11-18  Dick Porter  <dick@ximian.com>
27895
27896         * threads.c: Split out some thread initialisation so that other
27897         files can set the start callback function.
27898
27899         * gc.c: Run finalisers in a separate thread, to avoid stack
27900         overflow.  Fixes bug 31333.
27901
27902         * appdomain.c: Set up GC finalisation thread.
27903
27904         * reflection.c: 
27905         * object.c: 
27906         * domain.c: Use gc.h macros for GC_malloc
27907         
27908 2002-11-15  Dick Porter  <dick@ximian.com>
27909
27910         * threadpool.c: 
27911         * threads.c:
27912         * appdomain.c: Removed mono_runtime_init_with_attach(),
27913         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
27914         merging the extra parameter with the existing function.  Removed
27915         unneeded code in mono_thread_attach().
27916
27917 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
27918
27919         * image.c (mono_image_loaded_by_guid): a method to get loaded
27920         images by guid. 
27921         (load_metadata_ptrs): we store the guid as string.
27922
27923 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
27924
27925         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
27926
27927         * metadata.c (mono_guid_to_string): imported method form Zoltan
27928         Varga (slightly modified)
27929
27930         * assembly.c (mono_assembly_open): load precompiled code
27931
27932         * loader.h (MonoMethod): we store the method token for use in the
27933         aot compiler. 
27934
27935 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27936
27937         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
27938         the hook function called when an assembly is loaded.
27939         
27940         * domain.c: Modified file.
27941         (mono_domain_assembly_load): removed hash table insertion of assemblies.
27942
27943         Fixes bug #33196.
27944
27945 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
27946
27947         * reflection.c: Map PEFileKind to the value expected by the WinNT
27948         image loader. 
27949
27950 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27951
27952         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
27953         Read until the buffer is filled completely.
27954
27955 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27956
27957         * icall.c: implemented MonoType.InternalGetEvent ().
27958
27959 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27960
27961         * appdomain.c: implemented InitAppDomainSetup. Delayed
27962         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
27963         the entry_assembly.
27964
27965         * assembly.c: base_dir is now an absolute path ending with
27966         G_DIR_SEPARATOR.
27967
27968         * icall.c: modified get_location according to the above changes.
27969
27970         * object.c: init AppDomain.SetupInformation for the default domain after
27971         we have the entry assembly.
27972
27973         * domain.c: when unloading a domain, setup = NULL.
27974
27975 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
27976
27977         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
27978
27979 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
27980
27981         * object.h, object.c: introduced mono_object_get_virtual_method ()
27982         to lookup the method invoked on an object when a callvirt is done on
27983         a method.
27984         * icall.c: make MethodInfo::Invoke() always do a virtual call.
27985
27986 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27987
27988         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
27989         current domain when loaded an assembly and failed to load it.
27990
27991         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
27992
27993 2002-10-31  Dick Porter  <dick@ximian.com>
27994
27995         * icall.c: 
27996         * file-io.h: 
27997         * file-io.c: Return the error status in a parameter, as the
27998         GetLastError() value has long since been blown away if we try and
27999         look it up in a subsequent internal call invocation.  Delete the
28000         GetLastError() internal call, because it's useless.
28001
28002 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
28003
28004         * class.[ch]: added cast_class to fix bug 29517
28005
28006 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
28007
28008         * marshal.c: create valid IL code in the filter clause:
28009         the new JIT is less forgiving:-)
28010
28011 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28012
28013         * icall.c: removed get_property internal call.
28014
28015 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
28016
28017         * appdomain.h domain.c: Added an ID to appdomains.
28018         
28019         * threads.c threads.h icall.c: Implement icall
28020         Thread:GetDomainID(), and remove unused icall 
28021         CurrentThreadDomain_internal.
28022
28023 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28024
28025         * icall.c: Don't recurse through the base types in GetConstructor.
28026         Fixes bug #32063. 
28027
28028 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
28029
28030         * mempool.h, mempool.c: added mono_mempool_empty() and
28031         mono_mempool_stats().
28032
28033 2002-10-23  Dick Porter  <dick@ximian.com>
28034
28035         * file-io.c: 
28036         * file-io.h: 
28037         * icall.c: Added MonoIO.GetFileType internal call
28038
28039 2002-10-17  Dick Porter  <dick@ximian.com>
28040
28041         * appdomain.c (mono_runtime_cleanup): Don't signal the async
28042         delegate semaphore before waiting for all threads to finish,
28043         because new threads can also call async delegates.  Fixes bug
28044         32004.
28045
28046         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
28047         of 3 seconds, in case another async job is queued.  (This part is
28048         needed because the bug fix reintroduced the 3s exit lag.)  This
28049         makes the mono_runtime_shutdown flag superfluous.
28050
28051 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
28052
28053         * reflection.c: include ehader size in method section headers.
28054         Really check for suplicated modules entries.
28055
28056 2002-10-17  Martin Baulig  <martin@gnome.org>
28057
28058         * debug-mono-symfile.c: Added back support for locals.
28059
28060 2002-10-14  Martin Baulig  <martin@gnome.org>
28061
28062         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
28063         MONO_TYPE_VOID.
28064
28065 2002-10-14  Martin Baulig  <martin@gnome.org>
28066
28067         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
28068         mono_class_get() instead of looking in the class cache. 
28069
28070 2002-10-13  Martin Baulig  <martin@gnome.org>
28071
28072         * debug-mono-symfile.c: Set version number to 28, include the
28073         signature in method names.
28074
28075 2002-10-13  Martin Baulig  <martin@gnome.org>
28076
28077         * debug-mono-symfile.h: Set version number to 27.
28078
28079 2002-10-11  Martin Baulig  <martin@gnome.org>
28080
28081         * gc.c: Don't register/unregister NULL pointers as disappearing links.
28082
28083 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
28084
28085         * metadata.c, metadata.h: added helper function to allocate signatures.
28086
28087 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28088
28089         * icall.c: added internal call to get the location of machine.config.
28090
28091 2002-10-08  Martin Baulig  <martin@gnome.org>
28092
28093         * debug-mono-symfile.c: Ignore classes with a pending init for the
28094         moment.
28095
28096 2002-10-03  Dick Porter  <dick@ximian.com>
28097
28098         * threads.c: Freebsd pthread_t is a pointer
28099
28100 2002-10-03  Dick Porter  <dick@ximian.com>
28101
28102         * socket-io.c: Implemented GetHostName_internal
28103
28104 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28105
28106         * mono-config.c:
28107         (mono_config_parse_file): don't leak the text.
28108
28109 2002-10-02  Martin Baulig  <martin@gnome.org>
28110
28111         * debug-mono-symfile.c: Added support for methods.
28112
28113 2002-10-01  Martin Baulig  <martin@gnome.org>
28114
28115         * debug-mono-symfile.c: Don't emit methods and line numbers for
28116         the dynamic symbol file, just write the type table.  We can easily
28117         have an external helper program which creates a symbol file for an
28118         IL file.        
28119
28120 2002-10-01  Dick Porter  <dick@ximian.com>
28121
28122         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
28123         Only add the handle to the cleanup array when we're about to
28124         launch the thread.  Bug 31425 deadlocked when the test was run on
28125         mono under w32.
28126
28127 2002-10-01  Martin Baulig  <martin@gnome.org>
28128
28129         * debug-mono-symfile.c: Added support for properties.
28130
28131 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
28132
28133         * reflection.c: unaligned store fix from Mark Crichton
28134         <crichton@gimp.org>.
28135
28136 2002-09-27  Martin Baulig  <martin@gnome.org>
28137
28138         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
28139         New interncall.
28140
28141 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
28142
28143         * assembly.h, assembly.c: use a sane API to hook into the assembly
28144         loading process instead of a useless special-purpouse hack
28145         (ngen needs a hook, too, for example).
28146
28147 2002-09-27  Dick Porter  <dick@ximian.com>
28148
28149         * threads.c (mono_thread_init): Call GetCurrentProcess() so
28150         io-layer can set up some process handle info.  Not needed on w32,
28151         but doesn't hurt either.
28152
28153         * process.c: Pass the program name in the second parameter to
28154         CreateProcess, so the path is searched.  Include the working
28155         directory. Implemented process name, process enumeration, and some
28156         process detail internal calls.
28157         
28158         * icall.c: Added internal calls for process lookup, and some
28159         process details
28160
28161 2002-09-26  Martin Baulig  <martin@gnome.org>
28162
28163         * assembly.c (mono_install_open_assembly_hook): New global
28164         function to install a function to be invoked each time a new
28165         assembly is loaded.
28166         (mono_assembly_open): Run this callback function if set.
28167
28168         * debug-mono-symfile.c: Put back line numbers for the dynamic
28169         symbol file and also record the .il file as source file.  This
28170         allows us to install the temporary symbol file as `file.dbg' just
28171         like a compiler-generated one.
28172
28173 2002-09-26  Nick Zigarovich <nick@chemlab.org>
28174
28175         * Corrected typo in gc.c (BOHEM vs BOEHM).
28176
28177 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28178
28179         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
28180         GetProperties. Also avoid calling g_slist_length in GetProperties and
28181         GetMethods.
28182
28183 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28184
28185         * reflection.c: avoid unaligned stores (bug spotted by
28186         Mark Crichton  <crichton@gimp.org>).
28187
28188 2002-09-25  Martin Baulig  <martin@gnome.org>
28189
28190         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
28191         instead of guint64 for addresses and added prologue/epilogue info.
28192
28193 2002-09-25  Martin Baulig  <martin@gnome.org>
28194
28195         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
28196         store line number info.  For the dynamic symbol file, we only need
28197         to provide the JIT generated dynamic line number info for the dynamic
28198         symbol file.
28199
28200 2002-09-25  Martin Baulig  <martin@gnome.org>
28201
28202         * debug-mono-symfile.h: Incremented version number.
28203
28204 2002-09-24  Martin Baulig  <martin@gnome.org>
28205
28206         * class.c (mono_debugger_class_init_func): New global function
28207         pointer variable.
28208         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
28209         call it.
28210
28211         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
28212         function.  This is called via the mono_debugger_class_init_func
28213         hook to add all types to the dynamic type table.
28214         (ves_icall_MonoDebugger_GetType): New interncall to get a class
28215         from its metadata token.
28216
28217         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
28218         New interncall for the debugger.
28219
28220 2002-09-24  Nick Drochak <ndrochak@gol.com>
28221
28222         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
28223         before using it in case it is null.
28224         
28225 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28226
28227         * metadata.c: allow custom modifiers in local var signatures
28228         (bug spotted by Zoltan Varga).
28229
28230 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
28231
28232         * class.c: deal with the <Module> class that may have a NULL vtable.
28233         Eliminate warnings.
28234
28235 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28236
28237         * image.c, image.h: more strong name helpers.
28238         * monosn.c: more work: convert pem keys to cryptoapi format.
28239
28240 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
28241
28242         * string-icalls.c: speedup IndexOf.
28243
28244 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28245
28246         * icall.c: updates from Zoltan.2.Varga@nokia.com.
28247
28248 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28249
28250         * icall.c: cleanup: use mono_object_domain ().
28251
28252 2002-09-23  Martin Baulig  <martin@gnome.org>
28253
28254         * debug-mono-symfile.c: Improved type support.
28255
28256 2002-09-22  Martin Baulig  <martin@gnome.org>
28257
28258         * debug-mono-symfile.c: Added support for reference types and strings.
28259
28260 2002-09-22  Martin Baulig  <martin@gnome.org>
28261
28262         * debug-mono-symfile.c: Started to work on the type table.
28263
28264 2002-09-21  Martin Baulig  <martin@gnome.org>
28265
28266         * debug-mono-symfile.c: Largely reworked the symbol table format.
28267         The symbol table is now incrementally updated each time a new
28268         method is added.  We're now also using our own magic and version
28269         so that you don't need to recompile all your classes if the
28270         dynamic table changes.
28271         (mono_debug_update_mono_symbol_file): Removed.
28272         (mono_debug_symfile_add_method): New function to add a method.
28273
28274 2002-09-21  Martin Baulig  <martin@gnome.org>
28275
28276         * icall.c
28277         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
28278         New interncall.
28279
28280         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
28281         New interncall to get a method from its metadata token.
28282
28283 2002-09-21  Martin Baulig  <martin@gnome.org>
28284
28285         * debug-mono-symfile.c: Create type table.
28286
28287 2002-09-20  Martin Baulig  <martin@gnome.org>
28288
28289         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
28290
28291 2002-09-20  Martin Baulig  <martin@gnome.org>
28292
28293         * debug-mono-symfile.c: Provide information about params and locals.
28294
28295 2002-09-20  Martin Baulig  <martin@gnome.org>
28296
28297         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
28298         New interncall.
28299
28300         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
28301         interncall to get a method from its metadata token.
28302
28303 2002-09-20  Martin Baulig  <martin@gnome.org>
28304
28305         * debug-mono-symfile.c: Added a few checks for method->header
28306         being non-NULL.  This should never happen, but for the moment
28307         let's use a g_warning() rather than a g_assert().
28308
28309 2002-09-19  Mark Crichton  <crichton@gimp.org>
28310
28311         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
28312         even if support for it isn't present.  Added an #ifdef to fix this.
28313
28314         * socket-io.c: Added checks back for Solaris support.
28315
28316 2002-09-19  Martin Baulig  <martin@gnome.org>
28317
28318         * debug-mono-symfile.c (read_string, write_string): Reflect latest
28319         changes in the symbol file format.
28320
28321 2002-09-18  Martin Baulig  <martin@gnome.org>
28322
28323         * debug-mono-symfile.c: Set version number to 21.
28324
28325 2002-09-18  Dick Porter  <dick@ximian.com>
28326
28327         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
28328         on netbsd.  Fixes bug 30051.
28329
28330 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28331
28332         * reflection.c:
28333         (set_version_from_string): little fix.
28334
28335 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28336
28337         * monosn.c, Makefile.am: added strong name utility.
28338         * reflection.h, reflection.c: implemented delayed signing,
28339         locale, version and hash id assembly attributes.
28340
28341 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
28342
28343         * loader.c, metadata.c: load param attributes in signatures.
28344
28345 2002-09-16  Martin Baulig  <martin@gnome.org>
28346
28347         * debug-mono-symfile.c: Added string table with all method names.
28348
28349 2002-09-14  Martin Baulig  <martin@gnome.org>
28350
28351         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
28352         fast method lookup.
28353
28354 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28355
28356         * reflection.c: record the public key token of referenced assemblies.
28357
28358 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28359
28360         * image.c, image.h: added functions to get the strong name and the
28361         public key of an assembly.
28362         * pedump.c: use them.
28363
28364 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
28365
28366         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
28367
28368 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
28369
28370         * marshal.c (mono_marshal_get_managed_wrapper): Added
28371         MONO_TYPE_BOOLEAN 
28372
28373 2002-09-11  Martin Baulig  <martin@gnome.org>
28374
28375         * gc.c: Call GC_unregister_disappearing_link() on all links when
28376         finalizing them, this is necessary to aviod a crash in boehm's
28377         finalize handler.
28378
28379 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28380
28381         * gc.c: handle GetTarget for finalized objects spotted and fixed by
28382         nick@chemlab.org.
28383
28384 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
28385
28386         * icall.c: implemented MonoType::Module.
28387         * reflection.c, reflection.h: mono_module_get_object () from
28388         Tomi Pakarinen <tomi.pakarinen@welho.com>.
28389
28390 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
28391
28392         * icall.c: ignore overridden methods in GetMethods ().
28393         Fix for FieldInfo::SetValue().
28394         * object.c: handle float/double in runtime invoke.
28395
28396 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
28397
28398         * object.c: allow a constructor to be called again on an object.
28399
28400 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28401
28402         * class.h, class.c: move field layout code to it's own function and
28403         export it. Get an interface id earlier. Move fields in MonoClass
28404         so they are more cache friendly and align the bitfields.
28405         * loader.c: temporary handle get_param_names() for a runtime method.
28406         * reflection.c, reflection.h: more code to handle runtime creation of
28407         types.
28408
28409 2002-09-09  Martin Baulig  <martin@gnome.org>
28410
28411         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
28412         signature with the pinvoke field being set for the actual call.
28413
28414 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28415
28416         * icall.c: removed some unused icalls. Start of map of glib charsets
28417         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
28418
28419 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28420
28421         * debug-helpers.c: break infinite loop (found and fixed by
28422         Holger Arnold <harnold@gmx.de>).
28423
28424 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28425
28426         * icall.c: target may be null in create_delegate.
28427
28428 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28429
28430         * marshal.c: handle a boolean return type.
28431
28432 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28433
28434         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
28435
28436 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28437
28438         * gc.c: fix weakreferences.
28439
28440 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
28441
28442         * icall.c: added icall to get default codepage.
28443
28444 2002-09-03  Dick Porter  <dick@ximian.com>
28445
28446         * threads.h: 
28447         * threads.c: Use MonoThread instead of MonoObject where
28448         apropriate.
28449
28450         Store running thread objects in a hash table, so that we have all
28451         the info to hand when waiting for them to finish
28452         (means we don't need OpenThread() any more, so mingw builds should
28453         be fully functional again.)
28454
28455         * verify.c:
28456         * object.h: Added thread ID to MonoThread
28457
28458 2002-09-03  Martin Baulig  <martin@gnome.org>
28459
28460         * icall.c (System.Reflection.Assembly::get_location): New interncall.
28461
28462 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28463
28464         * icall.c: fixed leak in get_temp_path. Thanks lupus.
28465
28466 2002-09-03  Martin Baulig  <martin@gnome.org>
28467
28468         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
28469         argument to store the end address of the disassembled instruction.
28470
28471         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
28472         here from debug-symfile.h.
28473         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
28474         JIT into this struct.
28475         (MonoSymbolFile): Added `char *image_file' field.
28476         (MonoDebugGetMethodFunc): Removed.
28477         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
28478         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
28479         (mono_debug_find_method): New method.
28480
28481         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
28482         create a full symbol file.
28483         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
28484         and static symbol files.
28485         (mono_debug_find_method): The symbol file keeps an internal method hash,
28486         call this to get a MonoDebugMethodInfo from a MonoMethod.
28487
28488         * debug-symfile.[ch]: Removed.
28489
28490 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
28491
28492         * image.c (do_mono_image_open): Remove linker version check.
28493
28494 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
28495
28496         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
28497         wrappers for instance methods.
28498         
28499 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28500
28501         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
28502
28503 2002-08-28  Dick Porter  <dick@ximian.com>
28504
28505         * Makefile.am: Export HOST_CC for w32 builds
28506
28507 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
28508
28509         * file-io.c process.c: MonoString are null terminated, no
28510         need for mono_string_to_utf16() anymore.
28511
28512 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28513
28514         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
28515
28516 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
28517
28518         * icall.c, reflection.h: speedup System.MonoType.
28519
28520 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
28521
28522         * reflection.c: allow null as the value of a string argument in
28523         custom attributes constructors.
28524
28525 2002-08-27  Martin Baulig  <martin@gnome.org>
28526
28527         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
28528         `trampoline_address' field.
28529
28530 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
28531
28532         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
28533         check (fixes bug #29486) 
28534
28535 2002-08-27  Martin Baulig  <martin@gnome.org>
28536
28537         * debug-mono-symfile.c: Changed the file format in a way that allows us
28538         open it read-only and to use a specially malloced area for all the
28539         dynamic data.  We can now also generate a symbol file on-the-fly if we're
28540         debugging IL code and there is no MCS generated symbol file for it.
28541
28542 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
28543
28544         * object.c: added a define for a good string and array
28545         creation speedup (not enabled by default because we need to deal with
28546         the synch stuff).
28547
28548 2002-08-26  Martin Baulig  <martin@gnome.org>
28549
28550         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
28551         function to create a dynamic symbol file.  This is used by the
28552         debugger to create a symbol file for IL code on-the-fly.
28553
28554 2002-08-26  Martin Baulig  <martin@gnome.org>
28555
28556         * loader.c (mono_lookup_pinvoke_call): Include the error message
28557         from g_module_error() in the error message.
28558
28559 2002-08-24  Martin Baulig  <martin@gnome.org>
28560
28561         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
28562         function to update the symbol file.  The symbol file is mmap()ed
28563         writable, but private.  This allows us to install the symbol file
28564         together with the assembly.
28565
28566 2002-08-24  Martin Baulig  <martin@gnome.org>
28567
28568         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
28569         but they can read the new symbol file format which mcs is now creating.
28570
28571         * debug-symfile.c (mono_debug_find_source_location): Moved to
28572         debug-mono-symfile.c; this is now operating on the new symbol file.
28573
28574 2002-08-23  Martin Baulig  <martin@gnome.org>
28575
28576         * debug-helpers.c (mono_method_desc_from_method): New function to get
28577         a MonoMethodDesc from a MonoMethod.
28578
28579 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28580
28581         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
28582         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
28583
28584 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
28585
28586         * string-icalls.[ch]: make helper methods static.
28587
28588 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28589
28590         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
28591         types to it and to SetValueInternal.
28592
28593         * object.c: Moved handle_enum label to its proper place. This was the
28594         f... bug! ;-)
28595
28596         This time i compiled mcs and gtk-sharp and they both work.
28597
28598 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28599
28600         * icall.c: reverted partially my previous patch until 
28601         object.c:set_value handles enums correcly.
28602
28603 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28604
28605         * icall.c:
28606         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
28607         (ves_icall_System_Environment_get_MachineName): removed warning when
28608         compiling under cygwin.
28609
28610 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
28611
28612         * object.c: fixed field_get_value() for reference types.
28613
28614 2002-08-22  Dick Porter  <dick@ximian.com>
28615
28616         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
28617         Don't free a buffer while it's still needed.  Patch from Jonathan
28618         Liger <Jonathan.liger@wanadoo.fr>
28619
28620 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
28621
28622         * icall.c (ves_icall_System_Environment_get_Platform): Add new
28623         internal call.
28624
28625 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
28626
28627         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
28628         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
28629
28630         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
28631         we call unmanaged code which throws exceptions.
28632
28633 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28634
28635         * appdomain.h: added per-domain entry_assembly.
28636         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
28637         arguments.
28638         * icall.c: Assembly::GetEntryAssembly icall.
28639         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
28640         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
28641
28642 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28643
28644         * appdomain.h, gc.c: added mono_domain_finalize ().
28645
28646 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28647
28648         * object.c:
28649         (mono_print_unhandled_exception): changed g_warning by g_printerr
28650         because g_log has a 1024 characters limit (yeah, i got a big stack
28651         trace). Don't print exception name, that should be in ToString 
28652         returned string.
28653
28654 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28655
28656         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
28657         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
28658
28659 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28660
28661         * object.c:
28662         (mono_print_unhandled_exception): after previous commit, i realized
28663         that MS calls ToString on the exception. I changed this function to
28664         do that. This way we get stack_trace for free.
28665
28666 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28667
28668         * object.c:
28669         (mono_print_unhandled_exception): invoke Message property instead of
28670         getting 'message' field from Exception. Don't allocate memory for
28671         'trace' and 'message' if not needed.
28672
28673 2002-08-18  Dick Porter  <dick@ximian.com>
28674
28675         * unicode.c: Fix asserts to match Encoder.cs checks
28676
28677 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28678
28679         * marshal.c: fix unaligned store issue and a few wrong
28680         opcode argument types.
28681
28682 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28683
28684         * icall.c: added GetUninitializedObjectInternal internal call.
28685
28686 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
28687
28688         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
28689         to the right domain.
28690
28691 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
28692
28693         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
28694
28695         * class.c (class_compute_field_layout): set blittable to false for Strings
28696
28697         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
28698
28699 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28700
28701         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
28702         first chunk of code to create types at runtime. Code to
28703         handle ReflectedType/DeclaringType. Make reflection handles
28704         domain specific.
28705
28706 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
28707
28708         * class.c: set correct name in arrays.
28709
28710 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
28711
28712         * appdomain.c (mono_domain_transfer_object): make it work with
28713         valuetypes. bug fixes.
28714
28715 2002-08-12  Dick Porter  <dick@ximian.com>
28716
28717         * object.h: Rename some parameters to avoid c++ keywords (Patch
28718         from Joseph Wenninger <kde@jowenn.at>)
28719
28720 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
28721
28722         * icall.c: added icall to implement Assembly.GetFile*.
28723
28724 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28725
28726         * reflection.h, reflection.c: code to embed managed resources.
28727
28728 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28729
28730         * class.c: move all the type size stuff into
28731         class_compute_field_layout().
28732
28733 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28734
28735         * class.c: ensure enums have always the correct instance size.
28736         * unicode.c: remove wrong assert.
28737
28738 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
28739
28740         * assembly.c: fix mem corruption issue.
28741         * image.h, image.c: added mono_image_get_resource () to access
28742         managed resources.
28743         * icall.c: implemented Assembly.EntryPoint property and some
28744         Managed Resources related internalcalls.
28745
28746
28747 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28748
28749         * image.c, image.h: impemented mono_image_get_entry_point ().
28750         * appdomain.c: use mono_image_get_entry_point.
28751
28752 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28753
28754         * reflection.c: support the object type argument when loading
28755         custom attributes.
28756
28757 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
28758
28759         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
28760         String as return type.
28761
28762 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
28763
28764         * reflection.c: fix encoding of named args for custom attrs to match
28765         the ms implementation. Read them back when instantiating custom
28766         attributes.
28767
28768 2002-08-02  Radek Doulik  <rodo@ximian.com>
28769
28770         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
28771         by Dietmar as quick fix
28772         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
28773         16 as stack size, used on more places as quick fix before Dietmar
28774         will fix it properly
28775
28776 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28777
28778         * object.h, object.c: added accessors for fields and properties.
28779
28780 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28781
28782         * class.c, class.h: made mono_class_get_field_from_name ()
28783         loop on parent types.
28784         Added mono_class_get_property_from_name ().
28785
28786 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
28787
28788         * class.c, class.h: move the code to setup the type vtable in its own
28789         function so that it can be reused also for types created at runtime.
28790         Eliminate the "class" identifier from the header file.
28791         * reflection.c: setup the vtable for enums so that we can create
28792         objects for use in SetConstant ().
28793
28794 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
28795
28796         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
28797         instead of the delegate itself as this pointer (bug #28383)
28798
28799 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
28800
28801         * marshal.c (mono_marshal_get_managed_wrapper): added return type
28802         conversions.
28803
28804 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28805
28806         * loader.c: don't set the pinvoke bit on icalls.
28807
28808 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
28809
28810         * debug-helpers.c (mono_method_full_name): only print a number to
28811         indicate wrapper type (so that the output is more readable in traces).
28812
28813 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
28814
28815         * class.c (mono_class_init): include method override patch from Paolo
28816
28817 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
28818
28819         * icall.c: fixed GetTypeCode().
28820
28821 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
28822
28823         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
28824         use real delegate invoke function to make it work with multicast
28825         delegates (fix bug# 28291).
28826
28827 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
28828
28829         * object.c: load constant strings.
28830
28831 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28832
28833         * reflection.c: no magic numbers.
28834         * tabledefs.h: security action enum.
28835
28836 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
28837
28838         * assembly.c: fix possible memory corruption.
28839
28840 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
28841
28842         * reflection.h, reflection.c: added support for linking resources.
28843         * verify.c: check we have an updated corlib.
28844
28845 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
28846
28847         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
28848         string arrays.
28849         (mono_marshal_string_array): null terminate unmanaged string arrays.
28850         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
28851
28852 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
28853
28854         * icall.c: Type.GetType () can now return also types from the
28855         calling assembly.
28856
28857 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
28858
28859         * loader.h, loader.c: stack walking support.
28860         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
28861         GetCallingAssembly.
28862
28863 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
28864
28865         * marshal.c: added optimisations for blittable types 
28866
28867         * class.c (mono_array_class_get): do not set blittable attribute on arrays
28868         (mono_class_setup_mono_type): set blittable attribute for single
28869         and double.
28870
28871         * marshal.c (mono_string_utf8_to_builder): impl.
28872         (mono_string_builder_to_utf8): impl.
28873         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
28874
28875 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
28876
28877         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
28878         (mono_marshal_get_managed_wrapper): impl. byref types
28879
28880 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28881
28882         * icall.c:
28883         (search_method): don't display debug message. 
28884
28885 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
28886
28887         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
28888
28889 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
28890
28891         * appdomain.c: set the missing filename when throwing exception.
28892
28893 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
28894
28895         * metadata.c (mono_type_size): code cleanup
28896         (mono_type_stack_size): removed some test code
28897
28898 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
28899
28900         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
28901         mono_get_exception_file_not_found now.
28902
28903         * exception.c (mono_exception_from_name_two_strings): New version
28904         that will call a constructor with two string arguments. 
28905         (mono_get_exception_file_not_found): New helper routine, used to
28906         report file-not-found errors.
28907
28908 2002-07-20  Dick Porter  <dick@ximian.com>
28909
28910         * process.h:
28911         * process.c: Pass file handles to CreateProcess
28912         
28913         * icall.c:
28914         * file-io.h:
28915         * file-io.c: Implemented CreatePipe
28916
28917 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
28918
28919         * metadata.c (mono_get_param_info): set alignment for value types
28920
28921 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28922
28923         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
28924         Constify mono_domain_assembly_open().
28925         * loader.c: handle null namespace in icalls.
28926
28927 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
28928
28929         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
28930         (emit_str_to_ptr_conv): marshal object as structs
28931
28932         * metadata.c (mono_type_to_unmanaged): marshal object as structs
28933
28934         * marshal.c (mono_marshal_get_runtime_invoke): support value types
28935
28936 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
28937
28938         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
28939         (mono_marshal_get_native_wrapper): we an now return value types
28940
28941 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28942
28943         * verify.c: more checks implemented.
28944
28945 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
28946
28947         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
28948         (fix bug #27695)
28949         (mono_marshal_get_native_wrapper): allow byref arguments
28950         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
28951         impl. PtrToStringXXX methods
28952         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
28953         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
28954         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
28955         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
28956         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
28957
28958 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28959
28960         * reflection.c: fix buglet in parsing an assembly name.
28961
28962 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
28963
28964         * marshal.c (emit_ptr_to_str_conv): first impl.
28965
28966 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
28967
28968         * object.c, class.h: cache the vtable in the class as suggested by
28969         vargaz@freemail.hu (Zoltan Varga).
28970
28971 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28972
28973         * class.h, loader.c: added mono_field_from_token().
28974         * verify.c: first cut of type checking code.
28975
28976 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
28977
28978         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
28979
28980 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
28981
28982         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
28983         (fix bug #27782)
28984         (mono_marshal_get_remoting_invoke): impl.
28985         (mono_delegate_begin_invoke): impl.
28986         (mono_mb_emit_save_args): impl.
28987         (mono_delegate_end_invoke): impl.
28988         (mono_marshal_get_delegate_begin_invoke):
28989         (mono_marshal_get_delegate_end_invoke):
28990         (mono_marshal_get_delegate_invoke): generate a special name for
28991         those methods (including the signature) and associate them whith
28992         the delegate class. 
28993
28994 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
28995
28996         * reflection.[ch]: 
28997         (mono_reflection_type_from_name): now it has a MonoImage parameter
28998         which is used as the default image to search the type in. If the image
28999         is NULL or getting the type from it fails, it defaults to corlib.
29000
29001         * icall.c: changed 1 call to mono_reflection_type_from_name to match
29002         new parameter.
29003
29004 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29005
29006         * reflection.c: update the parameter table index.
29007
29008 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
29009
29010         * domain.c: don't include the mark byte in the string hash.
29011
29012 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
29013
29014         * icall.cs: icall for Type.GetTypeCode ().
29015         * verify: a couple of fixes and disabled local initialization checks.
29016
29017 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
29018
29019         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
29020
29021         * debug-helpers.c (mono_method_full_name): print the type of the
29022         runtime wrapper
29023
29024         * metadata.c (mono_signature_hash): a hash function for signatures
29025         (mono_signature_hash): better hash algorithm
29026
29027         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
29028
29029         * debug-helpers.c (mono_method_full_name): this can now generate
29030         method names with signatures
29031
29032         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
29033         method dont have this pointers.
29034
29035 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
29036
29037         * reflection.c: fixup typebuilder tokens.
29038         * image.c: fix buglet.
29039         * marshal.h: remove whitespace.
29040         * metadata.h, metadata.c: reinstate code that was removed.
29041         * verify.c: handle catch directives and fix another couple of bugs.
29042
29043 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
29044
29045         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
29046         (mono_marshal_get_native_wrapper): make it comp. with the old code
29047         (mono_marshal_get_native_wrapper): support boolean
29048         (mono_marshal_get_managed_wrapper): support more types
29049
29050 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
29051
29052         * class.c (class_compute_field_layout): compute class->blittable attribute.
29053
29054 2002-07-09  Dick Porter  <dick@ximian.com>
29055
29056         * threads.c: Make the thread cleaning up cope with threads that
29057         call ExitThread()
29058
29059 2002-07-08  Radek Doulik  <rodo@ximian.com>
29060
29061         * reflection.c (method_encode_code): use non-translated values to
29062         compute finally_start, this fixes exception handling on ppc, yay!
29063
29064         * decimal.h (struct signscale): fix endianess
29065
29066 2002-07-07  Radek Doulik  <rodo@ximian.com>
29067
29068         * reflection.c: swap box_val and not val
29069
29070 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
29071
29072         * reflection.c, reflection.h: handle full assembly info in type name.
29073         Handle Type arguments when loading custom attributes.
29074         * icall.c: updated to use new mono_reflection_type_from_name () method.
29075
29076 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29077
29078         * loader.c:
29079         (method_from_memberref): also print assembly name when method not found.
29080
29081 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29082
29083         * icall.c:
29084         (ves_icall_TypeGetProperties): fixed bug #27473. 
29085
29086 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29087
29088         * reflection.c: display image name and token when cannot find the
29089         .ctor for an attribute.
29090
29091 2002-07-05  Martin Baulig  <martin@gnome.org>
29092
29093         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
29094
29095 2002-07-04  Dick Porter  <dick@ximian.com>
29096
29097         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
29098         compile on mingw.  This will cause mingw builds to not wait for
29099         subthreads to terminate after the main thread does.  I've lodged a
29100         bug with the mingw developers for them to wrap OpenThread().
29101
29102 2002-07-03  Dick Porter  <dick@ximian.com>
29103
29104         * threads.c: Store thread IDs instead of handles, because
29105         GetCurrentThread() returns a pseudohandle and therefore stores
29106         useless values.  mono_thread_cleanup() continues checking the
29107         array of threads until it is empty, to cope with subthreads
29108         spawning new threads after the main thread has finished.
29109
29110         * profiler.h:
29111         * profiler.c:
29112         * profiler-private.h: Pass the thread ID to thread profiler
29113         functions, instead of a handle
29114
29115 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29116
29117         * verify.c: fixes to make it more usable.
29118         * pedump.c: added --verify code to verify IL code in an assembly.
29119
29120 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29121
29122         * reflection.c: turn errors into warnings to allow compiling corlib.
29123
29124 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
29125
29126         * reflection.c: add special cases to compile corlib.
29127
29128 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
29129
29130         * reflection.c: handle properties with only a set method.
29131
29132 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29133
29134         * opcodes.h: add enum with opcodes in opval order.
29135
29136 2002-07-01  Dick Porter  <dick@ximian.com>
29137         
29138         * object.h:
29139         * object.c (mono_runtime_run_main): Removed unneeded argument
29140
29141 2002-06-28  Martin Baulig  <martin@gnome.org>
29142
29143         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
29144
29145 2002-06-27  Dick Porter  <dick@ximian.com>
29146
29147         * threads.c: Store the handle in both the parent thread and in the
29148         subthread, to minimise the time between starting a new thread and
29149         storing its ID.
29150
29151 2002-06-26  Dick Porter  <dick@ximian.com>
29152
29153         * appdomain.c (mono_runtime_cleanup): Close the socket library
29154         after all the threads have finished, not before
29155
29156 2002-06-26  Martin Baulig  <martin@gnome.org>
29157
29158         * debug-symfile.c (mono_debug_find_source_location): Added
29159         `guint32 *line_number' argument.  If it's not NULL, store the line number
29160         there and return the file name without the line number.
29161
29162 2002-06-25  Dick Porter  <dick@ximian.com>
29163
29164         * icall.c:
29165         * process.h:
29166         * process.c: Process forking and other support functions
29167
29168 2002-06-25  Dick Porter  <dick@ximian.com>
29169
29170         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
29171         things dont happen when the image is closed.
29172         (mono_image_lookup_resource): Walk the resource section looking
29173         for a particular entry
29174
29175         * cil-coff.h: PE resource section decoding
29176
29177 2002-06-25  Dick Porter  <dick@ximian.com>
29178         
29179         * assembly.h:
29180         * assembly.c: 
29181         (mono_assembly_foreach): Accessor functions to walk the list of
29182         loaded assemblies
29183         (mono_assembly_set_main):
29184         (mono_assembly_get_main): Process methods need to know which
29185         assembly is the "main" one
29186
29187         * object.c (mono_runtime_run_main): Record the main assembly
29188
29189         * debug-helpers.c: Fix typo
29190
29191 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
29192
29193         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
29194         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
29195
29196 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29197
29198         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
29199
29200 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
29201
29202         * image.c (do_mono_image_open): Initialize reference count,
29203         otherwise we leak the MonoImage.
29204
29205 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
29206
29207         * reflection.c: small tweak to handle self-hosting.
29208
29209 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
29210
29211         * reflection.c: fix type name parse code.
29212
29213 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
29214
29215         * reflection.c: break out of the loop.
29216         * image.c: special case corlib.
29217
29218 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29219
29220         * reflection.c: add all the custom attrs at the end to ensure the
29221         ctors have been properly initialized when the attributes are defined
29222         in the current assembly.
29223
29224 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
29225
29226         * reflection.c: handle correctly multiple-nested types.
29227
29228 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
29229
29230         * row-indexes.h: fix typos.
29231         * reflection.c: adjust for typos and fix method_def_or_ref
29232         encoding in MethodImpl table.
29233
29234 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29235
29236         * reflection.c: fix entry point patching (thanks Serge!).
29237
29238 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
29239
29240         * verify.c: add check for System.Exception
29241
29242 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
29243
29244         * image.c, class.c: minifix for code just c&p'ed.
29245         * reflection.c: warning fix.
29246         * object.h, loader.h, domain.c: load also StringBuilder.
29247
29248 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
29249
29250         * marshal.h, marshal.c: some support code to handle complex marshaling.
29251
29252 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29253
29254         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
29255         Better signatures with vtable error dump.
29256
29257 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
29258
29259         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
29260
29261 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
29262
29263         * icall.c (ves_icall_Type_GetField): impl.
29264
29265 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29266
29267         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
29268         to retrieve a marshal description blob for a field or param.
29269
29270 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
29271
29272         * reflection.h, reflection.c: change order of nested type emission
29273         to avoid table corruption. The NestedTypes table is sorted.
29274         * icall.c: change order of GetConstructor results to workaround mcs bug.
29275
29276 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29277
29278         * reflection.h, reflection.c: handle field and param marshal
29279         information.
29280
29281 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29282
29283         * icall.c, marshal.c marshal.h: more Marshal class implementation.
29284
29285 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29286
29287         * reflection.c: fix call convention.
29288
29289 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29290
29291         * reflection.h, reflection.c: mono_image_get_memberref_token()
29292         takes a type instead of a class, now. Added
29293         mono_image_get_array_token() to create tokens for the special
29294         multi-dim array methods.
29295
29296 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
29297
29298         * assembly.c: handle modules (no assembly table). Split
29299         loading references in its own function.
29300         * class.c: handle moduleref resolution scope.
29301         * image.c, image.h: cache module name in image.
29302
29303 2002-06-07  Martin Baulig  <martin@gnome.org>
29304
29305         * reflection.c (mono_image_get_type_info): Only add a class layout entry
29306         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
29307
29308 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29309
29310         * icall.c: more signature fixes that used uint instead of int.
29311
29312 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29313
29314         * reflection.c: fixed signature of field refs.
29315
29316 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29317
29318         * class.c, reflection.c: handle typerefs of nested types
29319         (both on read and when writing files).
29320
29321 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
29322
29323         * icall.c: fix method signatures that tried to workaround the previous
29324         typo, d'oh!
29325
29326 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29327
29328         * debug-helpers.c: fix typo.
29329
29330 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
29331
29332         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
29333         rewrote the PE/COFF writing code (our programs are understood by the
29334         ms runtime, now).
29335
29336 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
29337
29338         * gc.c, gc.h, icall.c: weakreference support.
29339
29340 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29341
29342         * Makefile.am, mono-config.c: use $(sysconfdir).
29343
29344 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
29345
29346         * icall.c: changed default precision of Double.ToString() to 15.
29347         Fixed memory leak. Unified with Single.ToString.
29348
29349 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
29350
29351         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
29352
29353 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
29354
29355         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
29356         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
29357         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
29358         and myself.
29359
29360 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29361
29362         * debug-symfile.c, sysmath.c: yet more compilation fixes.
29363
29364 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29365
29366         * reflection.c, socket-io.c: more compilation fixes.
29367
29368 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29369
29370         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
29371         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
29372         unicode.c: warning and compiler compatibility fixes.
29373
29374 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29375
29376         * class.h, metadata.c: fixed warnings/compilation errors.
29377
29378 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29379
29380         * Makefile.am, mono-config.c, mono-config.h: configuration file
29381         support routines.
29382         * loader.c, loader.h: make Dll mapping configurable at runtime in the
29383         config file. Export methods to insert and lookup mappings.
29384
29385 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
29386
29387         * reflection.c: handle types and boxed objects in custom attr
29388         constructors.
29389
29390 2002-05-30  Martin Baulig  <martin@gnome.org>
29391
29392         * debug-symfile.c
29393         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
29394
29395 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
29396
29397         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
29398         to lookup the implmap row for a P/Invoke method.
29399         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
29400         P/Invoke method from the runtime on an as needed basis.
29401
29402 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
29403
29404         * metadata.c (mono_metadata_parse_signature): impl.
29405
29406 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29407
29408         * class.c: handle .pack directive.
29409
29410 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
29411
29412         * object.c: initialize static fields with RVA data.
29413
29414 2002-05-25  Martin Baulig  <martin@gnome.org>
29415
29416         * debug-symfile.c
29417         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
29418
29419 2002-05-24  Martin Baulig  <martin@gnome.org>
29420
29421         * debug-symfile.c
29422         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
29423         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
29424         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
29425
29426 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
29427
29428         * object.c: special case string ctros in invoke.
29429         * gc.c: silly whitespace changes.
29430
29431 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
29432
29433         * threadpool.[ch]: impl. a threadpool that can
29434         be used by mint and mono.
29435
29436 2002-05-22  Martin Baulig  <martin@gnome.org>
29437
29438         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
29439         The first argument is now a `MonoReflectionModuleBuilder *', the return
29440         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
29441         `methods' field to get the method builder.  The `token' argument is the
29442         unfixed token.
29443
29444         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
29445         invalid characters instead of g_assert_not_reached()ing.  This seems
29446         to be the behaviour of mscorlib.
29447
29448 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
29449
29450         * object.c (mono_runtime_invoke_array): applied patch from Rachel
29451         Hestilow to fix bug #25104
29452
29453 2002-05-21  Martin Baulig  <martin@gnome.org>
29454
29455         * debug-symfile.c (mono_debug_find_source_location): New function.
29456         Looks up an IL offset in the line number table and returns the source
29457         location as a string.
29458
29459 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29460
29461         * icall.c:
29462         (mono_double_ToStringImpl): changed %f by %g until we have something
29463         better.
29464
29465 2002-05-21  Nick Drochak  <ndrochak@gol.com>
29466
29467         * icall.c : Use different name for Math.Pow's icall.  Needed to check
29468         parameters first in C#.
29469
29470 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29471
29472         * icall.c, reflection.h: added icall to get info about an event.
29473
29474 2002-05-20  Radek Doulik  <rodo@ximian.com>
29475
29476         * object.c (mono_value_box): don't use memcpy for boxing on BIG
29477         endian
29478         (mono_value_box): don't use memcpy for small sizes on
29479         architectures with unaligned access
29480
29481 2002-05-20  Martin Baulig  <martin@gnome.org>
29482
29483         * reflection.c (mono_reflection_setup_internal_class): Don't crash
29484         if `tb->parent == NULL'.
29485         (mono_reflection_create_internal_class): New function.  This is
29486         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
29487         for enum types.
29488
29489         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
29490         New interncall.
29491
29492 2002-05-19  Martin Baulig  <martin@gnome.org>
29493
29494         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
29495         argument to get the length, don't default to the array length.
29496
29497 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
29498
29499         * assembly.c (mono_assembly_setrootdir): New function used to
29500         override the MONO_ASSEMBLIES directory.
29501
29502 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29503
29504         * icall.c: ValueType_GetHashCode() initialize local var.
29505
29506 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29507
29508         * reflection.c: sort custom attributes table.
29509
29510 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
29511
29512         * reflection.c: support named args in custom attributes (write support).
29513
29514 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
29515
29516         * reflection.c: fix finally position calculation.
29517
29518 2002-05-15  Radek Doulik  <rodo@ximian.com>
29519
29520         * reflection.c: fixed endianess at many places
29521
29522         * icall.c (ves_icall_InitializeArray): comment out debug msg
29523
29524 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
29525
29526         * object.c (mono_unhandled_exception): new function to handle
29527         unhandled exceptions.
29528         (mono_unhandled_exception): call the UnhandledException event.
29529         (mono_runtime_delegate_invoke): impl.
29530
29531 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
29532
29533         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
29534         returns the RVA, not the direct pointer to the data. Handle the case
29535         when the class size is fixed.
29536
29537 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
29538
29539         * reflection.c: fix some endianess issues.
29540
29541 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
29542
29543         * object.c (mono_runtime_invoke): is now able to catch exceptions.
29544
29545         * threads.c (mono_thread_init): added a callback which is invoked
29546         at thread start.
29547
29548 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
29549         
29550         * icall.c: make GetHashCode return non-negative values.
29551
29552 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
29553
29554         * object.c, icall.c, gc.c: revert to address-based hashcode.
29555
29556 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
29557
29558         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
29559
29560 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29561
29562         * icall.c, class.c: special case <Module>.
29563
29564 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
29565
29566         * icall.c: fix bug in GetNow().
29567
29568 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
29569
29570         * object.c (mono_runtime_class_init): make sure that we call all
29571         static class constructors.
29572
29573 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
29574
29575         * reflection.c: sort methodsemantics table.
29576
29577 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
29578
29579         * reflection.h, reflection.c: honour init locals setting.
29580
29581 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
29582
29583         * icall.c: copied Double ToStringImpl for Single ToStringImpl
29584
29585 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
29586
29587         * reflection.c: support ContructorBuilders in attribute blob creation.
29588
29589 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29590
29591         * reflection.c: some changes to build a binary that can be run
29592         directly in windows.
29593
29594 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
29595
29596         * loader.c: print a big message when an icall can't be found.
29597
29598 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29599
29600         * string-icalls.c: fix bug 24248.
29601
29602 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
29603
29604         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
29605         icall.c, reflection.h: separate assembly loading by pathname and by
29606         assembly name. Use the MONO_PATH env var to search for assemblies.
29607
29608 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29609
29610         * assembly.c, image.h: add some support for assemblies
29611         with multiple modules.
29612         * class.c, class.h: export mono_class_from_typeref().
29613         * loader.c: remove duplicated code and use mono_class_from_typeref(),
29614         instead.
29615
29616 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29617
29618         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
29619         documentation says (the ECMA one is correct).
29620
29621 2002-05-02  Dick Porter  <dick@ximian.com>
29622
29623         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
29624         Don't name the synchronisation mutex.
29625
29626 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
29627
29628         * rand.c
29629         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
29630         Make the prototypes match.
29631         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
29632         Same.
29633
29634         * icall.c
29635         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
29636         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
29637         all systems have tm.tm_zone, so use strftime() with %Z to print
29638         the timezone abreviation into a temp string.
29639
29640         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
29641         rather than mono_array_addr() on a MonoString on Big Endian
29642         machines.
29643
29644 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
29645
29646         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
29647         fix bug 24041
29648
29649 2002-04-30  Dick Porter  <dick@ximian.com>
29650
29651         * socket-io.c: Cope with SOCKET being an integer rather than a
29652         pointer now.
29653
29654         * threads.c: Added Thread_free_internal, to deal with thread
29655         handle cleanup.  Moved calls to handle_store() and handle_remove()
29656         to start_wrapper(), so each can only be called once.  Allocate
29657         synchronisation blocks with GC_malloc(), and use GC finalisation
29658         to close the handles.
29659
29660         * icall.c: added System.Threading.Thread::Thread_free_internal
29661
29662 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
29663
29664         * icall.c: support Environment.Exit, CommandLineArgs().
29665
29666 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29667
29668         * object.c, object.h: added mono_runtime_run_main () and
29669         mono_runtime_get_main_args () for use in System.Environment.
29670
29671 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29672
29673         * gc.c: fix thinko, enable actual finalization since the jit is now
29674         fixed.
29675
29676 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29677
29678         * gc.c, object.c: take into account that an object may be offset wrt the address
29679         returned by GC_malloc().
29680
29681 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
29682
29683         * image.c: handle files without entries in the assembly table (modules).
29684
29685 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
29686
29687         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
29688         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
29689         allowed to be null when it's System.Object class setup.
29690
29691 2002-04-27  Martin Baulig  <martin@gnome.org>
29692
29693         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
29694         if `tb->parent == NULL' rather than crashing.
29695
29696 2002-04-28  Nick Drochak  <ndrochak@gol.com>
29697
29698         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
29699         calling acos() where asin() should have been called.
29700
29701 2002-04-26  Martin Baulig  <martin@gnome.org>
29702
29703         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
29704         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
29705         there's a subdirectory called `System', but we don't want to read that
29706         subdirectory as an assembly.
29707
29708 2002-04-25  Martin Baulig  <martin@gnome.org>
29709
29710         * debug-symfile.c: Reflect latest MonoString changes.
29711
29712 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
29713
29714         * rand.c, rand.h: instance method icalls need to have an explicit
29715         this pointer as first argument in the C implementation.
29716
29717 2002-04-25  Nick Drochak <ndrochak@gol.com>
29718
29719         * icall.c: Fix typo in map for GetNonZeroBytes
29720
29721 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29722
29723         * string-icalls.c : String does now passes unit tests without any 
29724         errors, the following changes has been made:
29725         
29726         Implemented replace methods.
29727         Renaming of methods to (try) follow the standard.
29728         Fixed compare ordinal
29729         Made all memory allocated directly to function instead of via icall function.
29730         Small performance fix in is_in_array function
29731                         
29732  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
29733
29734         c (mono_string_Internal_ctor_charp_int_int):
29735         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
29736         sindex < 0, throw ArgumentOutOfRangeException instead of
29737         ArgumentNullException.
29738
29739         Added new check for length == 0, however
29740         I need to make it return String.Empty from the C code.
29741         
29742         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
29743         that calculate the length for us here.
29744         
29745         (mono_string_Internal_ctor_sbytep_int_int): Replaced
29746         mono_string_new_utf16 with mono_string_new, since value is utf8.
29747
29748 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29749
29750         * object.c: register the object for finalization if needed.
29751         Allocate one more char in the string for the terminating 0 char.
29752
29753 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
29754
29755         * class.c, class.h, image.c: check if a type implemenst a destructor.
29756         Use the proper key for array class lookups.
29757         * icall.c: register the icalls in the System.GC class.
29758         * gc.c, gc.h: GC-related functions and icalls.
29759
29760 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29761
29762         * icall.c:
29763         * socket-io.c:
29764         * unicode.c: free some strings gotten from mono_string_to_utf8 and
29765         changed a couple of free () by g_free ().
29766
29767         * decimal.c: one-liner in the comments for decimal2string ().
29768
29769 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29770
29771         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
29772
29773 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29774
29775         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
29776         * object.c (mono_runtime_invoke_array) : handle null in params
29777
29778 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29779
29780         * string-icalls.c: fixed bug in split (one off bug)
29781
29782 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29783
29784         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
29785         * icalls.c: added String::Equals as internal method
29786
29787 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29788
29789         * threads.c: fixed bug in the double interlocked functions
29790
29791 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
29792
29793         * threads.c: implemented all of the new interlocked icalls.
29794         * string-icalls.c: fix a bug in insert.
29795         * icalls.c: added the icalls for interlocked, removed old string functions.
29796         
29797 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
29798
29799         * loader.c: fix off-by-one error when reading argument names.
29800
29801 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29802
29803         * profiler.c: win32 counter implementation (untested).
29804         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
29805         (the latter needs testing and more complete impl. from win32 folks).
29806
29807 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
29808
29809         * object.c: mono_array_new_full workaround mono_array_class_get
29810         problem.
29811
29812 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29813
29814         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
29815         * object.h (mono_string_chars): Changed casting type.
29816
29817 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29818
29819         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
29820                            method signatures to use gunichar2 instead of gint16.
29821
29822 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
29823
29824         * object.h, object.c: domain-specific versions of mono_object_new and
29825         mono_array_new.
29826
29827 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
29828
29829         * object.c: changed String layout
29830
29831         * string-icalls.c (mono_string_Internal_ctor_chara): added
29832         internal string constructors.
29833
29834 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
29835
29836         * threads.c: pass 'this' to the thread start routine.
29837
29838 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29839
29840         * string-icalls.c: fix IndexOf and LastIndexOf. Now
29841         InternalCompareStr don't call twice mono_string_cmp_char for the last
29842         character. Improved performance in mono_string_cmp_char.
29843
29844 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
29845
29846         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
29847         code into its own library: libmonoruntime.
29848
29849 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
29850
29851         * object.h, object.c: changed array format so that szarrays do not
29852         require a bounds structure.
29853         * icall.c, appdomain.c: support for new szarray format.
29854
29855 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
29856
29857         * metadata.c: compare also the retuns type when comparing signatures:
29858         we didn't do this as an optimization since really overloaded methods
29859         must differ also in the arguments, but this doesn't work with
29860         low-level IL code (or when using explicit conversion operators: see
29861         bug#23498 for an example).
29862
29863 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29864
29865         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
29866
29867 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
29868
29869         * icall.c: make MonoType::GetElementType its own icall.
29870
29871 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29872
29873         * icall.c: remove MonoMethod_get_Name().
29874         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
29875         object.
29876
29877 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29878
29879         * string-icalls.c: optimized a few methods.
29880
29881 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29882
29883         * icall.c: added all new string internal calls
29884         * string-icalls.c: added, new string internal call implementation.
29885         * object.c: added mono_string_new_size for allocating a string a size
29886
29887 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
29888
29889         * object.c (mono_object_isinst): use the same code as in the
29890         optimized x86 version.
29891
29892 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29893
29894         * profiler.c: TSC-based timer code (faster and more accurate).
29895         Not hooked up in configure, yet (set USE_X86TSC to 1).
29896
29897 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
29898
29899         * profiler.c, profiler.h: track time spent compiling methods.
29900         * threads.c: track thread creation/destruction.
29901
29902 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
29903
29904         * profiler.c, profiler.h, profiler-private.h: profiling interface
29905         and sample implementation. Moved here so that it can be used also by
29906         the jit.
29907
29908 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
29909
29910         * reflection.c, reflection.h: keep types and other handles separate in
29911         the hash tables for referred tokens. Add guid for modules.
29912
29913 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29914
29915         * assembly.c: fix bugs found with valgrind.
29916         * metadata.h, metadata.c: added mono_metadata_guid_heap().
29917
29918 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
29919
29920         * threads: added icall support for getting current domain for
29921                    the thread.
29922  
29923 2002-04-13  Martin Baulig  <martin@gnome.org>
29924
29925         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
29926         (MonoDebugVarInfo): Added `index' field for register based addresses.
29927         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
29928         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
29929         `MonoDebugVarInfo *params' and `guint32 this_offset' with
29930         `MonoDebugVarInfo *this_var'.
29931
29932         * debug-symfile.c (relocate_variable): New static function to write
29933         a location description for a local variable or method parameter.
29934
29935 2002-04-12  Martin Baulig  <martin@gnome.org>
29936
29937         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
29938         stack offset and begin/end scope address of a local variable.
29939         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
29940         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
29941         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
29942
29943         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
29944         Added new relocation types for start/end scope of a local variable.
29945
29946 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29947
29948         * object.h: add mono_object_domain() macro.
29949         * reflection.c: handle typespecs.
29950         * icall.c: MonoMethod::get_Name() implementation.
29951
29952 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29953
29954         * icall.c: String::GetHashCode() icall implementation.
29955
29956 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29957
29958         * icall.c: String::IndexOfAny icall.
29959         * object.c, object.h: make array->max_length more useful.
29960         Intrduced mono_object_class() and mono_string_length() macros.
29961
29962 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29963
29964         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
29965         instead of g_unichar_isdigit.
29966
29967 2002-04-11  Nick Drochak  <ndrochak@gol.com>
29968
29969         * icall.c: Implement a simple Double.ToString().
29970
29971 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
29972
29973         * appdomain.h: only io-layer.h is supposed to be included.
29974         * icall.c: explicitly import environ. Fix warning.
29975
29976 2002-04-10  Nick Drochak  <ndrochak@gol.com>
29977
29978         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
29979                 return true even if it's not Daylight Savings time.
29980                 Only return false for the case where the function isn't
29981                 implemented for a plaform (read Windows).
29982
29983 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29984
29985         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
29986         data with a mutex.
29987
29988 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
29989
29990         * mempool.c (mono_mempool_alloc): only use g_malloc when
29991         absolutely necessary.
29992
29993 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
29994
29995         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
29996
29997         * class.c (mono_class_vtable): use domain mempool to allocate vtable
29998         (mono_class_proxy_vtable): use domain mempool
29999
30000 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
30001
30002         * appdomain.h, appdomain.c: split initialization that requires the
30003         execution engine support into mono_runtime_init().
30004
30005 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
30006
30007         * class.c (mono_class_init): don't include vtable inside MonoClass
30008         to save some memory, gather some statistics.
30009         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
30010
30011 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
30012
30013         * icall.c: internalcall implementation for ValueType.Equals().
30014
30015 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
30016
30017         * object.c (mono_message_init): moved 
30018         (mono_runtime_exec_main): new arch. independent impl.
30019         (mono_runtime_invoke_array): new method - like
30020         mono_runtime_invoke, but you can pass an array of objects.
30021         (mono_remoting_invoke): new arch. independent impl.
30022         (mono_message_invoke): new arch. independent impl.
30023         (mono_runtime_class_init): new arch. independent impl.
30024         (mono_runtime_object_init): new arch. independent impl.
30025
30026 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
30027
30028         * metadata.c, object.c, reflection.c: documented the exported
30029         functions.
30030
30031 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
30032
30033         * icall.c: simpler code to pass the assembly builder data to corlib.
30034         Implement GetNestedTypes() internalcall.
30035
30036 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
30037
30038         * class.c: warn if a type can't be loaded.
30039
30040 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
30041
30042         * image.h: typedef MonoImageOpenStatus
30043         * types.h: removed unused file
30044         
30045 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
30046
30047         * icall.c: Enum_ToObject accepts enum value arguments.
30048
30049 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
30050
30051         * class.c: move initialization of properties, events and nested
30052         classes, so that they happen for interfaces, too.
30053
30054 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
30055
30056         * icall.c: cleanup some ugly casts in Array_SetValue*.
30057
30058 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
30059
30060         * icall.c: the values array fro enums is of the correct type, now.
30061         Implement (correctly) getFullName instead of assQualifiedName for
30062         MonoType.
30063         * reflection.h, reflection.c: added mono_type_get_name ().
30064
30065 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
30066
30067         * assembly.c, image.h: for each MonoImage, record from wich assembly
30068         it was loaded.
30069         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
30070         Make Type.Assembly work.
30071
30072 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
30073
30074         * debug-symfile.h: use char* instead of gpointer to avoid
30075         unnecessary casts.
30076
30077         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
30078
30079         * icall.c (ves_icall_InternalExecute): impl. FielSetter
30080         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
30081
30082 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
30083
30084         * icall.c (mono_message_init): impl. (code cleanup)
30085         (ves_icall_InternalExecute): impl. FieldGetter
30086
30087         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
30088         defined we call all (non-static)methods through the vtable. 
30089
30090 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
30091
30092         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
30093         finalizer even though the memory is still referenced (and the chunk of
30094         memory is not freed).
30095
30096 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
30097
30098         * assembly.c: fix brokeness.
30099
30100 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
30101
30102         * class.c: kill some warnings. Check explicit interface method
30103         implementation also without considering the namespace.
30104         Load also literal strings in static class data.
30105
30106 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
30107
30108         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
30109         (default_assembly_name_resolver): Make the resolver take the
30110         "base" directory where the assembly was originally defined, so we
30111         can load DLLs that are in the same directory as the assembly that
30112         is being referenced.
30113
30114 2002-03-28  Dick Porter  <dick@ximian.com>
30115
30116         * file-io.h: 
30117         * file-io.c:
30118         * socket-io.c: 
30119         * unicode.h: 
30120         * unicode.c: Warning cleanups
30121
30122 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
30123
30124         * object.h, reflection.h: use the correct type instead of MonoObject.
30125
30126 2002-03-28  Martin Baulig  <martin@gnome.org>
30127
30128         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
30129         (mono_debug_update_symbol_file): Initialize classes if necessary.
30130
30131 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
30132
30133         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
30134         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
30135
30136 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
30137
30138         * assembly.h: fix function prototype.
30139         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
30140         * mono-endian.h: use const cast.
30141
30142 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
30143
30144         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
30145
30146 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
30147
30148         * loader.c: don't assert when a typeref can't be loaded, give
30149         a chance to the runtime to trow an exception instead.
30150         * loader.h: fix warning.
30151
30152 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
30153
30154         * class.c (mono_class_proxy_vtable): added proxy support
30155
30156 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
30157
30158         * icall.c: removed last of PAL calls, added System.Environment
30159         * file-io.h, file-io.c: MonoIO implementation
30160         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
30161
30162 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
30163
30164         * appdomain.c: do not use the byte marker in ldstr table lookup.
30165         * debug-helpers.c: allow two ':' to separate class and method name.
30166         * object.c: allocate arrays bounds with the GC, too.
30167         * verify: add a few more checks.
30168
30169 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
30170
30171         * reflection.c: output also literal strings. Allocate parameter data
30172         with GC_malloc() (thanks, Martin, for catching this!).
30173
30174 2002-03-26  Martin Baulig  <martin@gnome.org>
30175
30176         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
30177         include the `this' offset in the `param_offsets'.
30178
30179 2002-03-25  Martin Baulig  <martin@gnome.org>
30180
30181         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
30182         mono_debug_get_class() function to get the classes. Added new
30183         relocation types for arrays and strings.
30184         (mono_debug_get_class): New static function to search in all
30185         referenced assemblies for a metadata token.
30186
30187         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
30188
30189 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30190
30191         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
30192         hold gc-allocated objects. Make the string heap a stream like the
30193         others. Removed duplicated code when writing stream info.
30194         Added asserts to catch possible buffer overflows. Set the sorted map
30195         for tables that need sorting. Added some documentation.
30196
30197 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
30198
30199         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
30200         for interned strings and vtables.
30201
30202 2002-03-24  Martin Baulig  <martin@gnome.org>
30203
30204         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
30205         it in the array since it was created with g_slist_prepend().
30206
30207 2002-03-24  Martin Baulig  <martin@gnome.org>
30208
30209         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
30210         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
30211         (mono_debug_method_from_token): Renamed to
30212         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
30213         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
30214
30215         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
30216         relocation types.
30217
30218         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
30219
30220 2002-03-24  Martin Baulig  <martin@gnome.org>
30221
30222         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
30223         (mono_debug_method_from_token): New func.
30224
30225         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
30226         New interncall, calls mono_debug_local_type_from_signature().
30227         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
30228         calls mono_debug_method_from_token().
30229
30230 2002-03-23  Martin Baulig  <martin@gnome.org>
30231
30232         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
30233         specifies the number of bytes to be converted, not the array size.
30234         Return the number of chars, not the number of bytes.
30235         (ves_icall_iconv_get_chars): The `byteCount' argument
30236         specifies the number of bytes to be converted, not the array size.
30237
30238 2002-03-23  Martin Baulig  <martin@gnome.org>
30239
30240         * reflection.h (MonoReflectionSigHelper): New type.
30241
30242         * reflection.c (mono_reflection_sighelper_get_signature_local),
30243         (mono_reflection_sighelper_get_signature_local): New functions.
30244
30245         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
30246         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
30247         interncalls.
30248
30249 2002-03-23  Martin Baulig  <martin@gnome.org>
30250
30251         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
30252         is_writeable is set.
30253         (mono_raw_buffer_update): New function to write the modified map
30254         back to disk.
30255
30256         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
30257
30258         * debug-symfile.c (mono_debug_update_symbol_file): Call
30259         mono_raw_buffer_update() when done writing.
30260
30261 2002-03-23  Martin Baulig  <martin@gnome.org>
30262
30263         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
30264
30265         * debug-symfile.c: Added support for arguments and local variables.
30266
30267 2002-03-23  Dick Porter  <dick@ximian.com>
30268
30269         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
30270         protected by ifdefs, hence breaking the w32 build.
30271
30272 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30273
30274         * object.c: implement is_interned() the right way.
30275
30276 2002-03-21  Martin Baulig  <martin@gnome.org>
30277
30278         * debug-symfile.[ch]: New files to handle debugging information
30279         files. There's also support to dynamically update these symbol
30280         files to include machine dependent information.
30281
30282 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
30283
30284         * threads.c (mono_thread_create): new function to create thread
30285         from C
30286
30287 2002-03-20  Martin Baulig  <martin@gnome.org>
30288
30289         * icall.c (ves_icall_InternalInvoke): Create a new object if the
30290         method is a constructor.
30291         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
30292         points to ves_icall_InternalInvoke().
30293
30294 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
30295
30296         * file-io.c: Flush shouldn't throw exceptions.
30297
30298 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
30299
30300         * file-io.c: FileStream flush support; FileSetLength now
30301         restores file pointer.
30302
30303 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
30304
30305         * class.c: set image for pointer classes.
30306
30307 2002/03/19  Nick Drochak <ndrochak@gol.com>
30308
30309         * sysmath.c: Forgot one.
30310
30311 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
30312
30313         * sysmath.c: Avoid redefining existing names.
30314
30315 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
30316
30317         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
30318         handled by runtime as icall rather than dllimport from libm.so
30319         * file-io.c, file-io.h: fixed handle argument type.
30320
30321 2002-03-18  Dick Porter  <dick@ximian.com>
30322
30323         * reflection.c (mono_image_get_type_info): rename interface to
30324         iface, because of "#define interface struct" on windows.
30325
30326 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
30327
30328         * class.c, class.h: rename and export mono_ptr_class_get().
30329         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
30330         * reflection.c, reflection.h, icall.c: better/saner type name
30331         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
30332         method signatures.
30333
30334 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
30335
30336         * class.c (mono_class_init): removed hardcoded GHC_SLOT
30337
30338         * icall.c (ves_icall_InternalInvoke): impl.
30339
30340 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30341
30342         * reflection.c: output the interface map table, too.
30343
30344 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
30345
30346         * class.c (class_compute_field_layout): separate computation of 
30347         static field layout
30348
30349 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
30350
30351         * icall.c: added System.Buffer support.
30352         * file-io.c: moved file icalls from PAL to FileStream.
30353
30354 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
30355
30356         * icall.c (ves_icall_System_Object_GetHashCode): impl.
30357
30358 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
30359
30360         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
30361
30362 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30363
30364         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
30365
30366 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
30367
30368         * debug-helpers.{c,h}: moved here from monograph some useful functions
30369         to locate a method by name/signature in a class or image. Included
30370         also a small and flexible IL disassembler.
30371
30372 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30373
30374         * reflection.c: fixup tokens in methods with small header size, too.
30375
30376 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
30377
30378         * object.c (mono_string_to_utf8): remove assert(!error), instead
30379         print a warning. 
30380
30381 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
30382
30383         * icall.c: update to the new mono_Array_class_get interface.
30384
30385 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
30386
30387         * appdomain.c, object.c: Boehm-GC enable.
30388         * icall.c: make get_data_chunk() support split data requests.
30389         Ensure a class is initialized in more cases. Return only the first
30390         property found in GetProperties() or the compiler gets confused. 
30391         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
30392         * reflection.h, reflection.c: add fixup mechanism for field and method
30393         tokens. Initialize assembly->typeref in a single place. Output
30394         properties after events. Support custom attributes for events, too.
30395         Typo fix for paramter custom attrs.
30396
30397 2002-03-07  Martin Baulig  <martin@gnome.org>
30398
30399         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
30400
30401 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
30402
30403         * class.c (mono_array_class_get): fix. for multi. dim. arrays
30404
30405 2002-03-06  Martin Baulig  <martin@gnome.org>
30406
30407         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
30408         non-zero lower bounds. See testcases #F10-#F13.
30409
30410 2002-03-05  Martin Baulig  <martin@gnome.org>
30411
30412         * exception.c (mono_get_exception_argument_out_of_range): New exception.
30413
30414         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
30415         ves_icall_System_Array_GetValue(), only calculate the absolute array position
30416         here.
30417         (ves_icall_System_Array_SetValue): Likewise.
30418         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
30419         as argument and does the actual work. This function is used when copying a
30420         multi-dimensional array.
30421         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
30422         now do all the widening conversions of value types.
30423         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
30424
30425 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30426
30427         * class.c: remove some magic numbers and use the smbolic names,
30428         instead. Added init_events() to load event info at class init time.
30429         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
30430         and mono_metadata_methods_from_event().
30431         * reflection.h, reflection.c: added support for writing out the evnets
30432         related information.
30433
30434 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
30435
30436         * reflection.h, icall.c: use a different method (GetInterfaces)
30437         to gather interface info and add isbyref, isprimitive and
30438         ispointer to the ves_icall_get_type_info() return value.
30439
30440 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
30441
30442         * class.h: stared adding support for events.
30443         * icall.c: split find_members implementation. Added debug icall to get
30444         the address of an object.
30445         * reflection.c: handle TypeBuilders in mono_type_get_object().
30446
30447 2002-03-01  Martin Baulig  <martin@gnome.org>
30448
30449         * icall.c (ves_icall_System_Array_GetLength): This must throw an
30450         ArgumentOutOfRangeException(), not an ArgumentException().
30451         (ves_icall_System_Array_GetLowerBound): Likewise.
30452         (ves_icall_System_Array_GetValue): Improved argument checking.
30453         (ves_icall_System_Array_SetValue): Improved argument checking.
30454
30455 2002-03-01  Martin Baulig  <martin@gnome.org>
30456
30457         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
30458         called with invalid arguments rather than just dying with g_assert().
30459         (ves_icall_System_Array_SetValue): Likewise.
30460         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
30461         raise a NotImplementedException instead.
30462         (ves_icall_System_Array_GetLength): Added argument checking.
30463         (ves_icall_System_Array_GetLowerBound): Added argument checking.
30464
30465 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
30466
30467         * object.h (mono_assert): new macros mono_assert and
30468         mono_assert_not_reached
30469
30470 2002-02-28  Martin Baulig  <martin@gnome.org>
30471
30472         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
30473         and "System::String::IsInterned" to "System::String::_IsInterned".
30474
30475 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
30476
30477         * icall.c: remove hacks for typebuilder. Added icall to create a
30478         modified type from a tybebuilder.
30479         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
30480         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
30481         to create a backing MonoClass for a TypeBuilder.
30482
30483 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30484
30485         * class.c, class.h: more refactoring of class init.
30486         Export mono_class_setup_mono_type() and mono_class_setup_parent().
30487
30488 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
30489
30490         * marshal.c, marshal.h: start of marshaling interface.
30491
30492 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
30493
30494         * icall.c: fix order in assembly qualified name icall.
30495
30496 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
30497
30498         * class.c: do not free str, since we store it in the hash table.
30499         * reflection.h: add label field to MonoILExceptionInfo.
30500         * reflection.c: handle references to more than one assembly. Handle
30501         case when there isn't a module created in the assembly.
30502
30503 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
30504
30505         * class.c: Fix typo. Start refactoring of class init code.
30506
30507 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
30508
30509         * appdomain.c: exit with 1 on error.
30510         * class.c: we already have the name in MonoClassField.
30511         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
30512         MonoStreamHeader instead of an offset of image->raw_metadata.
30513
30514 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
30515
30516         * appdomain.c (mono_init): Be even more descriptive about the error.
30517
30518 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
30519
30520         * appdomain.c: give the user an informative message when corlib can't
30521         be loaded.
30522
30523 2002-02-26  Martin Baulig  <martin@gnome.org>
30524
30525         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30526         New icall to get the time zone data.
30527
30528 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30529
30530         * reflection.c: set virtual and raw size of section correctly.
30531         * threads.c: transfer domain information to newly created threads.
30532
30533 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
30534
30535         * class.c: when instancing a class in a domain, load the default
30536         vaules for static fields from the constant table. Fix System.Enum to
30537         not be an enum.
30538         * icall.c: implement Object::GetType() internalcall. Implemented
30539         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
30540         Fixed checking of binding flags in find_members().
30541         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
30542         * reflection.c: handle enumerations when writing to the constant
30543         table. Use a different object cache for types.
30544
30545
30546 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
30547
30548         * object.c (mono_object_isinst): fix for arrays
30549
30550         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
30551
30552 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
30553
30554         * object.c: don't use mprotect ()  and fix intern pool hash table
30555         lookup for big endian systems.
30556
30557 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30558
30559         * icall.c: change type_is_subtype_of () signature.
30560
30561 2002-02-21  Mark Crichton  <crichton@gimp.org>
30562
30563         * rand.c, rand.h: Added random number generator for
30564         System.Security.Cryptography classes.
30565
30566         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
30567
30568         * icall.c: Added System.Security.Cryptography calls.
30569
30570 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
30571
30572         * class.c, icall.c, metadata.c: better support for pointer types.
30573         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
30574         * reflection.c: Add support for getting custom attrs for properties
30575         and simplify some code.
30576
30577 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30578
30579         * icall.c: change getToken () and add custom attribute GetBlob()helper
30580         method.
30581         * reflection.h: add custom attrs array to the reflection builder structures.
30582         * reflection.c: encode and emit custom attributes for all the relevant
30583         reflection objects. Cache fieldref and methodref tokens. Change
30584         mono_image_create_token() interface to take a MonoDynamicAssembly.
30585         More complete custom attributes decoder. Load custom attributes for
30586         Assembly, Field, Method and Constructor objects, too. Make the
30587         returned array an Attribute[] one, not object[]. Added
30588         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
30589         custom attribute constructor.
30590
30591 2002-02-20  Dick Porter  <dick@ximian.com>
30592
30593         * icall.c:
30594         * rawbuffer.c:
30595         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
30596         problem code out for now).
30597
30598 2002-02-19  Radek Doulik  <rodo@ximian.com>
30599
30600         * object.c (mono_ldstr): use hash table to avoid multiple swapping
30601
30602 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
30603
30604         * icall.c: register the GetCustomAttributes method.
30605         * object.c, object.h: add mono_string_new_len ().
30606         * reflection.h, reflection.c: added mono_runtime_invoke(),
30607         mono_install_runtime_invoke(). Added
30608         mono_reflection_get_custom_attrs () to load custom attributes and
30609         create the attribute objects.
30610
30611 2002-02-19  Dick Porter  <dick@ximian.com>
30612         * threads-dummy-types.c:
30613         * threads-dummy-types.h:
30614         * threads-dummy.c:
30615         * threads-dummy.h:
30616         * threads-pthread-types.c:
30617         * threads-pthread-types.h:
30618         * threads-pthread.c:
30619         * threads-pthread.h:  Deleted obsolete files
30620
30621 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
30622
30623         * class.c (mono_class_vtable): runtime init the class when we
30624         allocate static class data.
30625
30626         * icall.c (ves_icall_System_Array_SetValue): check for null values.
30627
30628         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
30629         and String - but we will need generic marshalling support in the
30630         future. 
30631         (mono_init): set the domain name in a ms compatible way
30632
30633         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
30634         String[].
30635
30636 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
30637
30638         * object.c (mono_array_clone): use alloca() instead of g_malloc  
30639         for sizes
30640
30641         * appdomain.c (mono_domain_unload): impl.
30642
30643 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30644
30645         * appdomain.c, object.c: fix intern pool implementation.
30646         * class.c: fix alignment code.
30647
30648 2002-02-16  Radek Doulik  <rodo@ximian.com>
30649
30650         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
30651         and s2 > s1, just copy lower bytes to be compatible with little
30652         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
30653         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
30654
30655         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
30656         force big_endian to be 1 for big endian machines 
30657         (ves_icall_iconv_new_decoder): ditto
30658
30659 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
30660
30661         * socket-io.c (convert_sockopt_level_and_name): If the system
30662         doesn't define SOL_IP or SOL_TCP, get them by hand using
30663         getprotobyname() and caching the values (because this could be a
30664         slow operation).
30665         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
30666         Use the appropriate struct when the system does support it. Ie,
30667         not all systems have struct ip_mreqn so use struct ip_mreq when
30668         appropriate.
30669
30670 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
30671
30672         * reflection.c: handle finally clauses.
30673
30674 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
30675
30676         * socket-io.c: use g_snprintf() instead of snprintf.
30677
30678 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
30679
30680         * reflection.c (mono_param_get_objects): Cast second argument to
30681         mono_method_get_param_names to a const char** to silence the
30682         compiler warning.
30683
30684         * appdomain.c (mono_domain_assembly_open): Put parens around the
30685         truth statement in the for-loop.
30686
30687         * unicode.c (iconv_convert): Got rid of a compiler warning about
30688         int i being unused when the system has a new iconv.
30689         (iconv_get_length): Same.
30690
30691         * image.c (load_class_names): Cast the second argument to
30692         g_hash_table_insert() to char* to hush compiler warnings about the
30693         arg being a const.
30694         (mono_image_open): Same here.
30695
30696         * socket-io.c: Don't conditionally include sys/filio.h or
30697         sys/sockio.h here anymore since we now get them from
30698         io-layer/io-layer.h
30699         (inet_pton): If the system doesn't support inet_aton, implement
30700         using inet_addr and also #define INADDR_NONE if it isn't defined
30701         by the system.
30702
30703 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
30704
30705         * metadata.c, metadata.h: added function to get packing and size info
30706         of a typedef.
30707         * reflection.h, reflection.c: handle field RVA data. Save info about
30708         the table layout if needed. Assign typedef indexes to all the types
30709         before dumping the info about them to avoid forward reference problems.
30710
30711 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
30712
30713         * socket-io.c (convert_sockopt_level_and_name): ifdef
30714         SO_ACCEPTCONN because it is not defined on my system (old debian)
30715
30716 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30717
30718         * opcode.c: use stddef.h to get NULL.
30719
30720 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
30721
30722         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
30723         for FIONBIO, FIONREAD and SIOCATMARK.
30724         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
30725         define INADDR_NONE and besides, inet_addr() is deprecated and
30726         should not be used. Use inet_pton() instead - it also has the
30727         added bonus that it can easily handle IPv6 addresses as well.
30728         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
30729
30730 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
30731
30732         * decimal.c: remove _MSC_VER conditional.
30733
30734 2002-02-13  Dick Porter  <dick@ximian.com>
30735
30736         * socket-io.c: 
30737         * icall.c: Internal calls for Blocking, Select, Shutdown,
30738         GetSocketOption and SetSocketOption
30739
30740 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30741
30742         * assembly.cs: better resolver: use it instead of some kludgy
30743         code.
30744
30745 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
30746
30747         * reflection.c: the best way to speed-up the compiler is to avoid
30748         infinite loops.
30749
30750 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
30751
30752         * class.c (mono_class_vtable): changed the object layout
30753         (obj->vtable->class). 
30754         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
30755
30756 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30757
30758         * assembly.c: look for assemblies in the assembly dir, too.
30759
30760 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30761
30762         * class.c: fix thinko in mono_class_from_type().
30763
30764 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30765
30766         * exception.h, exception.c: added TypeLoadException.
30767         * object.h, object.c: added mono_array_clone ().
30768         * icall.c: handle throwOnError in AssemblyGetType().
30769         Added Array.Clone().
30770         * opcode.h, opcode.c: use a single value for the opcode val.
30771         Compile fix for non-gcc compilers.
30772
30773 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
30774
30775         * opcodes.c, opcodes.h: export interesting info about opcodes.
30776
30777 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
30778
30779         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
30780         icalls. 
30781
30782         * class.c (class_compute_field_layout): set element_class for enums
30783         (mono_class_create_from_typedef): set element_class for normal classes
30784
30785         * icall.c (ves_icall_System_Enum_get_value): impl.
30786
30787         * class.c (mono_class_create_from_typedef): do not set valuetype
30788         flag for System.ValueType and System.Enum
30789
30790 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
30791
30792         * unicode.c (iconv_convert): fix big endian problem.
30793
30794 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30795
30796         * class.c: add asserts if we are ever going to scribble over memory.
30797         * socket-io.c: not all systems have AF_IRDA defined.
30798
30799 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
30800
30801         * class.c (class_compute_field_layout): do not consider static
30802         fields to compute alignment
30803
30804 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
30805
30806         * appdomain.c (mono_appdomain_get): impl.
30807         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
30808
30809 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
30810
30811         * icall.c: ignore "file://" prefix when loading an assembly.
30812
30813 2002-01-23  Dick Porter  <dick@ximian.com>
30814
30815         * socket-io.c:
30816         * icall.c:
30817         * Makefile.am: Added socket support
30818
30819 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
30820
30821         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
30822         code back.  This should return the assemblies that are loaded by
30823         the runtime on behalf of an application domain. 
30824
30825         The current implementation is still broken, it just returns every
30826         assembly loaded, but until we get real applications domain this
30827         will do.
30828
30829 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
30830
30831         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
30832         AppDomain object.
30833
30834 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
30835
30836         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
30837         the mono_class_from_name lookup.
30838         (ves_icall_get_parameter_info): ditto.
30839         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
30840         method.
30841         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
30842
30843 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
30844
30845         * class.c: load also nested classes on class init.
30846         System.ValueType instance methods gets passed boxed
30847         values, unless methods in derived classed that get a pointer to the
30848         data.
30849         * icall.c: use better name parsing code in GetType().
30850         * image.c, image.h: add mono_image_loaded ().
30851         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
30852         * reflection.c, reflection.h: added mono_reflection_parse_type().
30853
30854 2002-01-22  Veronica De Santis <veron78@interfree.it>
30855
30856         * icall.c : Added mapping of internal calls for Manual and Auto reset events
30857         * threads.c : Added the implementation of internal calls for events
30858         * threads.h : Added prototypes of internal calls for events
30859         
30860 2002-01-21  Radek Doulik  <rodo@ximian.com>
30861
30862         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
30863
30864 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
30865
30866         * class.c (mono_class_init): set min_align to 1 (instead of 0)
30867         (mono_class_value_size): use min_align
30868
30869 2002-01-20  Dick Porter  <dick@ximian.com>
30870
30871         * threads.h:
30872         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
30873         so it compiles on w32.
30874
30875 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
30876
30877         * metadata.c (mono_type_stack_size): impl.
30878
30879         * class.c (mono_class_get_field): impl. memberref token
30880
30881 2002-01-16 Veronica De Santis <veron78@@interfree.it>
30882
30883         * icall.h : Added the internal calls mapping for CreateMutex_internal
30884                     and ReleaseMutex_internal.
30885         * threads.h : Added the prototype of mutexes internal calls.
30886         * threads.c : Added the implementations of mutexes internal calls.
30887
30888 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
30889
30890         * metaparse.h: removed unused file.
30891         * reflection.c, reflection.h: added stream_data_align () function 
30892         to align data in streams and keep stream aligned. Add support for
30893         exception support in method headers.
30894
30895 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
30896
30897         * unicode.c: make iconv_convert () return the number of bytess written
30898         in the output buffer.
30899
30900 2002-01-15  Dick Porter  <dick@ximian.com>
30901         * threads.c: Make the runtime's idea of infinite timeouts coincide
30902         with the class library's
30903
30904         Fix a particularly egregious bug in mono_thread_cleanup(). That
30905         code was so utterly bogus it must have been written on a Monday.
30906
30907 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
30908
30909         * reflection.h: add subtypes field to TypeBuilder.
30910         * reflection.c: encode constants for literal fields.
30911         Handle subtypes. Fix user string token (and add a zero byte)
30912         at the end.
30913         
30914 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
30915
30916         * class.c (mono_class_init): bug fix: assign slot numbers for
30917         abstract methods.
30918
30919 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30920
30921         * reflection.c: don't try to output a code RVA for abstract methods.
30922         Small fixes for method header format. Output parameter info to the
30923         ParamDef table. Save method overriding info to MethodImpl table.
30924         Fix property support. Allow typedef.extends to be a type in the
30925         building assembly.
30926         * verify.c: fix off-by-one error.
30927
30928 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
30929
30930         * class.c: fix mono_class_from_mono_type () for szarray types.
30931         Remove unused cache check in mono_class_from_type_spec().
30932         * icall.c: *type_from_name () functions handle simple arrays and byref.
30933         * reflection.c: handle byref and szarray types. Handle methods without
30934         body (gets P/Invoke compilation working). Handle types and fields in
30935         get_token ().
30936         * reflection.h: add rank to MonoTypeInfo.
30937
30938 2002-01-10  Dick Porter  <dick@ximian.com>
30939
30940         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
30941         internal calls
30942
30943 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
30944
30945         * icall.c: initialize class in type_from_handle ().
30946         Loop also in parent classes for get_method ().
30947         * reflection.c: properly encode class and valuetype types.
30948         Start on encoding TypeBuilder types. Handle fieldrefs.
30949         Use correct length when registering a user string.
30950         Handle ConstructorBuilder and MonoMethod in get_token ().
30951         Make mono_type_get_object () aware of cached types.
30952         * object.c: back out change to mono_string_new ().
30953
30954 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
30955         * object.c: mono_string_new should return a NULL when the string 
30956         passed in is NULL -- not try to deference it.
30957         
30958 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
30959
30960         * icall.c: hack to make IsSubType work for TypeBuilders.
30961         * reflection.c: emit constructors before methods.
30962         Retrieve param names in mono_param_get_objects().
30963
30964 2002/01/05  Nick Drochak  <ndrochak@gol.com>
30965
30966         * Makefile.am: fix list of headers and sources so automake 1.5
30967         doesn't complain. Removed \# at end of list.
30968
30969 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
30970
30971         * reflection.c: get token for a method ref. Set return type of
30972         constructor to void.
30973         * loader.c: debug message.
30974         * class.c: typo fix.
30975
30976 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
30977
30978         * icall.c: fix array init with rank > 1. FindMembers
30979         loops in parent class as well.
30980         * image.c: do not insert nested types in name cache.
30981         * reflection.c: warning fix.
30982         * reflection.h: add override method (for interface impl).
30983
30984 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
30985
30986         * metadata.c: fix customattr decoding.
30987
30988 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
30989
30990         * rawbuffer.cs: Added native Win32 implementation, avoids using
30991         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
30992
30993 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
30994
30995         * class.c: make the low-level routines handle the cache.
30996
30997 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
30998
30999         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
31000
31001 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
31002
31003         * class.c: fix mono_array_element_size() for objects.
31004         * class.h, class.c: add properties to MonoClass and load them
31005         at init time.
31006         * icall.c: check with isinst() when assigning a value to an array
31007         instead of requiring the classes to match exactly.
31008         Implemented icall for System.Type::GetType().
31009         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
31010         enums. Handle bindingflags when looking for methods and fields.
31011         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
31012         and mono_metadata_methods_from_property().
31013         * reflection.h, reflection.c: added structures for propreties,
31014         parameters and enums. Implemented mono_property_get_object() and
31015         mono_param_get_objects().
31016
31017 2001-12-18  Dick Porter  <dick@ximian.com>
31018
31019         * file-io.c: Use mono_string_to_utf16() instead of
31020         mono_string_chars()
31021
31022         * object.c: Added mono_string_to_utf16(), which copies the non
31023         NULL-terminated MonoString into a new double-null-terminated
31024         buffer.
31025
31026 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
31027
31028         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
31029
31030 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
31031
31032         * file-io.c: raise exceptions if handle is invalid.
31033
31034 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
31035
31036         * assembly.c: yet another check for mscorlib.
31037         * class.c, class.h: load nesting info for classes.
31038         * icall.c: many new functions to support the Reflection classes.
31039         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
31040         * reflection.h, reflection.c: mono_image_create_token(),
31041         mono_assembly_get_object(), mono_type_get_object(),
31042         mono_method_get_object(), mono_field_get_object(): methods to return
31043         objects that parallel the C representation of assemblies, types,
31044         methods, fields.
31045
31046 2001-12-11  Dick Porter  <dick@ximian.com>
31047
31048         * icall.c:
31049         * file-io.c: Internal calls for file IO.
31050
31051 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
31052
31053         * tabledefs.h: missing FileAttributes.
31054         * verify.h, verify.c: use is_valid_string () to simplify and check for
31055         valid strings more correctly. Fix warnings and speeling.
31056         Check more tables: Filed, File, ModuleRef, StandAloneSig.
31057         Check code: branches, maxstack, method calls.
31058
31059 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
31060
31061         * object.c (mono_object_allocate): removed static, so that the jit
31062         can allocate value types.
31063
31064         * icall.c (ves_icall_System_DateTime_GetNow): impl.
31065
31066 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
31067
31068         * class.c: init enum types right away and register the
31069         token->MonoClass map in mono_class_create_from_typedef ().
31070         * verify.h, verify.c: first cut of the verifier.
31071         * pedump.c: add --verify switch to verify metadata tables.
31072         * tabledefs.h: add some missing enums.
31073
31074 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
31075
31076         * class.c (mono_install_runtime_class_init): impl.
31077         (mono_class_init): renamed mono_class_metadata_init to
31078         mono_class_init, also removed the metadata_inited flag
31079
31080         * object.c (mono_object_isinst): use faster algorithm
31081
31082 2001-11-30  Radek Doulik  <rodo@ximian.com>
31083
31084         * mono-endian.h: reverted last change
31085         added function prototypes
31086
31087         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
31088         add mono-endian.c back
31089
31090         * mono-endian.c: returned back, as Paolo pointed out, it's needed
31091         for unaligned access, I've mistaked it with endianess. I am
31092         sorry.
31093         (mono_read16): fix reverted endianess
31094         (mono_read64): ditto
31095         (mono_read32): ditto
31096
31097 2001-11-30  Dick Porter  <dick@ximian.com>
31098
31099         * exception.c: Implement mono_exception_from_name()
31100
31101 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
31102
31103         * metadata.h, metadata.c: remove params_size and locals_size and their
31104         calculation from the metadata code: they are only usefult to the
31105         interp.
31106
31107 2001-11-29  Radek Doulik  <rodo@ximian.com>
31108
31109         * object.c (mono_ldstr): swap bytes here, it's probably not the
31110         best place, but works for me now, I'll redo it once I know mono
31111         better, also note that I add PROT_WRITE and don't reset back, also
31112         note that it's only affects big endians, so x86 should be OK
31113
31114         * mono-endian.h (read16): use just glib macros for both endians
31115
31116         * mono-endian.c: removed as glib macros are used in in
31117         mono-endian.h so we don't need to care about endianess for read
31118         macros as glib does that for us already
31119
31120 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
31121
31122         * class.h, class.h: take minimum alignment into consideration so
31123         that the fields of a class remain aligned also when in an array.
31124
31125 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
31126
31127         * loader.h, loader.c: add mono_method_get_param_names().
31128         * class.c: 0-init class fields.
31129
31130 2001-11-26  Dick Porter  <dick@ximian.com>
31131
31132         * icall.c:
31133         * threads-types.h:
31134         * threads.c: New file that handles System.Threading on all platforms
31135
31136         * object.c: 
31137         * object.h: Remove the synchronisation struct from MonoObject,
31138         replace it with a pointer that gets initialised on demand
31139
31140         * Makefile.am: Replace all the system-specific threading code with
31141         a single file that uses the new wrapper library
31142
31143 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
31144
31145         * class.c, class.h: add mono_install_trampoline() so that the runtime
31146         can register a function to create a trampoline: removes the ugly
31147         requirement that a runtime needed to export arch_create_jit_trampoline.
31148         * object.h, object.c: added mono_install_handler() so that the runtime
31149         can install an handler for exceptions generated in C code (with
31150         mono_raise_exception()). Added C struct for System.Delegate.
31151         * pedump.c: removed arch_create_jit_trampoline.
31152         * reflection.c: some cleanups to allow registering user strings and
31153         later getting a token for methodrefs and fieldrefs before the assembly
31154         is built.
31155         * row-indexes.h: updates and fixes from the new ECMA specs.
31156
31157 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
31158
31159         * class.h, class.c: add enum_basetype field to MonoClass.
31160         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
31161         to get index in the constant table reated to a field, param or
31162         property.
31163         * reflection.h, reflection.c: handle constructors. Set public-key and
31164         version number of the built assembly to 0.
31165         * row-indexes.h: update from new ECMA spec.
31166
31167 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
31168
31169         * class.h, class.c: add a max_interface_id to MonoClass.
31170         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
31171         since it's used to do that. Added mono_type_type_from_obj().
31172         Make GetType() return NULL instead of segfaulting if the type was not
31173         found. Handle simple arrays in assQualifiedName.
31174         * object.h: add a struct to represent an Exception.
31175         * reflection.c: output call convention in method signature.
31176         Add code to support P/Invoke methods and fixed offsets for fields.
31177
31178 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
31179
31180         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
31181         the value.
31182         * icall.c: use mono_array_addr instead of array->vector: fixes the
31183         reflection image writing.
31184         * reflection.c: init call convention byte to 0 in method signature.
31185         Encode the property signature. Don't output property-related methods
31186         twice. Really process the properties for a type (don't cast a field to
31187         a property, my mom always told me that).
31188         Fix 64 bit issues in pointer alignment in a different and more
31189         readable way.
31190
31191 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
31192
31193         * loader.h: Removed type class from MonoDefaults, added monotype
31194
31195         * loader.c: Loaded MonoType, removed loading of Type
31196
31197         * icall.c (my_mono_new_object): Now returns a System.MonoType,
31198         and fills in System.Type._impl with a RuntimeTypeHandle rather
31199         than the actual MonoClass *
31200
31201         (ves_icall_type_from_handle): change from type_class to
31202         monotype_class
31203
31204         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
31205         implemented
31206
31207         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
31208         implemented
31209
31210         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
31211
31212         (ves_icall_System_Reflection_Assembly_GetType): implemented
31213
31214         (ves_icall_System_MonoType_assQualifiedName): implemented
31215
31216         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
31217
31218 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
31219
31220         * assembly.c (mono_assembly_open): Implement a cache for the
31221         assemblies. 
31222
31223         (mono_assembly_close): only destroy the assembly when the last
31224         reference is gone.
31225         
31226 2001-11-09  Dick Porter  <dick@ximian.com>
31227
31228         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
31229
31230 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
31231
31232         * class.c (mono_class_metadata_init): bug fix: compute the right slot
31233
31234 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
31235
31236         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
31237         from Martin Weindel.
31238         * object.h: add mono_string_chars ().
31239
31240 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
31241
31242         * reflection.c (build_compressed_metadata): Eliminates warnings
31243         and uses 64-bit clean code.
31244
31245         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
31246         (mono_type_equal): Change signature to eliminate warnings.
31247
31248 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
31249
31250         * icall.c, loader.c: remove the internalcall array constructors.
31251         Changes to match the new MonoArray structure.
31252         * object.h, object.c: an array object doesn't allocate an extra
31253         vector. Add mono_array_new_full () to create jagged arrays easily.
31254
31255 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
31256
31257         * metadata.h, metadata.c: add mono_metadata_field_info () to
31258         retreive all the info about a field from vairous tables.
31259         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
31260         * class.h, class.c: augment MonoClassField with more info.
31261         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
31262         policy and load a field's RVA if needed.
31263
31264 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
31265
31266         * class.c (mono_class_metadata_init): create a trampoline for all
31267         virtual functions instead of actually compiling them.
31268
31269 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
31270
31271         * class.h, class.c: include name in MonoClassField.
31272         * class.c: fix fundamental type of System.Object and System.String.
31273         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
31274         tokens in ldtoken.
31275         * icall.c: remove internalcalls for the Reflection stuff that is now
31276         done in C# code.
31277         * loader.c: mono_field_from_memberref () implementation.
31278         * mono-endian.c: thinko (s/struct/union/g).
31279         * object.c, object.h: make the mono_string_* prototypes actually use
31280         MonoString instead of MonoObject.
31281         * reflection.c, reflection.h: updates for changes in the reflection
31282         code in corlib: we use C structures that map to the actual C# classes.
31283         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
31284         fat method header if needed and use the info from the ILGenerator for
31285         methods. Handle fields in types. Misc fixes.
31286
31287 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
31288
31289         * class.c (mono_class_metadata_init): bug fix: always allocate
31290         space for static class data
31291
31292 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
31293
31294         * class.c (mono_compute_relative_numbering): use relative
31295         numbering to support fast runtime type checks.
31296
31297 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
31298
31299         * class.c (mono_class_create_from_typeref): added debugging output
31300         to print class name when MonoDummy is returned instead of real class
31301
31302 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
31303
31304         * class.c (mono_class_metadata_init): interface offset table now
31305         contains pointers into the vtable - this is more efficient for the jit
31306
31307 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
31308
31309         * class.c (mono_class_metadata_init): use a temporary vtable (the
31310         old algorithm only worked for the interpreter, but not for the jit)
31311
31312 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
31313
31314         * loader.c (method_from_memberref): use mono_class_get to get the
31315         class of an array instead of using System.Array directly.
31316         (mono_get_method): also add MEMBERREF methods to the method cache
31317         which usefull for arrays.
31318
31319 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
31320
31321         * pedump.c (arch_compile_method): added to compute vtable entry
31322
31323         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
31324         number of interfaces.
31325         
31326         * class.h: merged MonoArrayClass into MonoClass
31327
31328         * class.c (mono_class_create_from_typedef): compute the vtable size and
31329         allocate space to include the vtable inside MonoClass
31330         (mono_class_metadata_init): initialize the vtable
31331
31332 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
31333
31334         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
31335         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
31336         * image.c: endian fixes by Laurent Rioux.
31337         * object.h, object.c: rename MonoStringObject to MonoString and
31338         MonoArrayObject to MonoArray. Change some function names to conform to
31339         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
31340         guint16* as first argument, so don't use char*.
31341         Provide macros to do the interesting things on arrays in a portable way.
31342         * threads-pthread.c: updates for the API changes and #include <sched.h>
31343         (required for sched_yield()).
31344         * icall.c: updates for the API changes above.
31345         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
31346         platforms that need them.
31347
31348 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
31349
31350         * class.c: set the correct type for all the fundamental
31351         type when loading the class.
31352
31353 2001-10-05  Dick Porter  <dick@ximian.com>
31354
31355         * threads-pthread.c (pthread_mutex_timedlock): Simple
31356         compatibility version for C libraries that lack this call.
31357
31358 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31359
31360         * class.c: MonoTypes stored in MonoClass are stored as
31361         fundamental MonoTypes when the class represents a
31362         fundamental type (System.Int32, ...).
31363         The TypeHandle return by ldtoken is a MonoType*.
31364         * icall.c: ves_icall_get_data_chunk () write out all the
31365         PE/COFF stuff. Implement ves_icall_define_method (),
31366         ves_icall_set_method_body (), ves_icall_type_from_handle ().
31367         * image.c: properly skip unknown streams.
31368         * loader.h, loader.c: add type_class to mono_defaults.
31369         * metadata.c, metadata.h: export compute_size () as
31370         mono_metadata_compute_size () with a better interface.
31371         Typo and C&P fixes.
31372         * pedump.c: don't try to print the entry point RVA if there is no entry point.
31373         * reflection.c, reflection.h: many cleanups, fixes, output method
31374         signatures and headers, typedef and typeref info, compress the metadata
31375         tables, output all the heap streams, cli header etc.
31376         * row-indexes.h: typo fixes.
31377
31378 2001-10-04  Dick Porter  <dick@ximian.com>
31379
31380         * object.h: Add a synchronisation mutex struct to MonoObject
31381
31382         * object.c (mono_new_object): Initialise the object
31383         synchronisation mutexes
31384
31385         * icall.c: System.Threading.Monitor internal calls
31386         
31387         * threads-pthread.h:
31388         * threads-pthread.c: System.Threading.Monitor internal calls
31389
31390         * threads-types.h: New file, includes the system-specific thread
31391         structures
31392         
31393         * threads-pthread-types.h:
31394         * threads-pthread-types.c: New files, handle pthread-specific
31395         synchronisation types
31396
31397         * threads-dummy-types.h: 
31398         * threads-dummy-types.c: New files of dummy support for
31399         thread-specific types
31400
31401         * metadata.c:
31402         * image.c:
31403         * pedump.c: include mono-endian.h not endian.h
31404         
31405         * Makefile.am: More threads files.
31406         Name mono-endian.h not endian.h
31407
31408 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
31409
31410         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
31411         stuff and implement a few more bits.
31412         * icall.c: a field needs to be dereferenced twice. Do not use the same
31413         name for two variables in the same scope.
31414         * image.c, image.h: cleanups.
31415
31416 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
31417
31418         * class.c (mono_class_metadata_init): bug fix: compute the right size
31419
31420 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
31421
31422         * icall.c: implemented some of the Reflection internalcalls.
31423         * image.c, image.h: start writing out the PE/COFF image.
31424         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
31425         that does the reverse than decode_blob_size ().
31426         * object.c: use mono_metadata_encode_value (). Move here
31427         temporary implementation of mono_string_to_utf8 ().
31428         * rawbuffer.c: make malloc_map static.
31429
31430 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31431
31432         * metadata.c: fix type comparison for arrays.
31433         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
31434         Added a couple of new classes to monodefaults.
31435         * icall.c: added a couple of Reflection-related internalcalls.
31436         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
31437         Added a byval_arg MonoType to MonoClass.
31438
31439 2001-09-28  Dick Porter  <dick@ximian.com>
31440
31441         * icall.c:
31442         * threads-pthread.h: 
31443         * threads-pthread.c: Implemented internal calls for
31444         LocalDataStoreSlot operations.  Applied mutexes around all shared
31445         data.  Reworked the thread creation and Start() operations to
31446         avoid a race condition.
31447         
31448         * threads-dummy.h:
31449         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
31450
31451 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
31452
31453         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
31454
31455 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
31456
31457         * class.c, loader.c: warn and return NULL instead of erroring out.
31458         * icall.c: added System.AppDomain::getCurDomain().
31459         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
31460
31461 2001-09-25  Dick Porter  <dick@ximian.com>
31462
31463         * threads-pthread.h:
31464         * threads-pthread.c: Implemented timed thread joining and added
31465         System.Threading.Thread::Join_internal internal call
31466
31467         * icall.c: Added System.Threading.Thread::Join_internal internal call
31468
31469         * threads-dummy.h:
31470         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
31471
31472 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
31473
31474         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
31475         mono_string_intern () to implement the semantics of the ldstr opcode
31476         and the interning of System.Strings.
31477         * icall.c: provide hooks to make String::IsIntern and String::Intern
31478         internalcalls.
31479
31480 2001-09-23  Dick Porter  <dick@ximian.com>
31481
31482         * threads-dummy.c: 
31483         * threads-dummy.h: New files of dummy threading routines
31484
31485         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
31486         support code based on system specifics
31487
31488         Rename PTHREAD_LIBS to THREAD_LIBS
31489         
31490 2001-09-23  Dick Porter  <dick@ximian.com>
31491
31492         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
31493         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
31494         internal calls.
31495         (mono_thread_init): Set up a Thread object instance to return when
31496         the main thread calls Thread.CurrentThread
31497         (mono_thread_cleanup): Wait for all subthreads to exit
31498
31499         * icall.c: New internal calls for System.Threading.Thread::Sleep
31500         (including Schedule) and CurrentThread
31501
31502         * threads.h: New file, to insulate thread-specific stuff from the
31503         rest of the code
31504
31505 2001-09-21  Dick Porter  <dick@ximian.com>
31506
31507         * threads-pthread.h: 
31508         * threads-pthread.c: New file, for handling pthreads-style
31509         threading support.  Start() now starts a new thread and executes
31510         the ThreadStart delegate instance.
31511
31512         * icall.c: Added the internalcall for
31513         System.Threading.Thread::Start_internal
31514
31515         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
31516
31517 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
31518
31519         * loader.c: work around the different signatures for delegates
31520         constructors csc generates in compiled code vs the ones compiled in mscorlib.
31521
31522 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
31523
31524         * class.h, class.c: add mono_class_get_field_from_name ().
31525         * *: Fix C comments and other ANSI C issues.
31526
31527 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
31528
31529         * endian.h, assembly.c: fix some endianness issues.
31530
31531 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
31532
31533         * loader.h, load.c: add delegate_class to mono_defaults.
31534         Handle runtime provided methods in mono_get_method ().
31535
31536 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
31537
31538         * loader.c (mono_get_method): use pinvoke for internal call
31539
31540         * icall.c: use pinvoke for internal call
31541
31542         * loader.c (method_from_memberref): set the method name
31543
31544 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
31545
31546         * metadata.c: help the compiler generate better code for
31547         mono_class_from_mono_type ().
31548
31549 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
31550
31551         * class.c (mono_class_metadata_init): delayed computing of the
31552         class size to mono_class_metadata_init ()
31553
31554 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
31555
31556         * class.c, class.h: add an interfaces member to MonoClass.
31557         * image.c, image.h: add assembly_name field to MonoImage
31558         from the assembly table.
31559         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
31560
31561 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
31562
31563         * class.c: Handle Array in mono_class_from_mono_type ().
31564         * metadata.c, pedump.c: some endian fixes.
31565
31566 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
31567
31568         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
31569         * metadata.c: fix small problem introduced with the latest commit.
31570
31571 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
31572
31573         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
31574         We don't need a MonoMetadata pointer anymore to compare signatures in
31575         mono_metadata_signature_equal (), update callers.
31576         Reduced memory usage an number of allocations for MonoMethodHeader and
31577         MonoMethodSignature.
31578
31579 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
31580
31581         * metadata.c: added compare for szarray.
31582
31583 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
31584
31585         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
31586         and add a couple more types to it and mono_defaults. Give an hint on
31587         classes that need implementing in our corlib and are referenced
31588         in mscorlib.
31589
31590 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
31591
31592         * class.h, class.c: keep track if a class is also an Enum.
31593         * loader.c: Implement a couple more types for use in libffi
31594         marshalling. Gives better diagnostics when failing to dlopen
31595         a library. Set method->klass for P/Invoke methods, too.
31596
31597 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
31598
31599         * class.c, class.h: add a MonoType this_arg to MonoClass that
31600         represents a pointer to an object of the class' type that
31601         can be used by the interpreter and later the type cache.
31602         Add best guess alignment info for valuetype objects.
31603
31604 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
31605
31606         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
31607         into MonoType: one less level of indirection and allocation and
31608         simplifies quite a bit of code. Added cache for MonoTypes that are
31609         used frequently, so that we don't need to allocate them all the time.
31610
31611 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
31612
31613         * class.c (mono_class_create_from_typedef): System.Enum is also a
31614         value type, although it does not derive from System.ValueType
31615         (maybe a bug in the ms compiler?)
31616
31617         * metadata.c (mono_type_size): return the right size for value types
31618
31619         * loader.c (mono_get_method): only initialize method header if not abstract
31620
31621         * class.c (mono_class_from_mono_type): use mono_default values. 
31622
31623 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
31624
31625         * *: use MonoClass pointers instead of <type_tokens>
31626         
31627         * class.h: new flag: metadata_inited.
31628
31629         * class.c (mono_class_metadata_init): impl.
31630         (mono_class_instance_size): impl.
31631         (mono_class_data_size): impl.
31632
31633 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31634
31635         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
31636         MonoClass now has the name and name_space fields. 
31637         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
31638         mono_get_method () takes and optional MonoClass as argument.
31639         Removed mono_typedef_from_name() and added mono_class_token_from_name()
31640         instead that takes advantage of a map from class names to typedef
31641         tokens in MonoImage.
31642
31643 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
31644
31645         * metadata.c: zero is not a valid alignment boundary.
31646         Merge MONO_TYPE_VOID in default decoding code.
31647
31648 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
31649
31650         * image.h: merged MonoMetadata into MonoImage
31651
31652         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
31653         identify the type of elements.
31654
31655 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
31656
31657         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
31658         * cil-coff.h: split MonoMSDOSHeader and add size info.
31659         * image.c: add some consistency checks.
31660         * metadata.c: fix row size computation: one programmer
31661         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
31662         add explanation for the locator routine.
31663         Fix decoding of size in method header.
31664         
31665 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
31666
31667         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
31668         (g_concat_dir_and_file): Bring g_concat_dir_and_file
31669         function from gnome-libs.  This uses the right path separator
31670         based on the OS, and also works around a bug in some systems where
31671         a double slash is not allowed. 
31672         (default_assembly_name_resolver): Use g_concat_dir_and_file
31673         (mono_assembly_open): ditto.
31674
31675 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
31676
31677         * metadata.c (mono_metadata_signature_equal): impl.
31678
31679         * *: void is now a realy MonoType (instead of using NULL)
31680         
31681         * metadata.c (do_mono_metadata_parse_type): use
31682         mono_metadata_parse_type to parse void value.
31683
31684 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
31685
31686         * metadata.c, metadata.h: in the signature and method header store
31687         only the space required for holding the loca vars and incoming arguments.
31688
31689 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
31690
31691         * metadata.c (do_mono_metadata_parse_type): treat void like any
31692         other type (instead of assigning NULL);
31693
31694 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
31695
31696         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
31697
31698 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
31699
31700         * image.c (do_mono_image_open): added a cache for arrays.
31701
31702 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
31703
31704         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
31705         decode a single column from a row in a metadata table and changes
31706         to take advantage of it in the typedef locator (gives a nice speed up).
31707         Store offset info for function params.
31708
31709 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
31710
31711         * image.h (MONO_IMAGE_IS_CORLIB): removed 
31712
31713 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
31714
31715         * assembly.c: how could mono_assembly_close () had ever worked?
31716         * metadata.c, metadata.h: provide offset info for local vars.
31717         Implement mono_type_size () to take care of alignment as well
31718         as size (it was mono_field_type_size in cli/class.c before).
31719
31720 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
31721
31722         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
31723
31724         * assembly.h (CORLIB_NAME): set to corlib.dll
31725
31726         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
31727
31728 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
31729
31730         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
31731         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
31732         tokentype.h: massive namespace cleanup.
31733
31734 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
31735
31736         * metadata.h, metadata.c: decode exception clauses when parsing method header.
31737
31738 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
31739
31740         * metadata.c (mono_metadata_free_type): added check for type !=
31741         NULL (void) before calling mono_metadata_free_type()
31742
31743 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
31744
31745         * metadata.h, row_indexes.h: added header with enumerations to use
31746         to index in the columns from tables in metadata and to decode coded
31747         tokens: we should start using this instead of embedding magic numbers
31748         all over the code.
31749
31750 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
31751
31752         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
31753         Move metadata_t info from cli_image_info_t to MonoImage, where
31754         it's easily accessible. Changed all the uses accordingly.
31755         Added the method and class caches to MonoImage.
31756         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
31757         and mono_metadata_decode_value () signature to be more consistent
31758         with the other parse functions (and simplify code). Taken advantage
31759         of zero-length array allocation with GCC. Removed reduntant (and
31760         wrong) MonoFieldType struct and use MonoParam instead. Changed
31761         mono_metadata_parse_field_type () to use common code for parsing.
31762         Added mono_metadata_typedef_from_field () and
31763         mono_metadata_typedef_from_method () to lookup a typedef index from a
31764         field or method token.
31765         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
31766
31767 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
31768
31769         * metadata.c (mono_metadata_parse_field_type): Implement. 
31770         (do_mono_metadata_parse_type): Split engine from
31771         mono_metadata_parse_type, so that we can create smaller structures
31772         for things that just have one pointer to the MonoType (look at
31773         the MonoFieldType)
31774
31775 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
31776
31777         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
31778         as Jan Gray found out, it is incorrect. 
31779
31780 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
31781
31782         * assembly.c: Implement asssembly loading.  This loads an image
31783         and loads all the referenced assemblies.  Come to think of it, we
31784         could always do lazy loading of the assemblies. 
31785
31786         * image.c (mono_image_open): Keep loaded images in a hashtable.
31787
31788         * image.h (MonoImage): Add reference count.
31789
31790 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
31791
31792         * assembly.c (mono_assembly_open): Keep track of the file name in
31793         case the assembly has no ASSEMBLY table.
31794
31795         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
31796         from get.c here.
31797
31798 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
31799
31800         * metadata.c, metadata.h: decode local vars in method header
31801         parse function. Change callers accordingly.
31802
31803 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
31804
31805         * metadata.h, cil-coff.h: protect against multiple inclusion.
31806         Added some new structures to hold information decoded from metadata:
31807         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
31808         and relevant decoding/free functions.
31809         * metadata.c: implement decoding functions. Add warning for out of bounds
31810         index in mono_metadata_locate(). Implement mono_get_method () to retreive
31811         all the info about a method signature and invocation. Remove check on
31812         uninitialized local var in parse_mh() and fix memory leak.
31813
31814 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
31815
31816         * metadata.h: More macros.
31817
31818         * tokentype.h: New file.
31819
31820 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
31821
31822         * assembly.c: added a consistency check and initialize
31823         some structures with g_new0().
31824         * metadata.c: fixed a couple more bugs in table size computation
31825         and add other checks for out-of bound access to metadata.
31826
31827 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
31828
31829         * metatada.c: fix bugs computing table sizes. Spew a
31830         warning when index in string heap is out of bounds.
31831
31832 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
31833
31834         * metadata.h: Add a couple of macros to manipulate tokens. 
31835
31836 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
31837
31838         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
31839         cli_section_tables).
31840
31841 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
31842
31843         * metadata.c (mono_metadata_user_string): New function, provides
31844         access to the UserString heap. 
31845
31846 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
31847
31848         * metadata.c: Add inline documentation.
31849
31850 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
31851
31852         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
31853         files. 
31854
31855 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
31856
31857         * typeattr.h: New file, TypeAttribute flags. 
31858
31859 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
31860
31861         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
31862         mono_assembly_ensure_section): Section loading code.
31863         (load_section_tables): Load the sections.
31864
31865         * mono/metadata/metadata.c (mono_metadata_locate_token,
31866         mono_metadata_locate): Functions to locate the information
31867         definition given a token or a table and an index.
31868         (mono_metadata_compute_table_bases): New.
31869         (compute_size): New function to compute the sizes of the various
31870         tables.
31871
31872         * mono/metadata/metadata.h: Finish listing the different index
31873         types. 
31874
31875         * mono/metadata/pedump.c: Improve to dump new information.
31876
31877 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
31878
31879         * mono/metadata/metadata.c: Entered all the tables matching
31880         Beta2. 
31881
31882         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
31883
31884
31885
31886