2009-12-21 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2
3         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
4         with the one from the original method.
5
6         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
7         compatibility.
8
9         * verify-internals.h: Add new function to the internal API.
10
11 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
12
13         * culture-info-tables.h: regenerated it to include the Georgian culture.
14
15 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
16
17         * sgen-gc.c: Include mono/utils/memcheck.h.
18
19         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
20         instead of the current domain, since the two might not match if this is called
21         from the debugger.
22
23         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
24         domain which created this assembly.
25
26 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
27
28         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
29
30 2009-12-17  Mark Probst  <mark.probst@gmail.com>
31
32         * sgen-gc.c: Managed implementation of the specialized generic
33         store write barrier.
34
35 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
36
37         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
38         A private virtual newslot method is used to implement an interface method without exposing
39         it to users. When querying for public instance methods, such method would hide a public one
40         on a parent type.
41
42         Fixes #564379.
43
44 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
45
46         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
47         conventions.
48
49 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
50
51         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
52
53 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
54
55         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
56         as they are no longer used.
57         
58          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
59
60         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
61
62 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
63
64         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
65         if the owner class has not been finished before returning reflection_info.      
66
67         Fixes #565127.
68
69 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
70
71         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
72         param doesn't have custom attributes. Fixes #565117.
73
74         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
75         #565120.
76
77 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
78
79         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
80
81 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
82
83         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
84         same amount done by a core-clr enabled runtime.
85
86 2009-12-15  Marek Habersack  <mhabersack@novell.com>
87
88         * appdomain.c (mono_make_shadow_copy): make sure access mode of
89         the target files is reset to writable by owner and readable by
90         everyone else to prevent problems when updating shadow copies of
91         files whose source is read-only. Fixes bug #556884
92
93 2009-12-15  Mark Probst  <mark.probst@gmail.com>
94
95         * class.c (mono_generic_class_get_class): Allocate the generic
96         class via malloc again, so that it can be freed when any one of
97         the images of its constituent types is closed.
98
99         * metadata.c: When closing an image, don't free generic insts and
100         generic classes right away, but put them into a list for later
101         freeing.
102
103         * image.c, metadata-internals.h: Store the free list and in the
104         second pass of closing an image, free it.
105
106 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
107
108         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
109
110         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
111         types in type_hash.
112
113         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
114
115 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
116
117         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
118         user type.
119
120         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
121         is used.
122
123 2009-12-14  Miguel de Icaza  <miguel@novell.com>
124
125         * verify.c (mono_method_verify): The Unused opcodes produce an
126         InvalidProgramException on .NET
127
128 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
129
130         * loader.c (mono_method_get_header): Move assert after the verifier
131         has been called on the method header.
132
133 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
134
135         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
136
137         * appdomain.c: Bump corlib version.
138
139 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
140
141         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
142         types as well since otherwise generic instances would not return UT as arguments but
143         their undelying system type.
144
145         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
146         to reflect the fact that they can have now multiple different types.
147
148         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
149
150         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
151
152         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
153
154         * reflection.c (mono_reflection_register_with_runtime): Init super types
155         if the image is not dynamic.
156
157         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
158         check if the generic type definition is a TypeBuilder.
159
160         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
161         doesn't belong to a dynamic image, skip initialization.
162
163         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
164         base definition is not a dynamic type.
165
166 2009-12-11  Marek Habersack  <mhabersack@novell.com>
167
168         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
169         mono_profiler_string_allocation
170
171         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
172         if string profiling is enabled, call
173         mono_profiler_string_allocation
174
175         * profiler.h: added two MonoProfileFlags -
176         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
177         installation functions for the hooks below.
178
179         * profiler-private.h, profiler.c: added two hooks:
180         mono_profiler_string_allocation called whenever a string is
181         allocated by InternalAllocateStr and mono_profiler_iomap called
182         whenever IOMAP code performs an adjustement on a file path.
183
184 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
185
186         * boehm-gc.c: fixed race condition while getting the target of a
187         disappearing link (bug #522233).
188
189 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
190
191         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
192         the error.
193
194 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
195
196         * reflection.c: Add mono_reflection_register_with_runtime icall to
197         allow a MonoGenericClass to register itself as the managed mirror of
198         a given generic instance.
199         This is a temporary workaround until all MGC instantiation happens in
200         managed code.
201
202         * object-internals.h: Ditto.
203
204         * icall-def.h: Ditto.
205
206 2009-12-10  Mark Probst  <mark.probst@gmail.com>
207
208         * sgen-gc.c (find_in_remsets): Also search the generic store
209         remsets.
210
211 2009-12-10  Mark Probst  <mark.probst@gmail.com>
212
213         * sgen-gc.c: Don't access class names in debugging code when
214         unloading a domain, because they might not be valid anymore.
215
216 2009-12-10  Mark Probst  <mark.probst@gmail.com>
217
218         * domain.c, domain-internals.h: New function mono_domain_unset().
219
220         * appdomain.c (unload_thread_main): Detach the thread again at the
221         end.
222
223         * threads.c: When a thread exists or is detached, unset its domain
224         so that it's NULL when, for example, a pthread destructor runs.
225
226         * sgen-gc.c: Assert that there is no domain set after a thread is
227         done.
228
229 2009-12-10  Mark Probst  <mark.probst@gmail.com>
230
231         * class.c (mono_generic_class_get_class),
232         metadata.c (free_generic_class): Allocate generic MonoClass's from
233         the image mempool, not via malloc.  The problem with malloc is
234         that when unloading a domain those classes are freed before
235         clearing the heap and SGen needs the classes.  Rewriting the
236         unloading code to do the free later would be more work and there's
237         no point in using malloc anyway.
238
239 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
240
241         * loader.c (mono_method_signature): Always call mono_loader_unlock 
242         before returning.
243
244 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
245
246         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
247         user string blobs.
248
249         * verify-internals.h: Add new function to the internal API.
250
251         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
252         check if it's a valid string.
253
254         * object.c (mono_ldstr): Ditto.
255
256         Fixes #561943.
257
258 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
259
260         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
261         from a method before returning it. This is the expected behavior.
262
263 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
264
265         * reflection.c (inflate_method): Handle the case of a regular system type.
266
267 2009-12-08  Mark Probst  <mark.probst@gmail.com>
268
269         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
270         gathering code.
271
272         * mempool.c, mempool-internals.h: New function
273         mono_mempool_get_bytes_allocated().
274
275         * Makefile.am: sgen-pinning-stats.c added.
276
277 2009-12-08  Mark Probst  <mark.probst@gmail.com>
278
279         * sgen-gc.c (create_allocator): Only use the fast path if the
280         object size is within the small object size limit.
281
282 2009-12-07  Mark Probst  <mark.probst@gmail.com>
283
284         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
285         possibly adding padding to sizeof (GCMemSection).
286
287 2009-12-07  Mark Probst  <mark.probst@gmail.com>
288
289         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
290         reference is not in the nursery.
291
292 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
293
294         * class.c (mono_class_from_typeref): Bounds check idx against the 
295         assemblyref table.
296
297 2009-12-07  Mark Probst  <mark.probst@gmail.com>
298
299         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
300         through the potential roots, then sort the results and find the
301         pinned objects from there.
302
303         * Makefile.am: sgen-pinning.c added.
304
305 2009-12-07  Mark Probst  <mark.probst@gmail.com>
306
307         * sgen-gc.c: Record generic stores in specialized remset buffers.
308
309 2009-12-06  Mark Probst  <mark.probst@gmail.com>
310
311         * sgen-gc.c: Make pinned chunks the same size as major heap
312         sections, and align them as well, so that we can check whether an
313         object is in a pinned chunk or a major section in constant time.
314
315 2009-12-06  Mark Probst  <mark.probst@gmail.com>
316
317         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
318
319 2009-12-06  Mark Probst  <mark.probst@gmail.com>
320
321         * sgen-gc.c: Make all major heap sections the same size (currently
322         128k) and allocate them on aligned addresses.  Small heap sections
323         give us better granularity with pinned objects - we can free up
324         much more memory.
325
326 2009-12-06  Mark Probst  <mark.probst@gmail.com>
327
328         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
329         output removed.
330
331 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
332
333         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
334
335         * mono/metadata/assembly.c: When opening an assembly image, pass the real
336         names in addition to the runtime generated one.
337
338         * mono/metadata/image.h: Add a function to take the real name of the assembly
339         image.
340
341         * mono/metadata/image.c: If a real name has been passed to load an assembly,
342         use it instead of the runtime generated one.
343
344         Code is contributed under MIT/X11 license.
345
346 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
347
348         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
349         before the other checks to prevent problems if the DateTime class is blittable.
350         Hopefully fixes #559600.
351
352 2009-12-05  Mark Probst  <mark.probst@gmail.com>
353
354         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
355         returns the largest string length that will not be put into the
356         LOS.
357
358         * sgen-gc.c, gc-internal.h: New function that returns the largest
359         object size that will not be put into the LOS.
360
361         * appdomain.c: Bump corlib version.
362
363 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
364
365         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
366
367         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
368
369 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
370
371         * reflection.c (inflate_method): Fix signature.
372
373         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
374         in managed code.
375
376 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
377
378         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
379
380 2009-12-03  Mark Probst  <mark.probst@gmail.com>
381
382         * sgen-gc.c: Abstract to-space handling.
383
384 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
385
386         * loader.c (find_method_in_class): Ignore methods with broken signatures.
387
388         Fixes #559906.
389
390 2009-12-03  Mark Probst  <mark.probst@gmail.com>
391
392         * sgen-gc.c: Only add references from outside the nursery to
393         within the nursery to the global remset list.
394
395 2009-12-03  Mark Probst  <mark.probst@gmail.com>
396
397         * appdomain.c (create_exceptions): Set the domain temporarily if
398         necessary to avoid cross-domain references.
399
400 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
401
402         * verify.c (get_stack_type): Return that the type is invalid instead of
403         asserting.
404
405         * verify.c (mono_method_verify): Verify that all locals and arguments
406         have valid stack types.
407
408         Fixes #559913.
409
410 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
411
412         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
413         bounds checking overflow aware.
414
415         Fixes #559910.
416
417 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
418
419         * verify.c (do_invoke_method): Check for invalid method signatures.
420
421         Fixes #553450.
422
423 2009-12-02  Jb Evain  <jbevain@novell.com>
424
425         * appdomain.c (MONO_CORLIB_VERSION): bump.
426         * icall-def.h (get_base_definition): renamed to get_base_method
427         and add a boolean argument indicating we want the original
428         method definition, or the immediate base method.
429         * icall.c: apply the get_base_definition to get_base_method change.
430
431 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
432
433         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
434
435         Fixes #558042.
436
437 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
438
439         * class.c: remove asserts for invalid type token in
440         mono_class_name_from_token(), mono_assembly_name_from_token() and
441         mono_class_create_from_typedef () (fixes bug #553318).
442
443 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
444
445         * metadata.c, class.c, loader.c: remove assert after bsearch() for
446         incorrect assemblies (bug #553322).
447
448 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
449
450         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
451
452         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
453
454         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
455
456         * class.c (inflate_generic_context): Ditto.
457
458         * loader.c (method_from_methodspec): Ditto.
459
460         Fixes #558230.
461
462 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
463
464         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
465
466         * class.c (mono_class_create_from_typespec): Ditto.
467
468         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
469
470         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
471
472         Fixes #558184.
473
474 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
475
476         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
477
478         * verify.c (verify_delegate_compatibility): Ditto.
479
480         * verify.c (do_newobj): Ditto.
481
482         Fixes #558046.
483
484 2009-12-02  Mark Probst  <mark.probst@gmail.com>
485
486         * sgen-gc.c: Use a gray queue instead of requiring that gray
487         objects are in a contiguous region.
488
489         * sgen-gray.c: The gray queue implementation.
490
491         * Makefile.am: sgen-gray.c added.
492
493 2009-12-02  Mark Probst  <mark.probst@gmail.com>
494
495         * appdomain.c: When unloading a domain, zero its static data and
496         perform a minor collection when using SGen.  That will get rid of
497         all the remsets pointing into that domain's static data.
498
499         * sgen-gc.c: Allow remsets into static data.  By doing this we
500         need less checks so we're more efficient.
501
502 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
503
504         * verify.c (mono_method_verify): Check for catch clauses with broken
505         types.
506
507         Fixes #558465.
508
509 2009-12-01  Jb Evain  <jbevain@novell.com>
510
511         * class.c (make_generic_param_class): set the namespace of
512         the generic parameter class from its owner, if available.
513
514 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
515
516         * verify.c (code_bounds_check): Do proper overflow checking.
517
518         * verify.c (mono_method_verify): The number of switch entries is
519         an unsigned int. Properly bounds check it.
520
521         Fixes #558594.
522
523 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
524
525         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
526         mono_metadata_method_has_param_attrs which only checks if a given param
527         list has a non zero flags entry.
528
529         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
530         to inform how many params should we expect to decode.
531
532         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
533         as it's faster than mono_metadata_get_param_attrs.
534
535         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
536         add mono_metadata_method_has_param_attrs.
537
538 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
539
540         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
541         failures.
542
543         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
544         is -1 but its class is broken.
545
546         Fixes #558522.
547
548 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
549
550         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
551         for parameter overflow.
552
553         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
554         of mono_metadata_get_param_attrs.
555
556         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
557         API.
558
559         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
560
561 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
562
563         * class.c (mono_class_setup_fields): Check for fields with broken types.
564
565         Fixes #558741.
566
567 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
568
569         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
570         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
571         its TypeBuilder::CreateType ().
572
573         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
574         if not needed.
575
576         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
577         to make setup_interface_offsets happy.
578
579         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
580         compilation now works.
581
582 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
583
584         * appdomain.c (create_exceptions): New helper function extracted from
585         mono_runtime_init () to precreate objects used during exception handling.
586         (mono_runtime_init): Call it.
587         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
588
589 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
590
591         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
592         compilation until the proper one is found.
593
594 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
595
596         * class.c (mono_class_setup_vtable_general): Cache the result of
597         get_virtual_methods () since it can be slow because of the metadata
598         optimization.
599
600         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
601         from a MonoValueHashTable for now, since the later is based on an earlier
602         version of hpj's internal probing code and seems to have serious collision
603         issues.
604
605         * loader.c (mono_get_method_full): Update after the change above.
606
607 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
608
609         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
610
611 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
612
613         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
614         the GTD instead of the DGC instead of crashing.
615
616         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
617         required. Inflate fields if needed.
618
619         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
620         finished. Renamed.
621
622 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
623
624         * class.c (check_interface_method_override): Check for NULL signatures and fail
625         the type.
626
627         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
628
629         Fixes #553428.
630
631 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
632
633         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
634         the MONO_METHOD_FLAGS column instead of decoding the whole row.
635
636 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
637
638         * loader.c (field_from_memberref): Resolve the class first then the field
639         signature. Remove a lot of duplicated code and make sure we don't pass valid
640         values to mono_loader_set_error_field_load.
641
642         Fixes #553306.
643
644 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
645
646         * class.c (inflate_generic_type): Change code to use new signature of
647         mono_error_set_bad_image.
648
649         Fixes #558124.
650
651 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
652
653         * verify.c (mono_method_verify): Don't free ctx.params items if 
654         we aborted while inflating the ctx.locals. Complete previous fix
655
656 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
657
658         * verify.c (mono_method_verify): Use the uninflated type name, 
659         when the inflated is null, to report errors. Also take care when
660         freeing, not to free everything since, in case of an error, some
661         stuff would be copies (i.e. not allocated by the function itself)
662         Fix bug #558145
663
664 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
665
666         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
667         or overflow. The caller must have done this check explicitly. This guard us
668         from accessing invalid memory.
669
670         * verify.c (do_push_static_field): Check for stack overflow.
671
672         Fixes #553333.
673
674 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
675
676         * loader.c (find_method_in_class): Don't crash if the signature cannot
677         be resolved.
678
679         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
680         of asserting for the case of invalid params.
681
682         Fixes #553304.
683
684 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
685
686         * image.c (mono_image_load_module): Fix crash when a bad assembly
687         has no module at all (fix bug #553412) and also replace the 
688         g_assert with a return NULL (documented return value for failure)
689
690 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
691
692         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
693
694 2009-11-23  Miguel de Icaza  <miguel@novell.com>
695
696         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
697         file attribute to managed code and avoid doing the mask/attribute
698         checks here. 
699
700 2009-11-22  Miguel de Icaza  <miguel@novell.com>
701
702         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
703         the managed world.
704
705         * icall-def.h: New entry points.
706         
707 2009-11-19  Mark Probst  <mark.probst@gmail.com>
708
709         * process.c: Don't put references to managed objects into a
710         g_ptr_array.
711
712 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
713
714         * class.c (can_access_internals): Allow CoreCLR to participate in
715         allowing (or not) [InternalsVisibleTo] between assemblies.
716         * security-core-clr.c|h: Make sure that only trusted code (a 
717         superset of platform code) can access the internals of platform
718         code.
719
720 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
721
722         * reflection.c: use the correct base class to get the virtual method
723         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
724
725 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
726
727         * security-core-clr.c (get_caller_no_reflection_related): 
728         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
729         it's still reflection and must be filtered correctly.
730
731 2009-11-16  Mark Probst  <mark.probst@gmail.com>
732
733         * object.c (compute_class_bitmap): Fix for large bitmaps.
734
735 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
736
737         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
738
739         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
740         koush@koushikdutta.com). Disable GC_no_dls on android.
741
742 2009-11-12  Mark Probst  <mark.probst@gmail.com>
743
744         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
745         tlab_next points outside the TLAB because the allocator was
746         interrupted.
747
748 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
749
750         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
751
752 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
753
754         * object-internals.h: Change signature for mono_string_to_utf8_image.
755
756         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
757         argument.
758
759         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
760         exceptions due to mono_string_to_utf8.
761
762 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
763
764         * object-internals.h: Change signature for mono_string_to_utf8_mp.
765
766         * object.c (mono_remote_class): Make sure all resources are released before
767         raising an exception.
768
769         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
770
771 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
772
773         * mono-perfcounters.c (network_get_impl): Change variable initialization
774         ordering to fix potential memory leak in case of exceptions.
775
776         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
777         encoded strings.
778         
779 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
780
781         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
782         variable initialization ordering to fix potential memory leak in case
783         of exceptions.
784
785 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
786
787         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
788         needed.
789
790 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
791
792         * appdomain.c: Fix shadow path code to better deal with exceptions.
793
794 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
795
796         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
797         exception in the middle of the runtime code.
798
799 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
800
801         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
802         leak memory with broken envvar value.
803
804 2009-11-06  Mark Probst  <mark.probst@gmail.com>
805
806         * reflection.c (mono_reflection_setup_internal_class): Because
807         nested classes are not added to the name cache, we must put them
808         in the reflection_info_unregister_classes list.
809
810 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
811
812         * class.c: When CoreCLR is enabled don't call mono_init_com_types
813         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
814         platform (trusted) code. Instead we return a TypeLoadException to
815         be thrown later. This is the exception thrown by Silverlight 2 if
816         a type, inside application (user) code is marked with [ComImport]
817
818 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
819
820         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
821         mono_is_debugger_attached () too.
822
823         * mono-debug.c (mono_is_debugger_attached): New helper function.
824         (mono_set_is_debugger_attached): Ditto.
825
826 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
827
828         * object-internals.h: Add mono_string_to_utf8_checked.
829
830         * object.c: Implement mono_string_to_utf8_checked.
831
832 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
833
834         * class.c: Add missing check for load errors after every
835         call to mono_class_setup_fields
836
837         Fixes #552282.
838
839 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
840
841         metadata-verify.c (verify_tables_schema): Fix the error message.
842
843 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
844
845         * metadata.c: Change event table schema to use TDOR for event type
846         as this is what it's meant to be.
847
848         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
849         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
850         entry.
851
852         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
853         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
854         rows in MONO_TABLE_GENERICPARAM.
855
856         Fixes #552289.
857
858 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
859
860         * class.c (mono_image_add_to_name_cache): Assert on duplicate
861         insertion.
862
863         * reflection.c (mono_reflection_setup_internal_class): Avoid
864         registering a gc root the same MonoClass multiple times.
865         Don't register nested types on the global scope as they should
866         not be available there.
867
868 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
869
870         * culture-info-tables.h: regenerated.
871
872 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
873
874         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
875
876 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
877
878         * string-icalls.c|h: Remove string internal calls that are not 
879         used anymore by the class libraries.
880         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
881         which is not used in the class librairies.
882         * icall-def.h: Update tables.
883
884 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
885
886         * class.h: Move mono_class_inflate_generic_type_checked...
887
888         * class-internals.h: to here and make it internal. We don't want to
889         further expose MonoGenericContext. 
890
891 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
892
893         * verify.c (mono_method_verify): Improve error message.
894
895 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
896
897         * reflection.c (fieldref_encode_signature): If field_image is NULL then
898         the token is already properly encoded. Fixs 4.0 build.
899
900 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
901
902         * locales.c (construct_number_format): Check if the number index is
903         valid before trying to use it, if not, just return.
904         
905 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
906
907         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
908         since that loses the abort state. Fixes #539394.
909
910 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
911
912         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
913         explicit this argument to the call signature.
914         (mono_marshal_get_icall_wrapper): Ditto.
915
916 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
917
918         * reflection.c (fieldref_encode_signature): Add new field_image parameter
919         to indicate which assembly to use when resolving a custom-mod.
920
921         Fixes handling of volatile fields used across assemblies as reported in #551513.
922
923 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
924
925         * loader.c: Improve error messages.
926
927 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
928
929         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
930         of interfaces. Fixes IKVM.
931
932         * class.c (mono_class_setup_vtable_general): Improve debug spew.
933
934 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
935
936         * verify.c (verifier_inflate_type): Return the inflated type on success.
937
938 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
939
940         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
941
942         * threads.c (mono_thread_attach): Call the profiler thread start callback.
943
944         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
945
946         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
947         flag set.
948
949         * profiler.c: Add new profiler callbacks for runtime invoke.
950
951         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
952
953 2009-11-01  Mark Probst  <mark.probst@gmail.com>
954
955         * sgen-gc.c: Keep track of the reason for a major collection and
956         write it to the heap-dump file.
957
958 2009-10-31  Miguel de Icaza  <miguel@novell.com>
959
960         * threads.c: refactor the code that initializes the
961         thread_start_args into a reusable function and use this in the two
962         methods that start up threads.
963
964 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
965
966         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
967         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
968
969 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
970
971         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
972         Until now, we only had the per-cpu(core) counters.
973
974 2009-10-28  Mark Probst  <mark.probst@gmail.com>
975
976         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
977         mono_gc_get_suspend_signal(), which returns the suspend signal
978         number used by the GC.
979
980 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
981
982         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
983
984         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
985         signalling start_notify.
986
987 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
988
989         * appdomain.c: do not test the st_mode field for shadow-copies.
990         Fixes bug #545276.
991
992 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
993
994         * threadpool.[ch]: added hooks for thread start/finish and item
995         processing begin/end. For monotouch use only.
996
997 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
998
999         * threads.c (mono_thread_get_name): New helper function.
1000
1001         * reflection.c (resolve_object): Set handle_class for strings too.
1002         (mono_reflection_create_custom_attr_data_args): New helper function to decode
1003         a cattr blob into a set of arrays and structures without creating the custom
1004         attributes themselves.
1005         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
1006
1007         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
1008
1009         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
1010         function.
1011
1012 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1013
1014         * verify.c: Replace calls to mono_class_inflate_generic_type with
1015         mono_class_inflate_generic_type_checked. Fixes #480005.
1016
1017 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1018
1019         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
1020         object since not all paths lead to callees initing it.
1021
1022 2009-10-23  Alp Toker  <alp@nuanti.com>
1023
1024         Fix embedding API breakage from r144688. mono-compiler.h is an internal
1025         header and should not be shipped:
1026
1027         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
1028         which is specific to the mono build. Not going to work.
1029
1030 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
1031
1032         * security-manager.c: Report if core-clr is active from
1033         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
1034         to allow Moonlight BCL to behave appropriately (both in browser
1035         and outside, e.g. smcs)
1036
1037 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1038
1039         * mono-config.c: ignore UTF-8 BOM and report parser errors.
1040         Fixes bug #549108.
1041
1042 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1043
1044         * class.c: fix typo.
1045
1046 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1047
1048         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1049         a MonoError parameter.
1050
1051         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1052         version that can does proper error handling.
1053
1054         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1055
1056         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1057
1058         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1059
1060 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1061
1062         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1063         NO_UNALIGNED_ACCESS is defined.
1064
1065 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1066
1067         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1068         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1069         Fixes #549173.
1070
1071 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1072
1073         * sgen-gc.c: Shorten sections whenever possible.
1074
1075 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1076
1077         * sgen-gc.c: Use our portable semaphore #defines.
1078
1079 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1080
1081         * sgen-gc.c: A debug option for dumping the heap layout to a file
1082         after each collection.
1083
1084 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1085
1086         * sgen-gc.c: Make managed write barriers atomic via
1087         thread-restarts.
1088
1089 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1090
1091         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1092         methods. Fixes #543021.
1093
1094 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1095
1096         * socket-io.[ch]: fix VS build.
1097
1098 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1099
1100         * icall-def.h:
1101         * socket-io.[ch]: implemented SendFile.
1102
1103 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1104
1105         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1106         before the interfaces to avoid crashes later if class initialization fails.
1107         Fixes #548417.
1108
1109         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1110         Fixes #548276.
1111
1112 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1113
1114         * domain.c: Bump 4.0 version.
1115
1116 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1117
1118         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1119         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1120         check since 'pubkey' can't be NULL at this stage
1121         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1122         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1123         initialization of 'iter'
1124
1125 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1126
1127         * cominterop.c : Search the interface parts of vtable to find 
1128           method matches.  Fixes 547030.
1129
1130         Code is contributed under MIT/X11 license.
1131
1132 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1133
1134         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1135         multiple targets. Fixes bug #574426.
1136
1137 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1138
1139         * profiler.h: Put here the definition of
1140         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1141         (and fix the build...).
1142
1143 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1144
1145         * profiler.c, profiler.h, profiler-private.h:
1146         Added support for different ways of getting call chains in stat mode.
1147
1148 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1149
1150         * object.c, object-internals.h: New function for computing the
1151         size of an array, factored out of mono_array_new_full().  Use
1152         SGen's functions for allocating arrays and vectors.
1153
1154         * sgen-gc.c, gc-internal.h: Special functions for allocating
1155         arrays and vectors without race conditions.  A managed array
1156         allocator method.
1157
1158         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1159
1160 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1161
1162         * object.c, object.h, icall.c: Write barriers do the copying now,
1163         as well, so no need for an additional memcpy.
1164
1165         * sgen-gc.c: Lock when storing remsets.  Do the memory
1166         copying/moving in the write barriers.
1167
1168         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1169
1170         * reflection.c: Added an assert.
1171
1172 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1173
1174         * threads.c, process.c: A few missing write barriers.
1175
1176 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1177
1178         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1179         network performance counters for bytes sent per second, bytes
1180         received per second, and bytes total per second.
1181
1182         Code is contributed under MIT/X11 license.
1183
1184 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1185
1186         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1187         Fix warning.
1188
1189 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1190
1191         * threads.c, object-internals.h, object.c: Move code for
1192         transferring an object to a different domain (via
1193         serialization/remoting) to object.c.
1194
1195         * object.c (call_unhandled_exception_delegate): If the exception
1196         is in a different domain than the delegate, transfer the exception
1197         to that domain.
1198
1199 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1200
1201         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1202         Fixes #322934.
1203
1204 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1205
1206         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1207
1208 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1209
1210         * object.c (mono_method_return_message_restore): Handle the case
1211         where the argument is an instance of a generic type.  Fixes
1212         #544446.
1213
1214 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1215
1216         * object.c (set_value): Write barrier fix - we must pass the
1217         count, not the size.
1218
1219 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1220
1221         * domain.c (mono_init_internal): Print a useful error message when encountering
1222         an old mscorlib, instead of crashing. Fixes #544307.
1223
1224 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1225
1226         * appdomain.c (copy_app_domain_setup): Fix a warning.
1227
1228         * debug-helpers.c (dis_one): Ditto.
1229
1230 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1231
1232         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1233         into the new domain, instead of referencing the original one.
1234
1235         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1236         non-static.
1237
1238         * appdomain.c: Corlib version bump.
1239
1240 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1241
1242         * threadpool.c: one more...
1243
1244 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1245
1246         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1247         threads to die because we're shutting down. delgate5.exe works again.
1248
1249 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1250
1251         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1252           ccw_interface_hash table when a ccw is finalized.
1253
1254         Code is contributed under MIT/X11 license.
1255
1256 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1257
1258         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1259         domain and image unloading into two steps.  We must do this
1260         because clearing the domain in SGen requires the class metadata to
1261         be intact, but we need to free the mono_g_hash_tables in case a
1262         collection occurs during domain unloading and the roots would trip
1263         up the GC.
1264
1265 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1266
1267         * object-internals.h: Remove serialized culture fields from
1268         MonoInternalThread.
1269
1270         * icall-def.h, thread-types.h, threads.c: Remove serialized
1271         culture icalls.
1272
1273         * appdomain.c: Corlib version bump.
1274
1275 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1276
1277         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1278         Fixes #543133.
1279
1280 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1281
1282         * sgen-gc.c: Try to shorten the new section after a major
1283         allocation to avoid ever-growing sections.
1284
1285 2009-10-13  Martin Baulig  <martin@ximian.com>
1286
1287         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1288         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1289         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1290         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1291
1292         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1293
1294 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1295
1296         * threadpool.c: fixed the order in which 'completed' and the wait
1297         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1298         No need to use the wait_handle field of ASyncCall. Make sure the
1299         threadpool is active when adding a job or queueing an idle thread.
1300
1301 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1302
1303         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1304
1305         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1306         when using --compile-all.
1307
1308 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1309
1310         * metadata.c (free_generic_class): Unregister the field_objects
1311         roots if we're using SGen.
1312
1313 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1314
1315         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1316         for GenericParamTableEntry.gparam.
1317
1318 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1319
1320         * marshal.c: don't create the handle when calling. It is created later
1321         if needed.
1322
1323 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1324
1325         * sgen-gc.c: Warning fixes.
1326
1327 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1328
1329         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1330         whole heap for cross-domain references before each collection.
1331
1332         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1333         object.
1334
1335         * threadpool-internals.h, threadpool.c: New function
1336         mono_thread_pool_is_queue_array() for checking whether a given
1337         array is used as a (cross-domain) queue by the thread pool code.
1338
1339 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1340
1341         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1342         searches the whole heap for objects containing a specific
1343         reference.  Only for debugging.
1344
1345 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1346
1347         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1348
1349         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1350         byte arrays between domains.
1351
1352 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1353
1354         * threadpool.c:
1355         * class-internals.h:
1356         * mono-perfcounters-def.h:
1357         * mono-perfcounters.c:
1358         -There is a list of idle threads
1359         -Each of those idle threads wait on their own WaitHandle instead
1360         of all of them using the same semaphore. When a new work item is
1361         added, the job is assigned directly to an idle thread or a newly
1362         created one if possible and then the handle for that thread is
1363         signaled. Compare that to the current approach where all the
1364         threads in the pool compete to dequeue a job from the same
1365         queue.
1366         -New struct ThreadPool that brings together the bunch of static
1367         variable for each threadpool (IO and regular).
1368         -New performance counters: # of items added and its rate per
1369         threadpool. The rate will be used later, perhaps together with
1370         other perf. counters, to decide when idle threads should exit.
1371
1372 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1373
1374         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1375         Fix typo on Windows build.      
1376         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1377         
1378         Code is contributed under MIT/X11 license.
1379
1380 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1381
1382         * object-internals.h: The Thread class is split up into Thread and
1383         InternalThread now.  We have exactly one InternalThread per
1384         thread, and at most one Thread per appdomain per thread.  Most
1385         data is stored in InternalThread.  All InternalThread objects live
1386         in the root domain.
1387
1388         * class-internals.h: Add internal_thread_class to MonoDefaults.
1389
1390         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1391         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1392         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1393         resulting from the split of the Thread class.
1394
1395         * gc-internal.h: Prototype for new function for checking whether a
1396         thread is the finalizer thread.
1397
1398         * appdomain.c: Corlib version bump.
1399
1400 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1401
1402         * appdomain.c|h: Add a mono_domain_try_unload method which is
1403         equivalent to mono_domain_unload, except that it returns an exception
1404         instead of throwing it. Make mono_domain_unload use the
1405         mono_domain_try_unload method to avoid code-duplication.
1406
1407 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1408
1409         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1410         a problem.
1411
1412 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1413
1414         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1415         aborting when a conversion is not implemented.
1416
1417 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1418
1419         * verify.c: when comparing culture strings, use g_ascii_strcmp
1420
1421         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1422         when comparing public key tokens to use memcmp on 16 bytes.   I do
1423         not believe this ever worked as advertised in the past.
1424
1425         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1426         which would have always failed earlier.
1427
1428 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1429
1430         * gc.c: Raise a NullArgumentException if the object passed is
1431         null.
1432
1433 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1434
1435         * image.c (mono_image_close): Atomically decrement the reference count and
1436         remove the image from the hash tables, to prevent another thread from seeing a
1437         dying MonoImage. Fixes #541194.
1438
1439 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1440
1441         * threadpool.c: actually use the minimum number of 'completion ports'
1442         (for us is just a potential worker thread).
1443
1444 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1445
1446         * threadpool.c: remove ares_htable. It does not make sense any more
1447         since the same objects are now stored in GC-tracked arrays while they are
1448         in the queue.
1449
1450 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1451
1452         * threadpool.c: increase the minimum length of the queues to 128.
1453         Remove warning.
1454
1455 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1456
1457         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1458         return the modified signature used by string ctors.
1459
1460 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1461
1462         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1463         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1464         method, to be used by full-aot.
1465
1466 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1467
1468         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1469         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1470         be known to be good.
1471
1472         * class.c (mono_class_init): Fail array types if their element type fails initialization
1473         as well.
1474
1475         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
1476         initialization, additionally we request the element_type vtable to be initialized as well.
1477
1478         This is fine and should not increase the working set in any meaningful way since it's reasonable
1479         to assume       that most code will create an array and eventually populate it, which will require the
1480         type's vtable to be initialized.
1481
1482         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
1483
1484 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
1485
1486         * normalization-tables.h : regenerated.
1487
1488 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1489
1490         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
1491         a leb128 encoding can take up to 5 bytes.
1492
1493 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1494
1495         * class.c (verify_class_overrides): Remove useless argument.
1496
1497         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
1498         before interface enumeration as this is no longer required.
1499
1500 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1501
1502         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
1503         used under mono_class_init context. This functions avoid any code path that
1504         calls mono_class_init, which leads it to be slow as some things like the interface
1505         bitmap are not available.
1506
1507         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1508         of it's own broken version. Fixes the verifier part of #538588.
1509
1510         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1511         API.
1512
1513 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1514
1515         * class.c (mono_class_init): Always set an exception in a class if
1516         vtable setup fails.  Fixes #538577.
1517
1518         * generic-sharing.c: Raise an exception if mono_class_vtable()
1519         returns NULL.
1520
1521 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
1522
1523         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
1524         methods of vtypes, as they could be incorrectly shared with static methods
1525         taking an IntPtr argument.
1526
1527 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1528
1529         * domain.c:
1530         * object.c:
1531         * class-internals.h: renamed waithandle_class to
1532         manualresetevent_class.
1533         * marshal.c: propagate the exception if a remoting BeginInvoke call
1534         fails.
1535
1536 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1537
1538         * object.c: Properly handle vtable failures.
1539
1540 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1541
1542         * socket-io.c: Assert on vtable failure.
1543
1544         * mono-mlist.c: Assert on vtable failure.
1545
1546 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1547
1548         * marshal.c: Assert on vtable failure.
1549
1550 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1551
1552         * icall.c: Properly handle vtable failures.
1553
1554 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1555
1556         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
1557
1558 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1559
1560         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
1561
1562         * console-unix.c (do_console_cancel_event): Same.
1563
1564 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1565
1566         * class-internals.h: Add mono_class_vtable_full function that allows control
1567         if an exception should be raised or not.
1568
1569         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
1570         to do what its documentation say, that is to return NULL and set exception_type on
1571         failure.
1572
1573         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
1574         and change the code to honor it.
1575
1576 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1577
1578         * verify.c: Fix typo in error message.
1579
1580 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
1581
1582         * security-core-clr.c: Fix default_platform_check so it can run
1583         the runtime coreclr tests (without an infinite recursion when
1584         throwing an exception).
1585
1586 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1587
1588         object.c (mono_delegate_ctor_with_method): Guard against null method.
1589
1590 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1591
1592         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
1593         that should be replaced with error handling later.
1594
1595 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1596
1597         * marshal.c (mono_delegate_end_invoke): Fix warning.
1598
1599 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1600
1601         * loader.c (mono_field_from_token): Properly handle invalid
1602         dynamic tokens.
1603
1604 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1605
1606         * pedump.c (verify_image_file): Skip types that can't be
1607         decoded.
1608
1609 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1610
1611         * verify.c: Look for recursive valuetypes only against the
1612         type been initialized as this is a lot simpler and works.
1613
1614 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1615
1616         * verify.c: Ensure that fields are properly loaded before
1617         checking them.
1618
1619 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1620
1621         * object.c (mono_object_get_virtual_method) : Call 
1622           mono_cominterop_get_invoke if the object is a COM object.
1623
1624         Code is contributed under MIT/X11 license.
1625
1626 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
1627
1628         * verify.c: Check for recursive valuetype definitions.
1629
1630 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1631
1632         Use inheritance-aware interface offsets. Inherited types use the same offsets
1633         of their parents. This reduce offset duplication in case more than one type in
1634         the inheritance tree explicitly implements the same interface.
1635
1636         This also removes a source of vtable bubbles found in #532409. An abstract type
1637         isn't required to provide abstract methods to all interfaces it implements, which
1638         resulted in a bubble with the previous scheme as the child would get a non-full
1639         vtable from its parent. We fail all concrete types with vtable bubbles, so this
1640         should be fixed.
1641
1642         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
1643         it's expected to not cause any significant increase beyond that.
1644
1645         * class.c (setup_interface_offsets): Compute super class iface offsets
1646         first to force sharing.
1647
1648         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
1649         dumping only the relevant ones.
1650
1651         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
1652         methods a new slot regardless if they belong to an interface or not. This allows
1653         an inherited type to override the iface method separately from the class one.
1654
1655 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1656
1657         * threadpool.c: make the Sleep() alertable to prevent delays exiting
1658         applications that take less than 2s to execute.
1659         Bug #524984 fixed.
1660
1661 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1662
1663         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
1664
1665         * object.c (mono_get_runtime_callbacks): New helper function to return
1666         the runtime callbacks.
1667
1668         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
1669         mono_get_runtime_build_info () as the display name.
1670         
1671 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1672
1673         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
1674         argument, since NEWARR expects a native int. Fixes #481559.
1675
1676 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1677
1678         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
1679         against broken SRE methods.
1680
1681 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1682
1683         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
1684         a NULL variable. Abort early on failure.
1685
1686 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1687
1688         * class.c (can_access_type): Fail visibility test for non nested
1689         types with nested visibility.
1690
1691 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
1692
1693         * assembly.c (parse_public_key): Avoid allocating (and not 
1694         freeing) the public key array when it's not requested by the 
1695         caller.
1696         * threads.c (mono_thread_manage, mono_thread_create_internal, 
1697         ves_icall_System_Threading_Thread_Thread_internal): Free 
1698         allocated memory on error.
1699
1700 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1701
1702         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1703
1704 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1705
1706         * class.c (mono_class_setup_fields): Remove duplicated local variable
1707         named gklass.
1708         Rename gklass to gtd to reflect the fact that it points to the generic
1709         type definition.
1710         Remove the duplicated call to mono_class_setup_fields on gtd and move
1711         the error check to the beginning.
1712
1713 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1714
1715         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1716         Remove cruft of the previous patch.
1717
1718 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1719
1720         * metadata-verify.c (verify_method_table): Check for abstract + final.
1721         Fixes #534175.
1722
1723 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1724
1725         * verify.c (verify_class_fields): Check for duplicate fields.
1726
1727 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1728
1729         * metadata-verify.c: Verify the typeref table for duplicates.
1730
1731 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1732
1733         This reverts r140936 and properly handles interfaces with static methods. The
1734         right fix is to ensure vtables without bubles which is an easier to verify
1735         constraint. We should avoid such special cases as of the reverted patch as those
1736         only make the runtime more brittle.
1737
1738         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1739         static methods on interfaces.
1740
1741         * class.c (setup_interface_offsets): Use the number of virtual methods when
1742         calculating interface offsets instead of the number of methods. This way we
1743         avoid bubles on the layout.
1744
1745 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1746
1747         * metadata-verify.c (verify_metadata_header): Some very smart
1748         obfuscators like to add extra stream headers. Ignore them.
1749
1750 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1751
1752         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1753         methods correctly.
1754
1755 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1756
1757         * metadata-verify.c: Verify for duplicated types.
1758
1759 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1760
1761         * metadata-verify.c (verify_typedef_table): Verify for nested types
1762         without an entry on the nested class table.
1763
1764 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1765
1766         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1767         <tom_hindle@sil.org>. Add locking around hash table accesses.
1768
1769 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1770
1771         * verify.c (mono_verifier_verify_class): Verify all interface if
1772         really are interfaces. Fixes #534184.
1773
1774 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1775
1776         * pedump.c: Initialize all types during metadata validation so we report
1777         errors only detected as part of class initialization.
1778
1779 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1780
1781         * metadata-verify.c (verify_method_table): PInvoke requires method to
1782         be static. Fixes #534189
1783
1784 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1785
1786         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1787         being NULL.
1788
1789 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1790
1791         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1792         for holes or bad methods. Fixes #525314.
1793
1794 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1795
1796         * class.c (setup_interface_offsets): Don't allocate slot
1797         for the same interface multiple times. This creates bubbles
1798         that waster space and make vtable verification harder.
1799
1800         The same interface get a slot multiple times since we need
1801         to get the closure of all implemented interfaces, which means
1802         the same interface is reported multiple times.
1803
1804 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1805
1806         * verify.c (mono_verifier_verify_class): Don't check the fields
1807         of generic instances since the context on which they got expanded
1808         might lead to false positives.
1809
1810         Such thing happens when a generic type is inflated in the context
1811         of a generic method and the inflated type of a field turns into a
1812         generic method argument, which causes the checking code to think
1813         it's an invalid class when it's not.
1814
1815 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1816
1817         * verify.c (mono_type_is_valid_in_context): Verify if type
1818         is NULL and remove duplicate test.
1819
1820 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1821
1822         * verify.c (mono_verifier_verify_class): Check fields for
1823         invalid generic arguments.
1824
1825 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1826
1827         * class.c (verify_class_overrides): Verify if for static
1828         and non virtual methods.
1829
1830 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1831
1832         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1833         Check for errors after retrieving the vtable.
1834
1835 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1836
1837         * class.c (mono_class_setup_vtable_general): Verify
1838         if method overrides are valid before processing them.
1839
1840 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1841
1842         * marshal.c (mono_array_to_lparray): Fix minimal build with
1843         cominterop disabled.
1844
1845         * marshal.c (mono_free_lparray): Same.
1846
1847 2009-08-21  Mark Probst  <mark.probst@gmail.com>
1848
1849         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
1850         the hash function for the ares_htable.
1851
1852 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
1853
1854         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
1855         bit for assembly flags. MS is ok with it but there is no spec anywhere
1856         on its mean
1857
1858 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1859
1860         * class.c (mono_class_create_from_typedef): Emit profiler events
1861         in all cases.
1862
1863 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1864
1865         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
1866         Release memory on failure.
1867
1868 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1869
1870         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
1871         to the internal API.
1872
1873         * metadata.c (get_constraints): Use a single-linked table as we don't
1874         traverse it backward. Fail and return FALSE if only of the contraint types
1875         is not found.
1876
1877         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
1878         to mono_metadata_load_generic_param_constraints except for having a return value.
1879         This has to be done since the later is part of the public API.
1880
1881         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
1882         and fail the type.
1883
1884         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
1885         and fail the method.
1886
1887 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1888
1889         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1890         with MS broken behavior of emmitting EH section sizes without the
1891         header size added.
1892
1893 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1894
1895         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1896         memory until we're sure that we'll need it. This avoids leaking for
1897         broken types or duplicated instantiation.
1898
1899 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1900
1901         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1902         mistake.
1903
1904 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1905
1906         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1907         and expected size calculation.
1908
1909 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1910
1911         * class.c (mono_class_get_field_idx): Add fixme for broken
1912         behavior for types with multiple fields with the same name.
1913         I would rather fix it, but have no idea on how to generate
1914         such artifact for testing.
1915
1916 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1917
1918         * verify.c (verifier_load_field): We should allow references to
1919         fields to be made using the generic type definition. It's up to
1920         the loader system to fail invalid ops.
1921
1922         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1923         are invalid.
1924
1925 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1926
1927         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
1928
1929         * metadata-internals.h: Fix declaration of 
1930         mono_metadata_interfaces_from_typedef_full.
1931
1932         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
1933         heap_alloc_result parameter that controls if the result should be
1934         g_malloc'd.
1935
1936         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
1937         array be g_malloc'd and properly document this public API function.
1938
1939 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1940
1941         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
1942         remove METHOD_HEADER_TINY_FORMAT1.
1943
1944         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
1945
1946         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
1947
1948         Both spec and MS uses only 2 bits to enumerate the kind of header.
1949         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
1950         is superfluous, only used for tiny headers with odd code lengths.
1951
1952         This change also make sure that mono doesn't wronly interpret bit 2
1953         of fat header flags, which is currently reserved.
1954
1955 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1956
1957         * metadata.c (do_mono_metadata_parse_type): Do error
1958         checking for element types. Don't abort if presented
1959         with a broken type kind.
1960
1961 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1962
1963         * metadata.c (mono_metadata_parse_method_signature_full):
1964         Gracefully fail bad vararg signatures.
1965
1966 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1967
1968         * profiler.c:
1969         * class.c: Fix warnings for uninitialized variables.
1970
1971 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1972
1973         * icall.c: Fix _NSGetEnviron method declaration warning.
1974
1975 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1976
1977         * icall.c:
1978         * reflection.c: Make bitwise checks explicit.
1979
1980 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1981
1982         * debug-helpers.c:
1983         * marshal.c: Fix printf warnings.
1984
1985 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1986
1987         * reflection.c (encode_cattr_value): Fix a warning.
1988
1989 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1990
1991         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
1992         of array bounds.
1993
1994 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1995
1996         * loader.c (mono_method_signature): Don't assert on broken
1997         signature. Print a more useful error message.
1998
1999 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2000
2001         * loader.c (mono_method_get_marshal_info): Assert if
2002         signature is invalid. Bounds check stores to the
2003         mspecs array;
2004
2005 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2006
2007         * loader.c (field_from_memberref): Fix warning.
2008
2009 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2010
2011         * loader.c (mono_method_get_param_names): Check if signature
2012         is null. Don't store beyond the size of the name array.
2013
2014 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2015
2016         * loader.c (mono_get_method_constrained): Check if signature
2017         is null.
2018
2019 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2020
2021         * loader.c (mono_loader_set_error_bad_image): Improve
2022         error messages.
2023
2024 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2025
2026         * loader.c (mono_get_method_full): Convert an assertion
2027         into a loader error.
2028
2029 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2030
2031         * class-internals.h, class.c: Better naming and documentation.
2032
2033 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
2034
2035         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
2036         obj is NULL.
2037
2038 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2039
2040         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
2041         parsing fails.
2042
2043 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2044
2045         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2046         errors with no class set.
2047
2048         * loader.c (field_from_memberref): If the field signature is of the wrong
2049         type fail with a MissingFieldException instead of a BadImageException as
2050         this is the behavior observed on MS. 
2051
2052 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2053
2054         * loader.c (field_from_memberref): Don't crash if either the field
2055         signature or the typespec class are invalid.
2056
2057 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2058
2059         * verify.c (verifier_load_field): Don't allow field related
2060         ops to reference fields on generic type definition.
2061
2062 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2063
2064         * metadata-verify.c: Add new warning level for errors specified
2065         by ECMA 335 but that MS ignores.
2066
2067         * metadata-verify.c (verify_method_table): Make compiler controled
2068         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2069         this check is safe because the end result will only be some visibility
2070         exceptions been thrown.
2071
2072 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2073
2074         * verify.c (get_boxable_mono_type): Don't allow the
2075         use of the generic type definition on boxed type positions.
2076
2077         Fixes #531237.
2078
2079 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2080
2081         * threadpool.c: Make sure no cross-domain references remain in
2082         ares_htable or the arrays that are thrown away when resizing.
2083
2084 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2085
2086         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2087         list of classes for which we have to unregister reflection_info
2088         with the GC and which are not in the namespace cache.
2089
2090         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2091         the class to the list.
2092
2093 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2094
2095         * domain.c (mono_domain_free): Unregister the GC roots in
2096         MonoDomain.
2097
2098 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2099
2100         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2101
2102 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2103
2104         * class.c: Add mono_class_get_field_from_name_full which does
2105         the same as mono_class_get_field_from_name but does check field
2106         signature as well.
2107
2108         * class-internals.h: Export mono_class_get_field_from_name_full as
2109         part of the internal API.
2110
2111         * loader.c (field_from_memberref): Search fields by name and signature
2112         as it's valid to have two fields with same name but different types.
2113
2114         Fixes #528055.
2115
2116 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2117
2118         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2119
2120         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2121
2122         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2123         System.Type.
2124
2125 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2126
2127         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2128
2129         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2130
2131 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2132
2133         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2134         to sgen-scan-object.h, which can be included and parameterized via
2135         macros.
2136
2137         * Makefile.am: sgen-scan-object.h added.
2138
2139 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2140
2141         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2142
2143 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2144
2145         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2146         before clearing a domain in the GC.
2147
2148 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2149
2150         * exception.c (mono_exception_from_name_domain): Actually create
2151         the exception in the specified domain.
2152
2153         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2154         OutOfMemoryException a bit later so that the domain is inialized
2155         "enough" that it works.
2156
2157 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2158
2159         * threads.c (thread_cleanup): Clean up the cached_culture_info
2160         array to prevent cross-domain references.
2161
2162 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2163
2164         * metadata.c: more documentation for MonoType accessors.
2165
2166 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2167
2168         Fix incorrect size definitions where the tail array isn't a list
2169         of pointers
2170         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2171         define size.
2172         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2173         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2174         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2175
2176 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2177
2178         * reflection.h:
2179         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2180
2181 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2182
2183         * metadata.c:
2184         * loader.c:
2185         * metadata-internals.h:
2186         * method-builder.c:
2187         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2188
2189 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2190
2191         * cominterop.c:
2192         * metadata.c:
2193         * metadata.h:
2194         * loader.c:
2195         * marshal.c:
2196         * reflection.c: #define for sizeof in MonoType and
2197         MonoMethodSignature.
2198
2199 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2200
2201         * domain.c:
2202         * domain-internals.h: add and use #define's instead of sizeof()
2203         for MonoJitInfo and MonoJitInfoTable.
2204
2205 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2206
2207         * object.c:
2208         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2209
2210 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2211
2212         * metadata.c:
2213         * metadata.h:
2214         * object.c:
2215         * class-internals.h:
2216         * generic-sharing.c:
2217         * marshal.c: use a #define instead of sizeof() for a few
2218         structures that use a zero-length array.
2219
2220 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2221
2222         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2223         to handle inflated generic methods.
2224
2225         * appdomain.c: Bump corlib version.
2226
2227         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2228         instances.
2229
2230         * reflection.c (fixup_method): Same
2231
2232         * reflection.c (resolve_object): Same.
2233
2234         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2235         g_error and a decent message.
2236
2237 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2238
2239         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2240         from the object because it could not yet be available globally
2241         (it happens if the profiler tries to create a gchandle on the
2242         MonoThread object of a thread that is still registering itself
2243         with the runtime).
2244
2245 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2246
2247         * reflection.c (mono_generic_class_get_object): Initialized the
2248         managed type arguments array.
2249
2250         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2251
2252         * appdomain.c: Bump corlib version.
2253
2254 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2255
2256         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2257         #527902.
2258
2259 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2260
2261         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2262         Avoid a crash if synch_cs is not set.
2263         
2264         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2265         Handle the case when the handle is 0.
2266
2267         * appdomain.c: Bump corlib version.
2268
2269 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2270
2271         * reflection.c (mono_type_get_object): Fix a warning.
2272
2273 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2274
2275         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2276         descriptor here.  We assume it's already been computed.
2277
2278         * generic-sharing.c (instantiate_other_info): Compute the GC
2279         descriptor for info type MONO_RGCTX_INFO_KLASS.
2280
2281 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2282
2283         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2284         type, so don't use MONO_OBJECT_SETREF to set a field.
2285
2286 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2287
2288         * gc.c: We were missing one case where invoking a finalizer would
2289         not reset the domain.  Also, in the finalizer thread loop, assert
2290         that we're in the root domain.
2291
2292 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2293
2294         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2295         if the type is not an array.
2296
2297 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2298
2299         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2300         method bound to the declaring type of the method. Raise an exception
2301         if the type is not a generic param.
2302
2303 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2304
2305         * class.c (print_unimplemented_interface_method_info): Print the
2306         full type name.
2307
2308         * class.c (mono_class_setup_vtable_general): When dealing with a
2309         generic instance first check if the generic type definition is
2310         not broken.
2311
2312 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2313
2314         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2315
2316         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2317
2318         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2319
2320         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2321
2322         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2323
2324         Code is contributed under MIT/X11 license
2325
2326 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2327
2328         * verify.c: Fix naming of stelem and ldelem.
2329
2330 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2331
2332         * generic-sharing.c: Replace the templates lock with the loader
2333         lock because of very hard to resolve deadlock issues.
2334
2335 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2336
2337         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2338         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2339         directly. Fixes #525338.
2340
2341         * class.c (mono_class_get_vtable_size): New helper function.
2342
2343         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2344         the field belongs to the type. Fixes #525733.
2345
2346 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2347
2348         * sgen-gc.c: When we stop a thread and its stack top is not within
2349         its allocated stack (because it's in an altstack signal handler),
2350         restart it and stop it again, until it is.
2351
2352 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2353
2354         * sgen-gc.c: Take a thread's stack top and registers from the
2355         sigcontext in the suspend signal handler.
2356
2357         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2358         stuff to sgen-archdep.h.
2359
2360         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2361         caller, because have code in sgen-archdep.h to acquire that data.
2362
2363 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2364
2365         * profiler.c, profiler.h, profiler-private.h:
2366         Added support for keeping track of code chunks and buffers.
2367
2368 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2369
2370         * metadata-verify.c: Fix endianness problems on decoding functions.
2371         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2372
2373 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2374
2375         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2376         schema for vectors and one dimension SZARRAY.
2377
2378 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2379
2380         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2381         schema for vectors and one dimension SZARRAY.
2382
2383 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2384
2385         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2386         Interlocked.(Compare)Exchange with object arguments, which invoke
2387         write barriers.
2388
2389 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2390
2391         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2392         passed invalid arguments.   Fixes another crasher in the
2393         Silverlight test suite.
2394
2395         * class.c (mono_class_array_element_size): Return 0 for the size
2396         of the class;  This fixes the crasher exposed by :
2397
2398         typeof (void).MakeArrayType ();
2399
2400         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2401         if there is no method to dereference.    Put all the code that
2402         depends on this inside the if (method) block.
2403
2404         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2405         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2406
2407         With this change, we pass the test.
2408         
2409         * reflection.c (mono_reflection_sighelper_get_signature_local):
2410         Only dereference the assembly if it has been set.    Fixes a
2411         crasher exposed by #525328
2412
2413 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2414
2415         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2416         don't perform the store in mono_gc_wbarrier_generic_nostore().
2417         Remove the second argument (value), which is not needed.
2418
2419 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2420
2421         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2422         the build.
2423
2424         * boehm-gc.c: Ditto.
2425         
2426 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2427
2428         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2429         not perform the store itself.  Introduce
2430         mono_gc_wbarrier_generic_nostore(), which is the same as
2431         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2432         store.
2433
2434 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2435
2436         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2437         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2438         we still need the memcpy().
2439
2440 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2441
2442         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2443         so that big arrays are handled correctly.  Always use
2444         safe_object_get_size() to calculate array object sizes, which
2445         takes bounds into account.
2446
2447 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2448
2449         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2450         GC descriptor is computed before we use it.
2451
2452 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2453
2454         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2455         write barrier if necessary.
2456
2457 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2458
2459         * icall-def.h, icall.c, thread-types.h: New separate icall for
2460         VolatileWrite(object&,object) that uses a write barrier.
2461
2462         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2463         barriers in icalls which write to "ref" or "out" arguments.
2464
2465 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2466
2467         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2468         handler in a separate icall, to reduce the size of the wrappers.
2469
2470 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2471
2472         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
2473
2474 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2475
2476         * metadata-verify.c (parse_field): Allow byref field.
2477
2478         * metadata-verify.c (parse_locals_signature): Allow byref locals.
2479
2480         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
2481
2482 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2483
2484         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
2485         Fixes #522784.
2486
2487 2009-07-20  Robert Jordan  <robertj@gmx.net>
2488
2489         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
2490         Fix invalid IL in valuetype handling (STOBJ must push the
2491         corresponding class). Fixes bug #523149.
2492
2493         Code is contributed under MIT/X11 license.
2494
2495 2009-07-20  Geoff Norton  <gnorton@novell.com>
2496
2497         * gc.c: Use proper semaphores where available on posix and darwin.
2498
2499 2009-07-19  Geoff Norton  <gnorton@novell.com>
2500
2501         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
2502
2503 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2504
2505         * refletion.c (is_sre_usertype): Change name to is_usertype and
2506         invert it's result so it returns true if the type is an user type
2507         and not the opposite.
2508
2509         * reflection.c (is_*_type): Change all of those to use new macro
2510         check_corlib_type_cached that cached the type lookup so we don't
2511         need to do string comparisons all the type. Changed the signature
2512         to take a MonoClass instead.
2513
2514         * reflection.c: Change mono_image_create_token and resolve_object
2515         to use is_sre_* functions.
2516
2517 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2518
2519         * sgen-gc.c: Check for writes to the stack in the managed
2520         wbarrier as well.
2521
2522 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2523
2524         * sgen-gc.c: When a thread is unregistered, don't free its remsets
2525         but put them on a list which is processed with the other thread's
2526         remsets.
2527
2528 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2529
2530         * sgen-gc.c: Fix and enable the internal allocator instead of
2531         using malloc/free (which causes deadlocks).
2532
2533 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2534
2535         * refletion.c: Fix builds with SRE disabled by adding a minimal
2536         implementation of mono_reflection_type_get_handle.
2537
2538 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2539
2540         * refletion.c: Make mono_reflection_type_get_handle non static.
2541
2542         * object-internals.h: Export mono_reflection_type_get_handle.
2543
2544         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
2545         unmanaged handle using mono_reflection_type_get_handle.
2546
2547 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2548
2549         * refletion.c: Replace all reads of MonoReflectionType::type with
2550         calls to mono_reflection_type_get_handle. Only the functions that
2551         deal with constructing TypeBuilder::type have not been changed
2552         because they have to deal with NULL values.
2553
2554         This is a first step into supporting reflection types that don't
2555         map directly into their unmanaged counterpart.
2556
2557 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2558
2559         * metadata-verify.c (parse_locals_signature): Don't complain
2560         on signature with zero locals since MS generates it and doesn't
2561         bother with.
2562
2563 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2564
2565         * reflection.c (mono_image_get_array_token): Resolve return
2566         type using mono_reflection_type_get_handle.
2567
2568         * reflection.c (mono_image_get_array_token): Resolve array method
2569         parent type using mono_reflection_type_get_handle.
2570
2571 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2572
2573         * reflection.c (mono_image_basic_init): Applied patch from
2574         <Dax@daxxfiles.net>. Set the public key token from the assembly
2575         builder. Fixes #518909.
2576
2577         * appdomain.c: Bump corlib version.
2578
2579 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2580
2581         * class.c (mono_class_needs_cctor_run): Make this return false if
2582         the class has no cctor.
2583
2584 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2585
2586         * sgen-gc.c: When the minor GC needs to allocate a new section,
2587         invoke the major GC afterwards.
2588
2589 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
2590
2591         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
2592           Applying the window_style field to the SHELLEXECUTEINFO struct.
2593
2594         Code is contributed under MIT/X11 license.
2595
2596 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2597
2598         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
2599         locking earlier.  Fix it in the managed allocator by making sure
2600         that no thread is stopped there before the GC runs.  If we do stop
2601         a thread there, we restart it and let it run a but, until it stops
2602         somewhere else.
2603
2604         * gc-internal.h, gc.c: Function for getting the IP from a signal
2605         context via a function registered by mini.
2606
2607 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
2608
2609         * object-internals.h (MonoIntPtr): New structure describing a boxed
2610         IntPtr.
2611
2612         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
2613         returns. Fixes #519953.
2614
2615         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
2616
2617 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2618
2619         * class-internals.h, generic-sharing.c: New RGCTX info type for
2620         getting a remoting invoke with check wrapper.
2621
2622 2009-07-07  Geoff Norton  <gnorton@novell.com>
2623
2624         * icall-def.h: Fix the enable-minimal build.
2625
2626 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2627
2628         * object-internals.h: Add MonoReflectionDerivedType.
2629
2630         * reflection.c: Implement support for PointerType.
2631         Fixed tons of warnings.
2632
2633 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2634
2635         * object-internals.h: Add MonoReflectionByRefType.
2636
2637         * reflection.c: Implement support for ByRefType.
2638
2639 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2640
2641         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
2642
2643         * object-internals.h: Add MonoReflectionArrayType and
2644         mono_reflection_create_unmanaged_type.
2645
2646         * reflection.c: Implement support for ArrayType.
2647
2648 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2649
2650         * metadata-verify.c (is_valid_method_header): Parse EH block
2651         flags correctly.
2652
2653 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2654
2655         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
2656         processing the disappearing links, and process disappearing links
2657         in a loop until no new objects are copied.
2658
2659 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2660
2661         * object.c (handle_enum): Invoke the write barrier when copying
2662         value type instances.
2663
2664         * sgen-gc.c: Register remsets for unmanaged write barriers only
2665         when the address written to is actually on the heap.  This makes
2666         set_value() in object.c work without requiring that the result be
2667         on the heap.
2668
2669 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2670
2671         The runtime wrappers are all bound to a given type that must
2672         exist in the same image. For regular images we use the <Module>
2673         type, which is required to exist for all images.
2674
2675         The <Module> type can't be used for dynamic images because it
2676         might not exist at the time the wrapper is required, so we create
2677         a synthetic type to use instead.
2678
2679         The current code works because of the 2 stage setup of MonoClass,
2680         but once this is gone it will no longer work.
2681
2682         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
2683
2684         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
2685
2686         * object-internals.h: Export mono_image_set_wrappers_type icall
2687         as part of the internal API.
2688
2689         * marshal.c (get_wrapper_target_class): If the image is dynamic,
2690         use MonoDynamicImage::wrappers_type instead of the <Module> type.
2691
2692         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
2693         image wrappers_type to the provided value.
2694
2695 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
2696
2697         * appdomain.c (deregister_reflection_info_roots): No need
2698         to use the image lock here.
2699
2700 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2701
2702         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2703
2704 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2705
2706         * threads.c: Store the thread start argument in a hash table instead of
2707         registering it as a root, as libgc doesn't support unregistering roots
2708         under windows, leading to 'too many root sets' errors when many threads
2709         are created.
2710
2711         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2712         shutdown, they can still be referenced by the other dying objects.
2713         Fixes #514506.
2714
2715 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2716
2717         * socket-io.c: DontLinger does not allow LingerOptions.
2718
2719 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2720
2721         * metadata-verify.c: The spec doesn't mention that it's possible to add
2722         custom attribute to a generic parameter. Fixed.
2723
2724 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2725
2726         * class.c (inflate_generic_type): Don't crash while trying to output a message
2727         on why we're aborting.
2728
2729 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2730
2731         * socket-io.c: DontLinger can take an int or a boolean too.
2732
2733 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2734
2735         * gc.c: check for a null argument to SuppressFinalize () and
2736         ReRegisterForFinalize ().
2737
2738 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2739
2740         * loader.c (method_from_methodspec): Call into the verifier to check
2741         the signature.
2742
2743         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2744
2745         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2746         part of the internal API.
2747
2748 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2749
2750         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2751         the signature.
2752
2753         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2754
2755         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2756         part of the internal API.
2757
2758 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2759
2760         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2761         the signature.
2762
2763         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2764         blob verification.
2765
2766         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2767         part of the internal API.
2768
2769 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2770
2771         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2772         when doing basic verification. 
2773
2774         This check must be done since the runtime peeks into signatures in much
2775         more places than it does decoding so it makes sense to ensure that all
2776         pointers to blob objects are well formed.
2777
2778 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2779
2780         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2781         Use proper overflow dectection. Fix usage of it.
2782
2783 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2784
2785         * loader.c (field_from_memberref): Call into the verifier to check
2786         the signature.
2787
2788         * loader.c (mono_method_get_signature_full): Same.
2789
2790         * loader.c (method_from_memberref): Same.
2791
2792         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2793
2794         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2795         part of the internal API.
2796
2797 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2798
2799         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2800         or unloaded, still return an AsyncResult, but don't add it to the
2801         threadpool.
2802
2803 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2804
2805         * threads.c: fix missing colon when DEBUG is defined.
2806
2807 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2808
2809         * threadpool.c: Don't add new calls to a threadpool if the domain
2810         of the call is unloading or unloaded.  When dequeuing a job, null
2811         the reference in the queue.
2812
2813 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2814
2815         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2816         generation if an object was moved.
2817
2818 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2819
2820         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2821           parameters of type SAFEARRAY[VARIANT].
2822
2823         * reflection.c (encode_marshal_blob): Properly generate element type
2824           (SafeArraySubType marshal attribute option).
2825
2826         Code is contributed under MIT/X11 license.
2827
2828 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2829
2830         * reflection.c: in mono_method_clear_object () really ensure all the
2831         objects are removed.
2832
2833 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2834
2835         * loader.c (mono_method_signature): Call into the verifier to check
2836         the method signature.
2837
2838         * metadata-verify.c (verify_method_table): Move signature verification
2839         to verify_method_table_full.
2840
2841         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2842
2843         * verify-internals.h: Export mono_verifier_verify_method_signature as
2844         part of the internal API.
2845
2846 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2847
2848         * loader.c (mono_method_get_header): Call into the verifier to
2849         check the method header.
2850
2851         * metadata-verify.c: Add mono_verifier_verify_method_header.
2852
2853         * verify-internals.h: Export mono_verifier_verify_method_header as
2854         part of the internal API.
2855
2856 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2857
2858         * class.c (mono_class_find_enum_basetype): Call into the verifier to
2859         check the field signature. Replace an assert with an explicit check.
2860
2861         * class.c (mono_class_setup_fields): Call into the verifier to check
2862         the field signature.
2863
2864         * metadata-verify.c: Add mono_verifier_verify_field_signature.
2865
2866         * verify-internals.h: Export mono_verifier_verify_field_signature as
2867         part of the internal API.
2868
2869 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2870
2871         * class.c (mono_class_find_enum_basetype): Simplify this function
2872         by moving code outside of the loop and not decoding static fields.
2873
2874 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2875
2876         * metadata-verify.c (verify_typedef_table): Check the extends
2877         token here. Move to here a flags check from verify_typedef_table_full.
2878
2879 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2880
2881         * metadata-verify.c (is_valid_method_header): Fix a warning.
2882
2883         * metadata-internals.h (MonoImage): Remove the unused 
2884         static_rgctx_invoke_wrapper_cache.
2885
2886         * image.c marshal.c: Ditto.
2887
2888 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2889
2890         * image.c (do_mono_image_load): Enable table data verification.
2891
2892 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2893
2894         * metadata-verify.c (is_valid_constant): Fix nullref check.
2895
2896 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2897
2898         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2899
2900 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2901
2902         * sgen-gc.c: Managed allocation with pthreads TLS.
2903
2904         * threads.c, threads-types.h: Functions for the JIT to tell the
2905         runtime whether it supports the MONO_TLS opcode.
2906
2907 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2908
2909         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2910         without methods.
2911
2912 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2913
2914         * metadata-verify.c (is_valid_constant): Fix the string length check.
2915         Use safe overflow checking. Add decent error messages.
2916
2917 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2918
2919         * metadata-verify.c: Move remaininh blob checks to the offline
2920         verification path.
2921
2922 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2923
2924         * metadata-verify.c: Move more blob checks to the offline verification
2925         path.
2926
2927 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
2928
2929         * object-internals.h : Adding interrupt_on_stop field.
2930
2931         * threads.c (mono_thread_request_interruption) : On Windows exit the
2932           thread if interrupt_on_stop is set.
2933
2934         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2935          Removing old interrupt logic and setting the interrupt_on_stop for the
2936          thread when calling accept.
2937
2938         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
2939          setting the interrupt_on_stop for the thread when calling accept.
2940
2941         Contributed under MIT/X11 license.
2942
2943 2009-06-20  Martin Baulig  <martin@ximian.com>
2944
2945         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
2946
2947 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2948
2949         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
2950         running in no-exec mode.
2951
2952 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2953
2954         * metadata-verify.c (verify_method_table): Move header
2955         checking to verify_method_table_full.
2956
2957         * metata-verify.c (mono_verifier_verify_full_table_data):
2958         Call verify_method_table_full.
2959
2960 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2961
2962         * metadata-verify.c (verify_field_table): Move signature
2963         checking to verify_field_table_full.
2964
2965         * metata-verify.c (mono_verifier_verify_full_table_data):
2966         Call verify_field_table_full.
2967
2968 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2969
2970         * metadata-verify.c (verify_typedef_table): Move remaining
2971         stuff to verify_typedef_table_full.
2972
2973 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2974
2975         * metadata-verify.c: Kill is_corlib from VerifyContext.
2976         It is only used by the offline mode.
2977         So we better remove it from the runtime path.
2978
2979 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2980
2981         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
2982         function that perform the offline metadata verification steps.
2983
2984         * metadata-verify.c (verify_typedef_table): Move some checks to
2985         verify_typedef_table_full and make it been called by new function
2986         mono_verifier_verify_full_table_data.
2987
2988         * pedump.c: Call mono_verifier_verify_full_table_data.
2989
2990         * verify-internals.h: Export mono_verifier_verify_full_table_data as
2991         part of the internal API.
2992
2993 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2994
2995         * metadata-verify.c (typedef_is_system_object): Fix System.Object
2996         check.
2997
2998         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
2999         flags bits. SupportLastError was confused as bit 7 instead of 6.
3000
3001         * metadata-verify.c (verify_implmap_table): Fix import scope verification
3002         to check against the module ref table instead of module.
3003
3004         * metadata-verify.c (verify_implmap_table): Fix corlib check.
3005
3006         * pedump.c: Call mono_image_load_names.
3007
3008 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3009
3010         * image.c: Extract mono_image_load_names from do_mono_image_load.
3011
3012         * metadata-internals.h: Export mono_image_load_names as part of
3013         the internal API.
3014         
3015 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3016
3017         * metadata.c (mono_metadata_cleanup): Free the generic method cache
3018         first, as it could reference data in the other caches.
3019
3020 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3021
3022         * metadata-verify.c: Finished with method header verification.
3023
3024 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3025
3026         * metadata-verify.c: Added more header verification code.
3027         Now only EH clauses are missing.
3028
3029 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3030
3031         * marshal.c (get_runtime_invoke_type): Don't share primitive types
3032         for return values.
3033
3034 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3035
3036         * metadata-verify.c: Initial method header verification.
3037
3038 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3039
3040         * metadata-verify.c (verify_import_table): The IAT contents
3041         might end been patched by the windows DL when running with
3042         coree enabled.
3043
3044 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3045
3046         * class.c (mono_class_from_typeref): If the enclosing type is not
3047         found return null instead of crashing. Fixes #508487.
3048
3049 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3050
3051         * normalization-tables.h : updated to the latest unicode charcter
3052           data.
3053         * appdomain.c : bump corlib version.
3054
3055 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3056
3057         * class.c (mono_class_from_name): Fix support for assembly references
3058         in the EXPORTEDTYPE table. Fixes #511704.
3059
3060 2009-06-13  Geoff Norton  <gnorton@novell.com>
3061
3062         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3063         assembly in the target domain.
3064
3065 2009-06-12  Robert Jordan  <robertj@gmx.net>
3066
3067         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3068         because "this" of the managed signature has become an
3069         ordinary parameter in the unmanaged signature.
3070
3071 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3072
3073         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3074         field for owner-less generic containers.
3075
3076         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3077         image field of the owner-less generic containers created here.
3078
3079         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3080         contain is ownerless until the caller sets its owner.
3081
3082         * metadata.c (type_in_image): Handle owner-less generic containers
3083         correctly.
3084         
3085 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3086
3087         * image.c (mono_image_close): Support debug_assembly_unload for
3088         dynamic images too.
3089
3090 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3091
3092         * class.c: Fix some typos in comments.
3093
3094 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3095
3096         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3097
3098         * threads.c (mono_thread_execute_interruption): Avoid creating the
3099         abort exception object while holding the synch_cs lock.
3100
3101 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3102
3103         * metadata-verify.c: Verify basic cattr content.
3104
3105 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3106
3107         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3108         nested types.
3109         
3110         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3111         support for nested types. Fixes #511704.
3112
3113 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3114
3115         * metadata-verify.c: Verify methodspec signatures.
3116
3117 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3118
3119         * metadata-verify.c: Verify typespec signatures.
3120
3121 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3122
3123         * metadata.c (free_inflated_method): Call 
3124         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3125
3126 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3127
3128         * mono-config.c: Small change to report the PPC64/ILP32 model.
3129
3130 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3131
3132         * metadata-verify.c (parse_type): Check szarray.
3133
3134 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3135
3136         * metadata-verify.c (parse_type): Check fnptr.
3137
3138 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3139
3140         * metadata-verify.c (parse_type): Check generic instances.
3141
3142 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3143
3144         * metadata-verify.c (parse_type): Check array shape.
3145
3146 2009-06-05  Robert Jordan  <robertj@gmx.net>
3147
3148         * class.c (mono_class_create_from_typedef): Check only for
3149         mscorlib's System.Array.
3150
3151 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3152
3153         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3154         and generic params. 
3155
3156         * metadata-verify.c (parse_field): Check the signature.
3157
3158 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3159
3160         * metadata-verify.c: Implement locals signature check.
3161
3162 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3163
3164         * domain.c: Add .NET 4.0 Beta 1 version.
3165
3166 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3167
3168         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3169           For QueryInterface on CCWs consider the base class
3170           interfaces as well.
3171
3172         Code is contributed under MIT/X11 license.
3173
3174 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3175
3176         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3177
3178         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3179         used.
3180
3181         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3182         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3183
3184         * generic-sharing.c (inflate_other_data): Ditto.
3185         
3186 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3187
3188         * metadata-verify.c: Implement property signature check.
3189
3190 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3191
3192         * sgen-gc.h: Register saving support for PPC.
3193
3194 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3195
3196         * sgen-gc.c: Fixed a pthread TLS screwup.
3197
3198 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3199
3200         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3201         supported.
3202
3203 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3204
3205         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3206         keyword is not supported.
3207
3208 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3209
3210         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3211         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3212         the inflated method is freed. Fixes #508389.
3213
3214         The code is contributed under the MIT/X11 license.
3215         
3216 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3217
3218         * marshal.c (get_wrapper_target_class): New helper function.
3219         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3220         the <Module> class of the image. Fixes #509049.
3221
3222 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3223
3224         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3225         Check if the thread was interrupted and proccess it straight away.
3226         Makes abortion much more responsive.
3227
3228 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3229
3230         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3231         MonoThread::interruption_requested to match it's counterpart.
3232
3233         Fixes a hang in abort-stress-1 on a 2 core x86.
3234
3235         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3236         Fix warning.
3237
3238 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3239
3240         Change MonoImage::name_cache to be protected by the image lock
3241         instead of the loader lock.
3242
3243         * appdomain.c (deregister_reflection_info_roots): Protect access
3244         to name_cache.
3245
3246         * class.c (mono_image_init_name_cache): Change from the loader lock
3247         to the image lock. Check if the cache wasn't already created.
3248
3249         * class.c: Change from the loader to the image lock.
3250
3251         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3252         the code to hold the image lock while iterating over name_cache and
3253         not go into mono_array_new holding it.
3254
3255         * metadata-internals.h: Add a comment about this change.
3256
3257 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3258
3259         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3260         Under the 2.0 profile raise the loader error.
3261
3262         Fixes #508532.
3263
3264 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3265
3266         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3267         of ldind opcode for generic instances so we don't fail for direct wrappers.
3268         This only affect direct calls.
3269
3270 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3271
3272         * reflection.c (create_dynamic_mono_image): Fix warnings.
3273
3274         * generic-sharing.c (other_info_equal): Ditto.
3275         
3276 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3277
3278         * metadata-verify.c: Implement field signature check.
3279
3280 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3281
3282         * metadata-verify.c: Implement standalone signature check.
3283
3284 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3285
3286         * metadata-verify.c: Implement methodref signature check.
3287
3288 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3289
3290         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3291         callbacks supplied by the runtime.
3292
3293         * object.c (mono_install_callbacks): New internal function to install
3294         the callbacks.
3295
3296         * object.c (mono_create_ftnptr): Move the implementation of this to
3297         mini/.
3298
3299         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3300
3301 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3302
3303         * metadata-verify.c (parse_return_type): Proper byref check.
3304         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3305         generic signatures and method params.
3306
3307 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3308
3309         * metadata-verify.c (decode_signature_header): Fix bounds check.
3310
3311         * metadata-verify.c (parse_custom_mods): Check custom mods.
3312
3313         * metadata-verify.c (parse_type): Do initial basic verification
3314         of valid values.
3315         
3316         * metadata-verify.c (is_valid_method_signature): Parse the generic
3317         param count.
3318
3319 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3320
3321         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3322         discarded based on their most specific definition so we set the method_slots
3323         array before checking if the method is acceptable or not.
3324
3325         Fixes #506757.
3326
3327 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3328
3329         * icall.c: Free the old array when resizing a mono_ptr_array.
3330
3331 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3332
3333         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3334         for the hashes whose keys are managed objects.
3335
3336 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3337
3338         * object-internals.h, threads.c: Set the execution context on
3339         thread start here, not in corlib.
3340
3341         * appdomain.c: Bump corlib version.
3342
3343 2009-05-27  Martin Baulig  <martin@ximian.com>
3344
3345         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3346         if `_mono_debug_using_mono_debugger' is set to make things work
3347         properly when embedding Mono.
3348
3349 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3350
3351         * class.c (mono_class_setup_fields): Don't mark simd types as having
3352         16 bytes alignment as the whole runtime doesn't support.
3353
3354 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3355
3356         * metadata-verify.c (safe_read): Use endian safe read macros.
3357
3358 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3359
3360         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3361         it is read-only when using full aot.
3362
3363 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3364
3365         * metadata-verify.c (is_valid_method_signature): Verify parts
3366         of the return type. Provide an error message in case of failure.
3367
3368 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3369
3370         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3371
3372 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3373
3374         * metadata-verify.c: Include the size prefix in the bounds check.
3375
3376 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3377
3378         * icall.c: Remove warnings.
3379
3380         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3381         prevent auto-detection based on GCC defines.
3382
3383         Add PS3
3384
3385         * metadata-verify.c: Do not include signal.h
3386
3387         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3388         messages.  Not sure why the g_assert_not_reached is not enough to
3389         quiet the compiler.
3390         
3391
3392         * appdomain.c: Remove code that is not used when
3393         DISABLE_SHADOW_COPY is set.
3394
3395         * image.c: use g_getenv
3396
3397 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3398
3399         * reflection.c: Remove code that it not used with
3400         DISABLE_REFLECTION_EMIT is defined.
3401
3402 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3403
3404         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3405         invoke wrappers.
3406
3407 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3408
3409         * socket-io.c
3410         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3411         the ifdef here and instead put that on io-layer
3412
3413 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3414
3415         * metadata-verify.c: Verify the generic param constraint table.
3416
3417 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3418
3419         * metadata-verify.c (verify_generic_param_table): Fix
3420         thinko on the valid flags bits for generic params.
3421
3422 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3423
3424         * metadata-verify.c: Verify the methodspec table.
3425
3426 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3427
3428         * metadata-verify.c: Verify the generic param table.
3429
3430 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3431
3432         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3433
3434 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3435
3436         * sgen-gc.c: Use generation enum more consistently and use the
3437         correct generation in mono_gc_register_for_finalization().
3438
3439 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3440
3441         * metadata-verify.c: Verify the nested class table.
3442
3443 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3444
3445         * metadata-verify.c: Verify the manifest resource table.
3446
3447 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3448
3449         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3450
3451 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3452
3453         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3454         wrappers, this is now done in the JIT.
3455         
3456         * class.c (mono_set_generic_sharing_supported): New internal function.
3457         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3458
3459 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3460
3461         * metadata-verify.c: Verify the exported type table.
3462
3463 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3464
3465         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3466
3467 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3468
3469         * metadata-verify.c: Verify the file table.
3470
3471 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3472
3473         * metadata-verify.c (verify_assembly_table): Fix an error message.
3474
3475         * metadata-verify.c: Verify the assemblyref table.
3476
3477 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3478
3479         * metadata-verify.c (verify_assembly_table): Fix the valid
3480         bits mask for flags.
3481
3482 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3483
3484         * debug-helpers.c (mono_method_full_name): Print generic parameters of
3485         generic methods as well.
3486
3487 2009-05-15  Geoff Norton  <gnorton@novell.com>
3488
3489         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
3490         use-case and is significantly more performant than the wapi layer.
3491
3492 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3493
3494         * metadata-verify.c: Verify the assembly table.
3495
3496 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3497
3498         * metadata-verify.c: Fix rows limit check.
3499
3500 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3501
3502         * metadata-verify.c: Verify the fieldrva table.
3503
3504 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3505
3506         * sgen.c: Speed up weak links and finalizers by grouping them by
3507         generation.
3508
3509 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3510
3511         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3512         free the old GCHandle (only applies to SGen).
3513
3514 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3515
3516         * loader.c (mono_get_method_from_token): Avoid the expensive call to
3517         mono_metadata_load_generic_params () for non-generic methods.
3518
3519 2009-05-12  Mark Probst  <mark.probst@gmail.com>
3520
3521         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
3522         New function for returning a monitor's weak link if it has one.
3523
3524         * sgen-gc.c: Remove an object's monitor's weak link (if it has
3525         one) when clearing a domain.  These can still be around because
3526         the object might not have been collected.
3527
3528 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3529
3530         * gc.c: Fix a warning.
3531
3532 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
3533
3534         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
3535         prevous wait that resulted in a deadlock on Windows when initializing
3536         the runtime form DllMain. Also results in improved startup time.
3537         (finalizer_thread): Get rid of thread_started_event.
3538         * threads.c, threads-types.h (mono_thread_create_internal): Return the
3539         resulting MonoThread.
3540
3541         Contributed under MIT/X11 license.
3542
3543 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
3544
3545         * metadata-verify.c: Verify the implmap table.
3546         Don't require that #US and #Strings be present.
3547
3548 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
3549
3550         * security-core-clr.c: Delegate checks are done at creation time,
3551         not a invocation time. Fix exception for Telerik Silverlight demo
3552
3553 2009-05-11  Mark Probst  <mark.probst@gmail.com>
3554
3555         * sgen-gc.c (need_remove_object_for_domain): Remove the special
3556         case for the Thread class.
3557
3558         * threads.c: Do clean-up of abort exception/state in
3559         thread_cleanup() instead of Thread.free_internal().  Also clean up
3560         current_appcontext.  The reason we have to do that is because
3561         those references might point into another domain and if that
3562         domain is unloaded before the thread is finalized, they point to
3563         invalid data.
3564
3565 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
3566
3567         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
3568         stub signatures.
3569         
3570         Contributed unter MIT/X11 license.
3571
3572 2009-05-09  Miguel de Icaza  <miguel@novell.com>
3573
3574         * verify.c, metadata-verifier.c: Add support for disabling the
3575         verifier in some builds.
3576
3577         [ Sorry, my previous commit accidentally commited some work in
3578         progress ]
3579
3580 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3581
3582         * class.c (mono_class_setup_fields): Set class->field.first for
3583         generic instances.
3584
3585 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3586
3587         * metadata-verify.c: Verify the typespec table.
3588
3589 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3590
3591         * metadata-verify.c: Verify the module table.
3592
3593 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3594
3595         * metadata-verify.c: Verify the methodimpl table.
3596
3597 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3598
3599         * metadata-verify.c: Verify the property table.
3600
3601 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3602
3603         * debug-helpers.c (mono_method_desc_match): Add support for generic
3604         glob patterns.
3605
3606 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
3607
3608         * metadata-verify.c: Verify the propertymap table.
3609
3610 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
3611
3612         * metadata-verify.c: Verify the event table.
3613
3614         * metadata-verify.c (search_sorted_table): Fix offset
3615         calculation.
3616
3617 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
3618
3619         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
3620
3621 2009-05-01  Mark Probst  <mark.probst@gmail.com>
3622
3623         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
3624         because mono_delegate_free_ftnptr() needs it.
3625
3626 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3627
3628         * metadata-verify.c: Verify the eventmap table.
3629
3630 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3631
3632         * metadata-verify.c: Verify the standalonesig table.
3633
3634 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3635
3636         * metadata-verify.c: Verify the field layout table.
3637
3638 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3639
3640         * class.c (mono_type_get_name_recurse): Don't crash
3641         for ownerless generic params.
3642
3643         * debug-helpers.c (mono_type_get_desc): Correct the format
3644         for ownerless generic params.
3645
3646 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3647
3648         * metadata-verify.c: Verify the class layout table.
3649
3650 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3651
3652         * metadata-verify.c: Verify the decl security table.
3653
3654 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3655
3656         * domain.c (mono_domain_set_internal_with_options): Don't do
3657         anything if the old domain is the same as the old one.  Fixes
3658         #499326.
3659
3660 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3661
3662         * appdomain.c: Deregister the reflection_info roots when unloading
3663         a domain.
3664
3665         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
3666         memory allocated by a domain and frees its disappearing links.
3667
3668         * boehm-gc.c, null-gc.c: Empty implementation of
3669         mono_gc_clear_domain().
3670
3671 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3672
3673         * appdomain.c (clear_cached_vtable): Free the static fields memory
3674         block.
3675
3676 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3677
3678         * gc.c: Set the correct domain when invoking finalizers.
3679
3680         * appdomain.c: Set the correct domain when creating threads.
3681
3682 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3683
3684         * sgen-gc.c: Fix skip size for vectors.
3685
3686 2009-05-03  Martin Baulig  <martin@ximian.com>
3687
3688         * mono-debug-debugger.c
3689         (mono_debugger_check_breakpoints): Check class init handlers even
3690         if we don't have any method load handers.
3691
3692 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3693
3694         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
3695         returning refonly assemblies if refonly is FALSE. Fixes #499013.
3696
3697 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3698
3699         * metadata-verify.c: Verify the field marshal table.
3700
3701 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3702
3703         * metadata-verify.c: Verify the custom attribute table.
3704
3705 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3706
3707         * metadata-verify.c: Verify the constant table.
3708
3709 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3710
3711         * metadata-verify.c: Verify the memberef table.
3712
3713 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3714
3715         * metadata-verify.c (get_coded_index_token): Remove
3716         dead argument.
3717
3718 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3719
3720         * metadata-verify.c: Verify the interfaceimpl table.
3721
3722 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3723
3724         * verify.c: Improve error message.
3725
3726         * debug-helpers.c (mono_type_get_desc): Harden the code that
3727         deals with VAR and MVAR.
3728
3729 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3730
3731         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3732         part of #498692.
3733
3734 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3735
3736         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3737         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3738
3739 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3740
3741         * security-core-clr.c: Avoid redundant checks for platform code, 
3742         e.g. check for method and for class (very common) and check
3743         for class and outer class (less common)...
3744
3745 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3746
3747         * reflection.c: Avoid returning random cattrs for synthetic methods.
3748         Fixes #498545.
3749
3750 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3751
3752         * assembly.c: assemblies in the GAC should never be shadow-copied.
3753
3754 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3755
3756         * domain.c, domain-internals.h: Disable
3757         track_resurrection_{objects,handles}_hash in MonoDomain if using
3758         SGen.
3759
3760 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3761
3762         * metadata-verify.c: Verify the param table.
3763
3764 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3765
3766         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3767         MethodList.
3768
3769         * metadata-verify.c (verify_method_table): Proper check the ParamList
3770         field.
3771
3772 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3773
3774         * metadata-verify.c (verify_method_table): Check for runtime
3775         implemented functions such as delegate .ctors. Remove spurious
3776         printf.
3777         
3778 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3779
3780         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3781
3782 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3783
3784         Don't allocate MonoGenericInfo for ownerless generic params.
3785         * class-internals.h (MonoGenericParam::info): Move field to ...
3786         (MonoGenericParamFull): ... this.  New struct.
3787         (MonoGenericContainer::type_params): Change type to
3788         MonoGenericParamFull.
3789         (MonoGenericParam, MonoGenericContainer): Update accessors.
3790         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3791         'info' field for ownerless generic param.
3792         (mono_metadata_load_generic_params): Update to changes.
3793         * reflection.c (mono_reflection_create_generic_class): Likewise.
3794         (reflection_methodbuilder_to_mono_method): Likewise.
3795         (mono_reflection_initialize_generic_parameter): Likewise.
3796
3797 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3798
3799         Don't use MonoGenericParamInfo for ownerless generic params.
3800         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3801         use ParamInfo class at all.
3802         (mono_class_from_generic_parameter): Use them.
3803         (make_generic_param_class): Fix a couple of instances where 'pinfo
3804         == NULL' wasn't handle.
3805
3806 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3807
3808         * class.c (make_generic_param_class): Carve out of ...
3809         (mono_class_from_generic_parameter): ... here.
3810
3811 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3812
3813         Simplify mono_class_from_generic_parameter
3814         * class-internals.h (MonoGenericParamInfo::token): New field.
3815         * metadata.c (mono_metadata_load_generic_params): Initialize it
3816         from metadata.
3817         * class.c (mono_class_from_generic_parameter): Use it instead of
3818         searching through metadata.
3819
3820 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3821
3822         * metadata-verify.c: Add verification of the method table.
3823
3824 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3825
3826         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3827         Delegate::Invoke optimization.
3828
3829 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3830
3831         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3832         string returned by get_shadow_assembly_location_base.
3833
3834         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3835         about caller's ownership.
3836
3837 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3838
3839         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3840         reflection memory on domain unload.
3841
3842         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3843         reflection cleanup code do it.
3844
3845         * domain-internals.h: Add mono_reflection_cleanup_domain.
3846
3847         This fixes a memory leak for managed mirrors of reflection objects
3848         on domain unload. 
3849
3850 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3851
3852         * metadata-verify.c: Implement more verification of the field table.
3853
3854 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3855
3856         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
3857         doesn't try to parse the input assembly, which can be broken.
3858
3859 2009-04-23  Mark Probst  <mark.probst@gmail.com>
3860
3861         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
3862         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
3863         by using the lowest bit in the link to store whether the link is
3864         tracked.  Move the track_resurrection hashes into boehm-gc.c.
3865
3866 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3867
3868         * Makefile.am: Split the console support in platform specific code
3869         and put together a framework for making this easy in the future so
3870         that we can start splitting code instead of having a mess of PLATFORM_WIN32
3871
3872 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3873
3874         * pedump.c: Fix a warning.
3875
3876 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3877
3878         * verify.c (mono_delegate_type_equal): Compare valuetypes using
3879         mono_class_from_mono_type to avoid bad interactions with the dual representation
3880         of the generic type definition.
3881
3882 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3883
3884         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
3885         get the MonoClass for the call context type as it might be a generic
3886         instance.
3887
3888         Fixes #491483.
3889
3890 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3891
3892         * object-internals.h: The Thread object has no execution_context
3893         member anymore.
3894
3895         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3896         the execution context.
3897
3898         * appdomain.c: Bump corlib version.
3899
3900 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3901
3902         * verify.c (do_newobj): Improve error message.
3903
3904 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3905
3906         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3907         is nested in the filter block.
3908
3909         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3910         block is not fully nested.
3911
3912         Fixes #495656.
3913
3914 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3915
3916         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3917         not MonoType to check for equality of valuetypes as the generic type
3918         definition allows for two different encodings: the generic type definition
3919         class or a generic instance over the GTD arguments.
3920
3921         Fixes #496175.
3922
3923 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3924
3925         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3926
3927         * verify.c (do_initobj): Improve error message.
3928
3929 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3930
3931         * metadata-verify.c: Enable pe verification as the issue with #496453
3932         is that the authenticode data directory have a different unspecified
3933         format. Ignore it for now.
3934
3935         * pedump.c: Run the metadata verifier together with the IL verifier.
3936
3937         Fixes ##496453.
3938
3939 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3940
3941         * metadata-verify.c: Temporarily disable pe verification due to #496453.
3942
3943 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3944
3945         * class.c (can_access_type): Check visibility against
3946         the element type for pointers and arrays.
3947
3948         Fixes #496150.
3949
3950 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3951
3952         * metadata-verify.c: Fix cli and table verification to use information
3953         from the MonoImage. A lot of duplicated code got killed.
3954
3955 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3956
3957
3958         This patch starts to integrate the metadata verifier with the runtime code.
3959
3960         This patch causes major regression in functionality for the metadata verifier
3961         as cli and table verification are disabled since they require to be ported to
3962         use MonoImage information.
3963
3964         * image.c (do_mono_image_load): Split the code in this function
3965         into mono_image_load_pe_data and mono_image_load_cli_data.
3966         Add     care_about_pecoff parameter to not load pecoff data.
3967         Call into the metadata verifier for pecoff and cli verification.
3968
3969         * image.c (mono_image_open_raw): New function that doesn't perform
3970         any parsing of the image contents.
3971         
3972         The reason for the 3 new functions is to give pedump better control
3973         into the interaction with the verifier.
3974
3975         * metadata-internals.h: Add new functions from image.c as part of the
3976         internal mono API.
3977
3978         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
3979         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
3980         to make those functions work together with the runtime.
3981
3982         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
3983         true if the image needs to be verified.
3984
3985         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
3986
3987         * pedump.c: Use new metadata verifier API.
3988
3989 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3990
3991         * object.c (mono_install_vtable_trampoline): Make this receive a
3992         trampoline creation function instead of trampoline, allowing the JIT
3993         to use a different trampoline for each vtable.
3994
3995 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3996
3997         * object.c (mono_raise_exception): Don't reset the thread abort
3998         exception state here.
3999
4000 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4001
4002         * icall-def.h: New icall for getting the thread abort exception
4003         state for a thread.
4004
4005         * object.c, thread.c, object-internals.h: A thread's abort
4006         exception state is now a GC handle.  To get the object it stands
4007         for, we must move it into the current app domain, if it's
4008         different than the one where it originated from.
4009
4010         * appdomain.c: Bump corlib version.
4011
4012         * domain.c, domain-internals.h: New function for setting the
4013         domain and migrate the thread abort exception or not.
4014
4015 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4016
4017         * metadata-verify.c: Add initial verification of the
4018         field table.
4019
4020 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4021
4022         * metadata-verify.c: Add a macro to conditionally enable
4023         dumping of verification information. Add  make_coded_token
4024         and search_sorted_table to enable search sorted tables
4025         by a given coded token.
4026
4027 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4028
4029         * metadata-verify.c: Add array mapping from table index
4030         to description offset. Add get_col_offset and get_col_size
4031         functions.
4032
4033 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4034
4035         * metadata-verify.c: Add remaining table descriptions offsets.
4036         Add remaining coded index descriptions.
4037
4038 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4039
4040         * metadata-verify.c: Fixed constant table description.
4041         Fixed calculation of HasCustomAttribute coded index size.
4042         Fixed calculation of size for many table indexes. 
4043
4044 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4045
4046         * pedump.c (dump_metadata): Dump table offset instead
4047         of useless pointer in memory.
4048
4049 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4050
4051         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4052
4053 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4054
4055         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4056         a missing of for interface types.
4057
4058 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4059
4060         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4061         the code is commented.
4062
4063         * metadata-verify.c (verify_resources_table): Remove spurious printf
4064         and don't fail if there are unmanaged resources. Gmcs generates a useless
4065         one     for all assemblies - I bet it's some MS compatibility junk.
4066
4067 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4068
4069         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4070
4071         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4072
4073         * verify-internals.h: Same.
4074
4075         * pedump.c: Fix for mono_image_verify new signature.
4076
4077 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4078
4079         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4080         flags combinations.
4081
4082 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4083
4084         * metadata-verify.c (verify_module_table): Ignore the generation field.
4085
4086 2009-04-15  Martin Baulig  <martin@ximian.com>
4087
4088         * debug-mono-symfile.c
4089         (mono_debug_symfile_lookup_location): Don't print a warning for
4090         unknown extended opcodes if they're within 0x40 and 0x7f.
4091
4092 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4093
4094         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4095         invoke signatures returning an enum. Fixes #494847.
4096
4097 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4098
4099         * metadata-verify.c: Initial code to verify the typedef table.
4100
4101 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4102
4103         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4104         with non empty stack happens before the beginning of a try block.
4105
4106         Fixes #494812.
4107
4108 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4109
4110         * metadata-verify.c: Verify typename and typenamespace fields of
4111         the typeref table.
4112
4113 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4114
4115         * metadata-verify.c: Initial code to verify the typeref table.
4116
4117 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4118
4119         * verify.c (verify_delegate_compatibility): Fix error message.
4120
4121 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4122
4123         * security-core-clr.c: Fix typo
4124
4125 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4126
4127         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4128         a MonoGHashTable to keep its values alive.
4129         (emit_marshal_boolean): Fix a warning.
4130
4131 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4132
4133         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4134         not have any interface configured for IPv4/IPv6.
4135
4136 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4137
4138         * assembly.c: fix typo in error message.
4139
4140 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4141
4142         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4143         allocating the location holding the this argument to prevent
4144         'too many root sets' errors.
4145
4146         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4147         to mark fields as special static.
4148         (mono_field_static_get_value): Handle special static fields.
4149         (mono_field_static_set_value): Ditto.
4150
4151         * class-internals.h (struct _MonoClassField): Document this.
4152
4153 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4154
4155         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4156           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4157           case.  This will handle when managed code returns null to native code.
4158
4159         Code is contributed under MIT/X11 license.
4160
4161 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4162
4163         * object.c (build_imt_slots): Changing a free to a g_free to match
4164           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4165
4166         Code is contributed under MIT/X11 license.
4167
4168 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4169
4170         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4171           the correct TRUE value is passed through the marshaling layer.
4172
4173         Code is contributed under MIT/X11 license.
4174
4175 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4176
4177         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4178         correctly. Fixes #492330.
4179         
4180         * marshal.c: Fix the embedding of object pointers into JITted code in
4181         the native-to-managed wrappers by allocating some GC tracked memory, and
4182         embedding the address of that.
4183
4184 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4185
4186         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4187         pointers into the vtable.
4188
4189 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4190
4191         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4192
4193         * verify.c (verify_ldftn_delegate): Improve error message.
4194
4195 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4196
4197         * reflection.c (my_mono_class_from_mono_type): Remove.
4198
4199 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4200
4201         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4202         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4203         and constraints fields into ...
4204         (MonoGenericParamInfo): ... this.
4205         (mono_generic_param_info, mono_generic_container_get_param_info):
4206         New accessors.
4207         * class.c, debug-helpers.c, icall.c: Update to changes.
4208         * metadata.c, reflection.c, verify.c: Likewise.
4209
4210 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4211
4212         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4213
4214         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4215         
4216         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4217         booleans with sbytes.
4218
4219 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4220
4221         * class.c (can_access_instantiation): Verify accesibility of element types
4222         for arrays and pointers.
4223
4224         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4225
4226         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4227
4228         Fixes #493068.
4229
4230 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4231
4232         * verify.c (do_invoke_method): Improve error messages.
4233
4234 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4235
4236         * verify.c:  Fixing the MSVC build.
4237
4238         Code is contributed under MIT/X11 license.
4239
4240 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4241
4242         * security-core-clr.c: Simplify get_reflection_caller not to call
4243         mono_method_get_last_managed (another stack walk) and adjust the
4244         callers to handle a (should not happen) NULL return value.
4245
4246 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4247
4248         Add accessors to some MonoGenericParam fields
4249         * class-internals.h (mono_generic_param_owner): New accessor.
4250         (mono_generic_param_num): Likewise.
4251         (mono_type_get_generic_param_owner): New helper.
4252         (mono_type_get_generic_param_num): New helper.
4253         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4254
4255 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4256
4257         * class-internals.h (mono_generic_container_get_param): New wrapper.
4258         * class.c, icall.c, metadata.c, verify.c: Use it.
4259
4260 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4261
4262         Fix gtest-252.cs
4263         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4264         the standard case/loop.  In particular, don't complain about
4265         references to generic type definitions.
4266
4267 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4268
4269         * debug-helpers.c (dis_one): Decode string arguments.
4270
4271 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4272
4273         * pedump.c (dump_verify_info): Dump type name correctly.
4274
4275 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4276
4277         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4278         are larger than code size.
4279
4280         This can happen in valid code if the try/catch block is not followed by any instruction
4281         and do a backward branch on the leave instruction.
4282
4283         Fixes #492494.
4284
4285 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4286
4287         * security-core-clr.c: Fix typo while comparing second method names
4288         in can_avoid_corlib_reflection_delegate_optimization
4289
4290 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4291
4292         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4293
4294         Fixes #487738.
4295
4296 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4297
4298         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4299         a MVAR using a class context.
4300
4301         Fixes #490335.
4302
4303 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4304
4305         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4306
4307         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4308
4309         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4310         functions supplied by the JIT for the SGEN GC.
4311
4312         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4313         
4314 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4315
4316         monitor.c (mono_monitor_try_enter_internal):
4317         Added calls to profile monitor contentions.
4318         Also duplicated a small piece of code (the "get the monitor" logic)
4319         from the fast path to the slow path, and changed the relevant goto
4320         statements, so that monitor acquisition events can be emitted from the
4321         slow path (this is by Paolo Molaro).
4322
4323 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4324
4325         * profiler.c, profiler.h, profiler-private.h:
4326         Added support for profiling monitor contentions.
4327
4328 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4329
4330         * metadata-verify.c: Verify the modules table.
4331
4332 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4333
4334         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4335         using the context of the method been verifier and not of the method been called.
4336
4337         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4338         safely inflate generic types. 
4339
4340 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4341
4342         * security-core-clr.c: Change the strategy for checking the 
4343         "reflection using delegates optimization" to avoid unneeded 
4344         attributes in multiple class libraries.
4345
4346 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4347
4348         * sgen-gc.c: Remove object element in the disappearing link struct
4349         by storing the object pointer in the link.
4350
4351 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4352
4353         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4354
4355 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4356
4357         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4358
4359         * verify.c (mono_method_verify): Do proper bounds checking of exception
4360         clause ranges.
4361
4362 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4363
4364         * loader.c (mono_field_from_token): Don't crash if the field parent could
4365         not be decoded.
4366
4367 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4368
4369         * sgen-gc.c: Execute critical finalizers after ordinary
4370         finalizers.
4371
4372         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4373         mono_defaults.
4374
4375 2009-03-31 Jb Evain <jbevain@novell.com>
4376
4377         * verify.c (do_ldstr): don't check if a string is in the user strings
4378         heap if the current image is dynamic.
4379
4380 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4381
4382         * sgen-gc.c: Wait until the last finalizer has executed when
4383         returning from WaitForPendingFinalizers.
4384
4385 2009-03-31  Martin Baulig  <martin@ximian.com>
4386
4387         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4388         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4389         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4390         (mono_debugger_event_create_appdomain): New function.
4391         (mono_debugger_event_unload_appdomain): New function.
4392
4393         * appdomain.c (mono_domain_create_appdomain_internal): Call
4394         mono_debugger_event_create_appdomain().
4395
4396 2009-03-31  Martin Baulig  <martin@ximian.com>
4397
4398         * mono-debug-debugger.c
4399         (mono_debugger_register_class_init_callback): Also register the
4400         class init callback if the class is already initialized to make
4401         things work with shadow copied assemblies.
4402
4403 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4404
4405         * security-core-clr.c
4406         (mono_security_core_clr_ensure_reflection_access_field): Let 
4407         critical code access the field (just like we do for methods). Use
4408         check_field_access helper.
4409         (mono_security_core_clr_ensure_reflection_access_method): Use 
4410         check_field_access helper.
4411
4412 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4413
4414         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4415         call the run-finalize function directly.
4416
4417         * gc.c, gc-internal.h: Make run_finalize() non-static.
4418
4419 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4420
4421         * sgen-gc.c: Use a separate struct for disappearing links.
4422
4423 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4424
4425         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4426         * MaxIOVectorLength enabled, just ignore them.
4427         Fixes bug #349688.
4428
4429 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4430
4431         * metadata-verify.c: Fix eglib build.
4432
4433 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4434
4435         * threads-types.h: Fix the win32 build.
4436
4437 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4438
4439         * class.c: move coreclr inheritance/override checks to 
4440         security-core.clr.c
4441         * security-core.clr.c|h: add code from class.c with additional
4442         documentation. Fix override check when the method is not critical.
4443
4444 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4445
4446         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4447         (match_class): Ditto.
4448
4449 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4450
4451         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4452
4453         * metadata-verify.c: Implement table layout row size calculation. Verify
4454         the total size of the tables.
4455
4456 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4457
4458         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4459
4460 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4461
4462         * appdomain.c:
4463         * console-io.[ch]: added new mono_console_init() to make sure that
4464         file descriptors 0, 1 and 2 are opened.
4465         Bug #489019 fixed.
4466
4467 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4468
4469         * appdomain.h: Export a new callback type and a new function to
4470         set this callback. This allow a mono host to provide it's own
4471         definition for "platform code".
4472         * metadata-internals.h: Add a core_clr_platform_code flag on 
4473         _MonoImage to (cache and) know if it is representing platform 
4474         code.
4475         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
4476         on platform code images.
4477         * security-core-clr.c|h 
4478         (mono_security_set_core_clr_platform_callback): Allow the host
4479         to provide it's own platform check definition.
4480         (mono_security_core_clr_determine_platform_image): Detect if an 
4481         image is platform code (using the specified callback).
4482         (mono_security_core_clr_is_platform_image): Return cached value 
4483         for platform code.
4484
4485 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
4486
4487         * threads.c (mono_create_thread): New helper function to wrap CreateThread
4488         which has different parameter types for the 'tid' argument in windows and
4489         the io-layer.
4490
4491         * appdomain.c attach.c threads.c: Use the new helper.
4492
4493 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4494
4495         * metadata-verify.c: Verify valid table bits.
4496
4497 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4498
4499         * metadata-verify.c (verify_metadata_header): Store size in the size field.
4500
4501         * metadata-verify.c: Add initial table schema verification.
4502
4503 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4504
4505         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
4506         obtain the refclass argument needed by mono_param_get_objects (). Fixes
4507         #488383.
4508
4509         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4510
4511         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4512
4513 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4514
4515         * security-core-clr.c: Add/update documentation
4516
4517 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4518
4519         * marshal.c (emit_marshal_object): Generate code to throw an exception
4520         instead of throwing it. Fixes #488670.
4521
4522 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
4523
4524         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
4525         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
4526         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
4527         and add a call to mono_security_core_clr_ensure_delegate_creation
4528         to do the extra checks required by CoreCLR.
4529         * security-core-clr.c|h: Add function to check delegate creation,
4530         both in the binding and accessibility, under CoreCLR.
4531
4532 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
4533
4534         * reflection.c (mono_reflection_create_dynamic_method): when 
4535         coreclr is enabled make sure that every resolved object are
4536         checked (e.g. field and method access).
4537         * security-core-clr.c|h: Add function to check objects resolved
4538         when a dynamic method is created.
4539
4540 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4541
4542         * metadata-verify.c: Cache directory rva translations.
4543
4544         * metadata-verify.c: Add cli-header and streams verification.
4545
4546 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4547
4548         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
4549         the wrong offset (8 instead of 6).
4550
4551 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
4552
4553         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
4554         methods, return the native function address itself. Fixes
4555         #487758.
4556
4557 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4558
4559         * console-io.c: some of the values for control characters might not be
4560         present.
4561
4562 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
4563
4564         * exception.c|h: Add helpers to create [Field|Method]AccessException
4565         * icall.c: Add required coreclr check calls for field reflection.
4566         Move the existing (method) check logic into security-core-clr.c
4567         * security-core-clr.c: Add functions to check if the access of a
4568         field or method is allowed when reflecting under coreclr. This is
4569         mostly done using a stack walk to find the "real" caller: i.e. the
4570         code that is calling the reflection
4571
4572 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
4573
4574         * gc-internal.h: Change location of gc_wrapper.h
4575
4576 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
4577
4578         * class.c: Simplification to coreclr checks for overrides that
4579         makes it easier to set breakpoints.
4580
4581 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
4582
4583         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
4584         mono_security_core_clr_method_level): Avoid potential 
4585         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
4586         user/application code) and make it easier to set breakpoints
4587
4588 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4589
4590         * metadata-verify.c: Reject cli header tables that mono don't handle.
4591
4592 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4593
4594         * pedump.c: Fix CLI header dumping.
4595
4596 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4597
4598         * metadata-verify.c: More CLI header verification.
4599
4600 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
4601
4602         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
4603
4604 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4605
4606         * metadata-verify.c: Initial verification of the CLI header.
4607
4608 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4609
4610         * metadata-verify.c (verify_resources_table): Fix verification of zero
4611         sized resource section and id entries count.
4612
4613 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
4614
4615         * icall.c: Handle user types in many Type icalls. Fixes #486303.
4616
4617 2009-03-17  Jb Evain  <jbevain@novell.com>
4618
4619         * profiler.c: call mono_gc_base_init from mono_profiler_load.
4620
4621 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
4622
4623         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
4624         (mono_gc_make_descr_for_array): Ditto.
4625
4626 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4627
4628         * verify.c (mono_verifier_is_class_full_trust): Add support for
4629         CoreCLR security mode where trusted assemblies are defined as
4630         "platform code".
4631
4632 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4633
4634         * metadata-verify.c: Add minimal PECOFF resource verification.
4635
4636 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4637
4638         * metadata-verify.c: Be less restrictive with some coff fields.
4639
4640 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4641
4642         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
4643         params as boxed values on stack. Fixes #485706.
4644
4645 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4646
4647         * console-io.c: the termios values may vary in different flavors of unix.
4648
4649 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4650
4651         * console-io.[ch]: return the entire set of control characters when
4652         initializing the terminal.
4653         * appdomain.c: bump corlib version.
4654
4655 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
4656
4657         * mono-perfcounters.c: added support for in-process custom
4658         performance counters.
4659
4660 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4661
4662         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
4663
4664 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4665
4666         * metadata-verify.c: Verify the data pointed by the import table. 
4667
4668 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4669
4670         * metadata-verify.c (load_data_directories): Store data
4671         directory contents.
4672
4673         * metadata-verify.c: Verify the import table. 
4674
4675 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4676
4677         * metadata-verify.c: Verify data directories.
4678
4679 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4680
4681         * metadata-verify.c: Check section header flags.
4682
4683 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4684
4685         * appdomain.c: if the assembly name is a shadow-copied file, return
4686         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
4687         in mono_make_shadow_copy.
4688         * icall.c: if the assembly name is a shadow-copied file, replace it
4689         with the original assembly path.
4690
4691         Bug #484244 fixed. NUnit tests for corlib can be run without
4692         --noshadow now.
4693
4694 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4695
4696         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
4697         entries when the table is reallocated.
4698
4699         * icall.c: Allocate the memory used by the mono_ptr_array macros using
4700         mono_gc_alloc_fixed () since it contains GC refs.
4701
4702 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4703
4704         * reflection.c (ensure_complete_type): New helper function to call
4705         type resolve handlers for unfinished dynamic types.
4706         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4707
4708 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4709
4710         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4711         #483247.
4712
4713 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4714
4715         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4716
4717 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4718
4719         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4720         between GCHandles of type WeakTrackResurrection and the objects they
4721         point to.
4722
4723         * gc.c: Partly implement the sematics of GCHandles of type 
4724         WeakTrackResurrection: these handles should only be cleared after the
4725         finalizer of the object they are pointing to has ran.
4726
4727 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4728
4729         * icall.c: Partially revert r126631 because using the jump
4730         trampolines for generic shared methods makes it superfluous.
4731
4732 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4733
4734         * threads.c (handle_store): Create the 'threads' hash table with the proper
4735         MONO_HASH_VALUE_GC type.
4736
4737 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4738
4739         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4740         FIRST_GC_TRACKED.
4741
4742         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4743         and LAST_GC_TRACKED as a GC root.
4744
4745         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4746
4747         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4748         the static data even if it consists of 1 reference.
4749
4750         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4751         if there is a GC descriptor.
4752
4753         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4754         instead of through the GC since they contain no object references.
4755
4756 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4757
4758         * generic-sharing.c (instantiate_other_info): Always return a jump
4759         trampoline for method code.
4760
4761 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4762
4763         * culture-info-tables.h: generated to include the en-tt culture.
4764
4765 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4766
4767         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4768         capture the thread context.
4769
4770         * object.c (mono_async_result_new): Cache the invoke wrappers to
4771         ExecutionContext::Capture.
4772
4773 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4774
4775         * marshal.h: Add a prototype for what mono_compile_method returns
4776         for invoke wrappers.
4777
4778         * gc.c: Use the new prototype declaration.
4779
4780 2009-03-04  Geoff Norton  <gnorton@novell.com>
4781
4782         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4783         * gc-internal.h:
4784         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4785
4786 2009-03-04  Martin Baulig  <martin@ximian.com>
4787
4788         * mono-debug.h
4789         (mono_debugger_runtime_invoke): Removed.
4790
4791         * mono-debug-debugger.c
4792         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4793
4794 2009-03-02  Martin Baulig  <martin@ximian.com>
4795
4796         * mono-debug.h
4797         (mono_debugger_unhandled_exception): Removed.
4798         (mono_debugger_handle_exception): Removed.
4799         (mono_debugger_throw_exception): Removed.
4800
4801         * mono-debug.c
4802         (mono_debug_debugger_version): Bump to 5.
4803
4804         * mono-debug-debugger.c: Moved the exception handling code to
4805         ../mini/debug-mini.c
4806
4807 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4808
4809         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4810         finalize_objects_hash.
4811
4812         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4813         
4814         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4815         field.
4816
4817         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4818         cache.
4819
4820         * image.c (mono_image_close): Free it.
4821         
4822         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4823         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4824         on the this argument.
4825
4826         * gc.c (run_finalize): Optimize the calling of the finalizers.
4827
4828 2009-03-03  Martin Baulig  <martin@ximian.com>
4829
4830         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4831         of the `MonoGenericInst' changes.
4832
4833 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4834
4835         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4836         mono_array_class_get_cached to reduce locking contention. Extract
4837         a domain var.
4838
4839         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4840         intermediary managed arrays. Use caching version of mono_array_new
4841         to allocate the result array.
4842
4843         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4844
4845         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4846
4847         * locales.c (create_names_array_idx):  Use mono_array_new_cached
4848         to reduce locking contention.
4849
4850 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4851                 
4852         * object.c (mono_method_add_generic_virtual_invocation): Put back the
4853         thunk builder code for the non-interface case.
4854
4855 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4856
4857         * object.c (get_generic_virtual_entries): New helper function to collect
4858         the virtual generic method instances which need to be added to an IMT
4859         thunk.
4860         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
4861         Instead of creating a new IMT thunk, reset the vtable slot to the
4862         trampoline, the thunk will be created the next time the trampoline is called.
4863         (build_imt_slots): Add support for virtual generic methods in interfaces by
4864         adding to the IMT thunk all the methods registered using 
4865         mono_method_add_generic_virtual_invocation ().
4866
4867         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
4868         (struct _MonoIMTCheckItem): Ditto.
4869
4870         * object.c (mono_method_add_generic_virtual_invocation): Take a
4871         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
4872         the IMT thunk to include all items.
4873         
4874         * object.c (mono_class_create_runtime_vtable): Add a missing
4875         mono_loader_unlock ().
4876
4877 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4878
4879         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4880
4881         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
4882
4883 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4884
4885         * object-internals.h: Rename _MonoReflectionEvent to
4886         MonoReflectionMonoEvent so it reflects the right managed type.
4887         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4888
4889         * icall.c:
4890         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4891         type.
4892
4893 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4894
4895         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4896         intermediary managed arrays. Use caching version of mono_array_new
4897         to allocate the result array.
4898
4899 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4900
4901         * reflection.c: Use cached version of mono_array_new alongside
4902         the mono_reflection_get_custom_attrs_by_type call path.
4903
4904 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4905
4906         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4907         intermediary managed arrays. Use caching version of mono_array_new
4908         to allocate the result array.
4909
4910         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4911
4912 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4913
4914         * icall.c: Add small implementation of a growable stack bound array.
4915
4916         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4917
4918         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4919         intermediary managed arrays. Use caching version of mono_array_new
4920         to allocate the result array.
4921
4922 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4923
4924         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4925         helps Enum::CompareTo to be implemented without reboxing all enums
4926         to their underlying type.
4927 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4928
4929         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
4930         since it acquires a global lock leading to scalability problems.
4931
4932         * profiler.c: Make the stat profiler work with multiple appdomains, this
4933         currently only works when no appdomains are unloaded.
4934
4935 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4936
4937         * appdomain.c: make the check to avoid copying when the assembly is
4938         already shadow copied actually work.
4939
4940 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4941
4942         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4943
4944         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
4945         changes to the managed side.
4946
4947 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4948
4949         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
4950         classes + a separate lock for it, as it is used frequently at runtime, not
4951         just during metadata loading/JIT compilation.
4952
4953         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
4954         for szarrays.
4955         
4956         * object-internals.h (mono_class_from_name_cached): New macro to cache
4957         the results of the lookup locally without having to declare a static
4958         variable to hold it.
4959         (mono_class_get_field_from_name_cached): Ditto.
4960         (mono_array_class_get_cached): Ditto.
4961
4962         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
4963         the new macros.
4964         
4965         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
4966         slower search in metadata.
4967
4968         * pedump.c: Fix a warning.
4969
4970 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4971
4972         * reflection.c (encode_locals): Add checks for user types.
4973         (method_encode_clauses): Ditto.
4974         (method_encode_code): Ditto.
4975         (mono_image_create_token): Ditto.
4976
4977         * object-internals.h: Change the type of more fields from MonoReflectionType*
4978         to MonoObject*.
4979
4980 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4981
4982         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
4983         the a thread does not suspend within 100ms.
4984
4985         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
4986         in addition to StopRequested as well.
4987
4988         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
4989
4990         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
4991         search the method_hash before inserting a new entry, to avoid crashes when
4992         the same method is inserted multiple times, causing the old 
4993         MonoDebugMethodInfo structure to be freed by the value dtor function.
4994
4995 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4996
4997         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
4998         SO_EXLUSIVEADDRUSE where available.
4999
5000 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5001
5002         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
5003         runtime invoke wrappers, this time it is string ctor wrappers, which
5004         pass a dummy string as 'this' instead of their obj argument. Fixes
5005         #478473.
5006
5007 2009-02-21  Jb Evain  <jbevain@novell.com>
5008
5009         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5010         only get create_culture once.
5011
5012 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5013
5014         * reflection.c (mono_reflection_setup_internal_class): Move the user type
5015         check before the locking.
5016         
5017         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
5018         (mono_reflection_create_runtime_class): Ditto.
5019         (mono_reflection_sighelper_get_signature_local): Ditto.
5020         (mono_reflection_sighelper_get_signature_field): Ditto.
5021
5022         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
5023         is a System.MonoType object or similar.
5024         (monotype_cast): New helper function to cast a MonoObject to a 
5025         MonoReflectionType object.
5026
5027         * object-internals.h: Change MonoReflectionType* members in structures to
5028         MonoObject* members to force the usage of the monotype_cast () function.
5029
5030         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
5031         structures/arrays. This causes us to assert instead of crashing when 
5032         instances of user defined subclasses of System.Type are encountered.
5033
5034 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5035
5036         * cil-coff.h:
5037         * icall-def.h:
5038         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
5039         win32 resource loaded from a PE file.
5040
5041         * image.c: fix mono_image_lookup_resource.
5042
5043 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5044
5045         * icall-def.h:
5046         * threads-types.h:
5047         * threads.c: added internal call for WaitHandle.SignalAndWait.
5048
5049 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5050
5051         * cominterop.c : Adding cominterop_type_from_handle and 
5052           registering it as an icall.  Replacing all references
5053           to type_from_handle.
5054
5055         Code is contributed under MIT/X11 license.
5056
5057 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5058
5059         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5060
5061         * appdomain.c: Call the tracer init function.
5062
5063         * domain-internals.h: Enable the tracer for the domain locks.
5064
5065         * image.c: Enable the tracer for image locks.
5066
5067         * loader.c: Enable the trace for the loader lock.
5068
5069         * lock-tracer.h:
5070         * lock-tracer.c: Initial implementation of the lock trace utility.
5071         The tracer requires a compile time define to be enabled and a env var
5072         to be enabled at runtime.
5073
5074 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5075
5076         * domain.c (mono_domain_code_foreach): Improve documentation.
5077
5078 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5079
5080         * appdomain.c:
5081         * generic-sharing.c:
5082         * object.c:
5083         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5084         comes first.
5085
5086 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5087
5088         * domain.c: Add mono_domain_code_* functions that perform locking
5089         around the domain codeman.
5090
5091         * domain-internals.h: Export those functions.
5092
5093         * object.c: Use new functions instead of acquiring the domain lock.
5094
5095 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5096
5097         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5098         delegate. Fixes #477396.
5099
5100 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5101
5102         * reflection.c (create_custom_attr): Get rid of alloca.
5103
5104 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5105
5106         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5107           Adding exception handling for all CCW calls.
5108
5109         Code is contributed under MIT/X11 license.
5110
5111 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5112
5113         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5114
5115         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5116         native->managed marshalling code. Fixes #476247.
5117
5118 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5119
5120         * class.c (mono_class_get_vtable_entry): Move the addition of
5121         static rgctx invoke wrappers for vtable methods here, this simplifies
5122         a lot of code and causes fewer rgctx wrappers to be created.
5123
5124         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5125         name of the statistics to begin with an uppercase.
5126
5127 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5128
5129         * reflection.c: Revert previous change as it breaks the build.
5130         
5131 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5132
5133         * verify.c: Properly handle SZARRAY element type.
5134
5135         Fixes #474271.
5136
5137 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5138
5139         * reflection.c (mono_image_create_method_token): Correctly encode
5140         MethodDef MemberRefParent token.
5141
5142         Fixes #472845.
5143
5144 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5145
5146         * image.c (mono_image_close): Delete the critical section before
5147         freeing the memory holding it.
5148
5149 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5150
5151         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5152         Fixes #476257.
5153
5154 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5155
5156         * pedump.c (main): Call mono_marshal_init so pedump
5157         doesn't crash.
5158
5159 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5160
5161         * loader.c (method_from_memberref): Properly fix #474271 and
5162         don't break the runtime bad.
5163
5164 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5165
5166         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5167         (mono_domain_alloc0): Ditto.
5168
5169 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5170
5171         * loader.c (method_from_memberref): Don't abort if the array
5172         method is not found. A regular loader failure is more informative
5173         and correct.
5174
5175         Fixes #474271.
5176
5177 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5178
5179         *loader.c: Guard MonoImage::method_cache/methodref_cache
5180         using the image lock instead of the loader lock.
5181
5182         * metadata.h: Add comments about which fields are protected by
5183         the image lock.
5184
5185 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5186
5187         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5188
5189         * generic-sharing.c (mono_method_construct_object_context): Remove the
5190         wrapper_type == NONE assert, it is not needed.
5191
5192 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5193
5194         * reflection.c (clear_cached_object): New helper function.
5195         (mono_method_clear_object): New function to clear the cached reflection
5196         objects for a dynamic method.
5197
5198         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5199         Partly fixes # 463323.
5200         
5201 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5202
5203         * class.c:
5204         * loader.c:
5205         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5206
5207 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5208
5209         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5210         take the image lock instead of the loader lock.
5211
5212         * metadata-internals.h: Export new functions.
5213
5214 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5215
5216         * domain.c (app_config_parse): Remove another use of stat that is
5217         not necessary as g_file_get_contents already does the presence
5218         check. 
5219
5220 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5221
5222         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5223
5224         * marshal.c: Move the bstr handling code to cominterop.c.
5225
5226         * marshal.c: Remove some COM interop code missed previously.
5227
5228 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5229
5230         More Paolo patches from the Wii port:
5231         
5232         * security.c: Remove ves_icall_System_Environment_get_UserName
5233         from here.
5234
5235         * icall.c: And put ves_icall_System_Environment_get_UserName
5236         here. 
5237
5238         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5239         redundant call to stat that was only used to test for the file
5240         existence.   Patch from Paolo.
5241
5242         * gc.c (run_finalize): If COM is disabled, do not link in
5243         mono_marshal_free_ccw.
5244
5245         * generic-sharing.c: Use alloca.h here as well.
5246
5247 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5248
5249         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5250
5251 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5252
5253         * cominterop.c cominterop.h: New files.
5254
5255         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5256         function/typedefs which are needed by cominterop.c global.
5257
5258 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5259
5260         * generic-sharing.c: Don't take the loader lock to guard image
5261         mempool allocs.
5262
5263 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5264
5265         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5266         called without the loader lock which is required to guard MonoImage:tokens.
5267
5268 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5269
5270         * class.c:
5271         * metadata.c:
5272         * method-builder.c:
5273         * marshal.c:
5274         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5275
5276 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5277
5278         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5279         Rework the code to use regular mono_image_alloc/0.
5280
5281         * loader.c: Rework the code to use regular mono_image_alloc/0.
5282
5283         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5284
5285 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5286
5287         * object-internals.h : Fixing a typo in the 
5288           MonoReflectionComVisibleAttribute struct.
5289
5290         * marshal.c (cominterop_com_visible): Check the implemented 
5291           interfaces for ComImport.
5292
5293         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5294           assume that bools should be treated as VARIANTBOOLs.
5295
5296         * marshal.c (emit_marshal_boolean): Adding cases for 
5297           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5298
5299         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5300           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5301
5302         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5303           should be treated as VARIANTBOOLs.    
5304
5305         Code is contributed under MIT/X11 license.
5306
5307 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5308
5309         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5310         allocation with the image lock.
5311
5312 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5313
5314         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5315         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5316
5317         * object.c: Add mono_string_to_utf8_image.
5318
5319         * object-internals.h: Export mono_string_to_utf8_image.
5320
5321         * reflection.c: Rework all explicit references to the the image mempool to go thought
5322         the mono_image_alloc set of functions.
5323
5324 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5325
5326         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5327         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5328         and generics-sharing.c.
5329
5330         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5331         as first argument. Note that this function remains broken as it doesn't perform locking around the
5332         mempool allocation.
5333
5334         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5335
5336         * image.c: Add g_slist_append_image.
5337
5338         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5339         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5340
5341         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5342         Fix all related code to do the same.
5343
5344         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5345
5346         * metadata-internals.h: Fix the signatures.
5347
5348 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5349
5350         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5351         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5352         and similar to work using MonoImage.
5353
5354         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5355         MonoMemPool.
5356
5357         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5358
5359         * class.c (mono_metadata_signature_deep_dup): Same.
5360
5361         * class.c (inflate_generic_type): Same.
5362
5363         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5364
5365         * metadata.c (mono_metadata_signature_dup_full): Same.
5366
5367         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5368         mono_metadata_signature_dup_full.
5369
5370         * metadata.c (mono_metadata_type_dup): Same.
5371
5372         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5373
5374         * reflection.c: Same.
5375
5376         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5377
5378         * metadata-internals.h: Fix the signatures.
5379
5380         * class-internals.h: Same.
5381
5382 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5383
5384         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5385         and use mono_image_alloc set of functions instead. 
5386
5387         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5388         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5389         of a MonoMemPool.
5390
5391         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5392
5393         * class.c (g_list_prepend_mempool): Removed.
5394
5395         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5396
5397         * image.c: Add g_list_prepend_image.
5398
5399         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5400
5401         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5402
5403
5404 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5405
5406         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5407         mono_image_unlock.
5408
5409         * image.c (mono_image_init): Init the lock field.
5410  
5411         * image.c (mono_image_init): Cleanup the lock field.
5412
5413         * image.c: Add mono_image_(un)lock functions.
5414
5415 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5416
5417         * class.c, class-internals.h: mono_method_get_context_general()
5418         combines the functionality of mono_method_get_context() and
5419         mini_method_get_context().
5420
5421         * generic-sharing.c, domain-internals.h:
5422         mono_method_construct_object_context() and
5423         mono_domain_lookup_shared_generic() moved from mini.
5424
5425         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5426         method doesn't have the correct instantiation because it's shared
5427         generic code.  Fixes #473999.
5428
5429 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5430
5431         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5432
5433         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5434         
5435 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5436
5437         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5438
5439         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5440
5441         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5442         and recheck the cache for dups after it.
5443
5444         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5445
5446         Fixes one of the deadlocks found in #473150.
5447
5448 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5449
5450         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5451           For Win32, add additional break conditions for accept.
5452
5453         Code is contributed under MIT/X11 license.
5454
5455 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5456
5457         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5458         lazily initialize the native wrapper cache.
5459         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5460         cache, since they are different from the normal wrappers.
5461
5462         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5463
5464         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5465         AOT compiled native wrappers.
5466
5467 2009-02-09  Geoff Norton  <gnorton@novell.com>
5468
5469         * appdomain.h:
5470         * security-core-clr.c: Allow enabling core-clr from the embedding
5471         API.
5472
5473 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5474
5475         * socket-io.c: when requesting all the local ips, if there are no
5476         interfaces up and running, MS returns 127.0.0.1.
5477
5478 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5479
5480         * mono-perfcounters-def.h: processor time is an inverse time.
5481         Fixes bug #468625.
5482
5483 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5484
5485         * socket-io.c: an empty host name returns the list of local IPs.
5486         Fixes bug #386637 part 1/2.
5487
5488 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5489
5490         * verify.c (mono_class_interface_implements_interface): Call
5491         mono_class_setup_interfaces ().
5492         (merge_stacks): Ditto.
5493
5494 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5495
5496         * class.c (mono_class_setup_interfaces): New function to lazily initalize
5497         klass->interfaces.
5498         (mono_generic_class_get_class): Don't initalize klass->interfaces.
5499         (mono_generic_class_get_class): Ditto.
5500
5501 2009-02-06  U-QUACK\miguel  <miguel@quack>
5502
5503         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
5504         they live in security.c
5505
5506         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
5507         another bit from Paolo's code.
5508
5509 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5510
5511         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5512         methods which will be discarded by add_imt_builder_entry ().
5513
5514         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5515         need to be boxed.
5516
5517         * loader.c: Add a statistics for the size of the memberref signature cache.
5518         
5519         * loader.c (find_cached_memberref_sig): New helper function.
5520         (cache_memberref_sig): Ditto.
5521
5522         * loader.c: Cache the result of parsing memberref signatures, since otherwise
5523         they will be parsed again for every generic instantiation, leading to unbounded
5524         memory growth.
5525
5526 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5527
5528         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
5529         parameters of generic methods.
5530
5531         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
5532         after the original method is copied to the inflated method.
5533         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
5534
5535         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
5536         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
5537
5538         * class.c metadata.c: Update after the changes above.
5539
5540 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5541
5542         * metadata-verify.c: Simplified error handling and added
5543         section table validation.
5544
5545 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5546
5547         * class-internals.h (MonoClassExt): New structure containing rarely used
5548         fields of MonoClass.
5549         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
5550         through a new 'ext' field.
5551
5552         * class.c (mono_class_alloc_ext): New helper function to allocate 
5553         class->ext.
5554
5555         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
5556
5557 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5558
5559         * object.c (mono_object_get_virtual_method): Properly inflate
5560         generic methods.  Fixes #472692.
5561
5562 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5563
5564         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
5565         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
5566         for the parent type, the created type must be ready to be used on a generic
5567         instantiation.
5568         We fill this_arg/byval_arg if the parent is a generic instance to make sure
5569         we won't have duplicated entries in generic_inst_cache.
5570
5571         Fixes #469553.
5572
5573 2009-02-05  Miguel De Icaza  <miguel@novell.com>
5574
5575         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
5576         replace with plain BSD per the comments on the bug MONO77637.
5577
5578 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5579
5580         * class.c (mono_class_get_generic_class): New accessor function.
5581         (mono_class_get_generic_container): Ditto.
5582
5583         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
5584         fields, similar to the ones in MonoMethod.
5585
5586         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
5587         (mono_class_create_from_typedef): Set klass->is_generic if needed.
5588
5589         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
5590         
5591         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
5592         the same information as element_class->byval_arg.
5593
5594         * class.c reflection.c: Remove references to class->byval_arg.
5595
5596         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
5597         klass->enum_basetype directly.
5598
5599         * verify.c metadata.c object.c icall.c reflection.c: Use 
5600         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
5601         directly.
5602
5603 2009-02-04  Miguel de Icaza  <miguel@novell.com>
5604
5605         * icall-def.h: Remove internal calls for sockets when
5606         DISABLE_SOCKET is defined, file system writing features when the
5607         OS only support reading and not writing data and Policy support if
5608         the Policy is disabled.
5609         
5610         * image.c (do_mono_image_open): Apply Paolo's patches for using
5611         mono_file_map_ APIs here.
5612
5613         * assembly.c: Add support for platforms to avoid prefix
5614         auto-detection. 
5615
5616 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
5617
5618         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
5619         warning.
5620
5621         * class.c (mono_class_inflate_generic_class): New helper function.
5622
5623         * class.c: Use mono_class_inflate_generic_class in a few places. Add
5624         statistics for inflated methods/classes.
5625
5626         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
5627
5628         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
5629         the call is made from Delegate.CreateDelegate () for the invoke method of
5630         a delegate.
5631
5632         * loader.c: Add a statistics for the memory occupied by inflated signatures.
5633
5634         * metadata.c (mono_metadata_signature_size): New helper function.
5635
5636         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
5637         generic instances.
5638
5639         * metadata.c (inflated_method_in_image): Avoid calling 
5640         mono_method_signature () if the method does not already have a signature.
5641
5642 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5643
5644         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
5645         valuetype is compatible with target type, check by inheritance as a
5646         VT is not really compatible with System.ValueType, for example.
5647
5648         * verify.c (do_invoke_method): Improve error message.
5649
5650         * verify.c (do_box_value): If boxing a nullable, use the type argument
5651         on stack instead.
5652
5653         * verify.c (do_newobj): Improve error message.  
5654
5655         Fixes #469549.
5656
5657 2009-02-03  Miguel de Icaza  <miguel@novell.com>
5658
5659         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
5660
5661 2009-02-03  Mark Probst  <mark.probst@gmail.com>
5662
5663         * generic-sharing.c: Don't hold domain lock when calling
5664         instantiate_other_info().  Fixes #471958.
5665
5666         * domain-internals.h, loader.c: Describe locking policy of domain
5667         lock vs loader lock.
5668
5669 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5670
5671         * verify.c (mono_delegate_signature_equal): Make it possible to check
5672         first-arg-bound delegates to static method.
5673
5674         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
5675         static methods with the first arg bound.
5676
5677         Fixes #469529.
5678
5679 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5680
5681         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
5682         errors.
5683
5684         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
5685         under strict mode. Any type, when boxed can be seen as a reference type.
5686
5687         Fixes #469528.
5688
5689 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5690
5691         * object.h: The lower bound of an array is a signed integer value.
5692         Introduce mono_array_lower_bound_t typedef. It should be used instead of
5693         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
5694
5695         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
5696         calculate the upper bound.
5697         
5698         Fixes #471252.
5699
5700 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5701
5702         From Paolo's work, refactored, cleared up:
5703         
5704         * threadpool.c, icall.c: ifdef code that requires a working socket
5705         stack.
5706
5707         * metadata.c (mono_metadata_field_info): Do not attempt to return
5708         a value from a function declared as void.
5709
5710         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5711         from the console stack.
5712
5713         * assembly.c: use strrchr instead of rindex.
5714
5715         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5716         alloca.h on systems that have it.
5717
5718         * environment.c: Avoid code that uses stuff from
5719         HAVE_SYS_UTSNAME_H
5720         
5721         * appdomain.c: Include sys/time.h.
5722
5723         * console-io.c: include sys/ioctl.h if it is available.
5724
5725 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5726
5727         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5728
5729         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5730         the method builder.
5731
5732         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5733         after it was created and cached, as the later is not thread safe.
5734         
5735 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5736
5737         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5738         called while the debugging module is not initialized. Fixes #471669.
5739
5740 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5741
5742         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5743
5744         Fixes #471255.
5745
5746 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5747
5748         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5749         loader lock is not taken while the templates lock is held.  Fixes
5750         #471089.
5751
5752 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5753
5754         * metadata.c (type_in_image): Added a check to fix a monodis
5755         crash.
5756
5757 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5758
5759         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5760         nullable arguments.
5761
5762         * object.c (mono_runtime_invoke_array): Ditto.
5763         
5764         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5765         freeing wrappers of dynamic methods.
5766
5767         * loader.c (mono_free_method): Call it. Fixes #463323.
5768         
5769         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5770         methods taking vtype/byref arguments, to fix yet another bug caused by
5771         the sharing of runtime invoke wrappers. Partly fixes #471259.
5772
5773 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5774
5775         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5776         <first file in file table>:1 when the IL offset does not have an associated
5777         line number.
5778
5779 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5780
5781         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5782         variable info for a method.
5783
5784         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5785         
5786 2009-01-30  Jb Evain  <jbevain@novell.com>
5787
5788         * pedump.c: reuse code from monodis to make sure pedump honors
5789         MONO_PATH, which is needed to verify net_2_1 assemblies.
5790
5791 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5792
5793         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5794         there is no line number info.
5795
5796 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5797
5798         Avoid some MonoType allocations
5799         * reflection.c (mono_reflection_initialize_generic_parameter):
5800         Reuse MonoType from param->pklass rather than allocating one.
5801         (mono_dynamic_image_free): Update to changes.
5802
5803 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5804
5805         Rearrange some code to improve consistency
5806         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5807         (mono_reflection_initialize_generic_parameter): ... here.
5808
5809 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5810
5811         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5812         with type constraints as an experiment.
5813
5814         * boehm-gc.c (on_gc_notification): Update mono_stats.
5815
5816 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5817
5818         Avoid some allocations
5819         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5820         pointer to tail array to avoid extra allocation.
5821         * metadata.c (free_generic_inst): Update to changes.
5822         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5823         on-stack struct.
5824
5825 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5826
5827         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5828         return TRUE if the two type objects are the same.
5829
5830 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5831
5832         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5833         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5834         klass->min_align, since klass->min_align contains the managed alignment,
5835         while the native alignment can be different, like for longs on x86.
5836         Fixes #469135.
5837
5838         * class-internals.h (MonoMarshalType): Add a min_align field.
5839
5840 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5841
5842         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5843         the 1.0 format.
5844
5845 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5846
5847         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
5848         some comments about the usage of the used_regs field.
5849
5850         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
5851         Fixes #469217.
5852
5853 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
5854
5855         * appdomain.c: return NULL instead of throwing FileNotFoundException
5856         when LoadAssembly() fails.
5857
5858 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5859
5860         * metadata.c (mono_metadata_generic_param_equal): Only compare the
5861         image if the owner is NULL.  Fixes the AOT failures.
5862
5863 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5864
5865         * metadata.c (mono_metadata_load_generic_params): Initialize the 
5866         MonoGenericParam structure using memset so the image field is initialized
5867         as well.
5868
5869 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5870
5871         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
5872         a plain store.
5873
5874 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5875
5876         * class.c (mono_class_setup_vtable_general): In the generic instance
5877         optimization, set method->slot for abstract virtual methods. Fixes part of
5878         #467834.
5879
5880 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5881
5882         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
5883         which signals that the unloading has started but all appdomain services must
5884         remain operational.
5885
5886         * appdomain.c (mono_domain_unload): The initial state for unloading now
5887         is unloading_start and we switch to unloading after the managed call to
5888         AppDomain::DomainUnload has finished.
5889
5890         The new unloading state has to be created because managed code in the
5891         DomainUnload event can depend on things like the threadpool still working.
5892         The domain must remain fully functional while the event executes.
5893
5894         This shown as an issue due to Process::WaitForExit, which waits for
5895         async reads of stdout and stderr to complete. Since those are processed
5896         in the threadpool the code deadlocks because the DomainUnload callback 
5897         waits for the async read finished event, which should have been set by a
5898         threadpool job but has been discarded due to the domain been in unload
5899         state.
5900
5901 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5902
5903         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5904         image must match.
5905
5906 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5907
5908         * reflection.c (resolve_object): For fields, inflate the class and
5909         then get the field in the inflated class.
5910
5911 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5912
5913         * object-internals.h (struct _MonoException): Added a comment
5914         explaining the new use of trace_ips.
5915
5916 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5917
5918         * generic-sharing.c (inflate_other_data): Inflate array methods
5919         correctly.
5920
5921         * loader.c, class-internals.h: Rename search_in_array_class() to
5922         mono_method_search_in_array_class() and make it non-static.
5923
5924 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5925
5926         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5927         Hopefully fixes #458168.
5928
5929 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5930
5931         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
5932         as it is performed elsewhere.
5933
5934         Code is contributed under MIT/X11 license
5935
5936 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5937
5938         * mono-perfcounters-def.h: Add counters for asp.net requests total and
5939         requests queued.
5940         * object.c (mono_raise_exception): Increment the exceptions total
5941         counter when an exception is thrown.
5942         * class-internals.h: Add a location for storing the total number of
5943         asp.net requests served.
5944         * mono-perfcounters.c: Implement update support for asp.net counters
5945         from the class libraries. Implement read support for asp.net counters
5946         and exceptions total counter.
5947
5948 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5949
5950         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
5951         accessing klass->methods. Fixes #467385.
5952
5953 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5954
5955         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
5956         for byval arguments without an [Out] attribute. Fixes #467212.
5957
5958         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
5959         Fix compilation under android.
5960         
5961         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
5962         processed, scan them directly after they are copied, to achieve better locality
5963         and cache usage.
5964
5965         * socket-io.c: Applied patch from Koushik Dutta
5966         (koush@koushikdutta.com). Disable IPV6 when running under android.
5967
5968 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5969
5970         * icall.c (ves_icall_InternalExecute): Add write barriers.
5971
5972         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
5973         the GC code.
5974
5975         * sgen-gc.c: Implement write barriers in IL code.
5976
5977 2009-01-17  Geoff Norton  <gnorton@novell.com>
5978
5979         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
5980
5981 2009-01-17  Geoff Norton  <gnorton@novell.com>
5982
5983         * image.c: When unloading the image->references table, there can be gaps
5984         in it.  Ensure that we iterate every entry to avoid leaking assembly references
5985         when unloading an appdomain.
5986
5987 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
5988
5989         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
5990         speed up ptr-in-nursery checks.
5991
5992         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
5993         threads_lock () to prevent deadlocks.
5994
5995         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
5996         does not need to be scanned during minor collections, since writes to it
5997         must use write barriers.
5998
5999 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
6000
6001         * metadata-verify.c: Add pe nt header verification.
6002         
6003 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6004
6005         * gc.c: Fix a few warnings when using SGEN.
6006
6007 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
6008
6009         * metadata-verify.c: Add pe optional header verification.
6010
6011 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6012
6013         * sgen-gc.c: Add support for user defined marker functions, used by
6014         MonoGHashTable to avoid registering a GC root for every hash node.
6015
6016 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6017
6018         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
6019         non-pinned roots into separate hashes to avoid having to traverse them
6020         in functions which are only interested in one kind.
6021
6022 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6023
6024         * metadata-verify.c: Add pe header machine field verification.
6025         
6026 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6027
6028         * metadata-verify.c: Add pe header size verification.
6029
6030 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6031
6032         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
6033         using the GC, they don't contain references.
6034
6035         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
6036
6037 2009-01-13  Geoff Norton  <gnorton@novell.com>
6038
6039         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
6040         AppDomains created on the native side can be cleaned up on the native side.
6041
6042 2009-01-13  Geoff Norton  <gnorton@novell.com>
6043
6044         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6045         as well as the managed api.
6046
6047 2009-01-13  Geoff Norton  <gnorton@novell.com>
6048
6049         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6050         with a MonoAppDomain initialized against it.
6051
6052 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6053
6054         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6055         
6056         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6057
6058         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6059         into the wrapper caches. Fixes #465700.
6060
6061         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6062         method builder.
6063         (mono_mb_create_method): Set the clauses from the method builder.
6064
6065 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6066
6067         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6068         Patch from Makoto Kishimoto.
6069
6070 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6071
6072         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6073         encoding them as ROOT_DESC_COMPLEX.
6074         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6075
6076 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6077
6078         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6079         no longer point to the nursery.
6080
6081         * sgen-gc.c: Add a few comments/FIXMEs.
6082         
6083         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6084
6085         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6086         initialization of the various _method variables thread safe. Fixes
6087         #465377.
6088
6089 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6090
6091         * domain.c, domain-internals.h: Remove the shared_generics_hash
6092         and its lookup functions.
6093
6094 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6095
6096         * socket-io.c:  Fixing the MSVC build. 
6097
6098         Code is contributed under MIT/X11 license.
6099
6100 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6101
6102         * metadata-verify.c: Add pe header watermark verification.
6103
6104 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6105
6106         * metadata-verify.c: Add lfanew verification.
6107
6108 2009-01-12  Jb Evain  <jbevain@novell.com>
6109
6110         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6111         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6112
6113 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6114
6115         * socket-io.c: Fix the build.
6116
6117         * environment.c: Fix an #ifdef.
6118
6119 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6120
6121         * threadpool.c (async_invoke_thread): Handle the wait function returning
6122         WAIT_IO_COMPLETION as well.
6123         (async_invoke_io_thread): Ditto.
6124
6125 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6126
6127         * threads.c: Fixing the Windows build.
6128
6129         Code is contributed under MIT/X11 license.
6130
6131 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6132  
6133         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6134         interrupt a wait.
6135         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6136         the thread to wait again.
6137
6138 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6139
6140         * metadata-verify.c: Initial skeleton of the metadata verifier.
6141
6142         * pedump.c: Add support for the metadata verifier.
6143
6144         * verify-internal.h: Export the whole assembly metadata verifier function.
6145
6146 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6147
6148         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6149
6150 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6151
6152         * Makefile.am: Upgrade dtrace-prelink.sh location.
6153
6154 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6155
6156         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6157         well. Otherwise the shutdown deadlock that happens on unix will can happen
6158         as well.
6159         If the main thread code finishes too fast it's possible that the finalizer
6160         thread won't have executed yet, won't record itself as the finalizer thread
6161         and the shutdown sequence will wait on it forever.
6162
6163 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6164
6165         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6166         with MSVC.
6167
6168 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6169
6170         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6171         Robert Jordan for pointing this out.
6172
6173 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6174
6175         * icall.c
6176         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6177         ves_icall_System_IO_DriveInfo_GetDriveType.
6178
6179 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6180
6181         * icall.c: Wrap calls to mono_strtod in CriticalSection
6182         invocations when using eglib, to work around #464316.
6183
6184 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6185
6186         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6187         return value of GetCurrentDirectory to never access unitialized memory.
6188
6189 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6190
6191         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6192         return value of GetCurrentDirectory and expand the buffer if needed.
6193
6194         Fixes #459094.
6195
6196 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6197
6198         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6199           Adding a call to mono_init_com_types.
6200
6201         Code is contributed under MIT/X11 license.
6202
6203 2009-01-07  Geoff Norton  <gnorton@novell.com>
6204
6205         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6206         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6207         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6208         be the value of the ip buffer.
6209
6210 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6211
6212         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6213         interfaces_packed here.
6214
6215         Fixes part of #463294.
6216
6217 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6218
6219         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6220
6221         Fixes part of #463294.
6222
6223 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6224
6225         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6226         is a boxed complex as well.
6227
6228         Fixes part of #463294.
6229
6230 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6231
6232         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6233         control if a methodspec should be created for the generic method definition from external assemblies.
6234         Caching of methodspec is done using the handleref hash table.
6235
6236         Fixes #462592.
6237
6238 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6239
6240         * loader.c (find_method): When searching the interfaces of a class
6241         check the transitive closure of implemented interfaces.
6242
6243         Fixes #463303.
6244
6245 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6246
6247         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6248         
6249 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6250
6251         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6252         interfaces calculation to fill_valuetype_array_derived_types.
6253
6254         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6255         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6256         for example.
6257
6258         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6259         interfaces for valuetypes if needed.    
6260
6261         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6262         for their basetype as well. Types are array expanded if rank is > 0.
6263
6264         Fixes #400716.
6265
6266 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6267
6268         * socket-io.h : Changing the signature of
6269           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6270           the blocking state.
6271
6272         * icall-def.h :  Changing the signature of
6273           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6274
6275         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6276           For Windows only.  Avoid blocking when calling accept by
6277           querying for a connection via select.  The loop also queries
6278           the thread state every 1000 micro seconds for the thread
6279           stop state.  This will avoid the process hanging on shutdown
6280           when using a TcpChannel that is never connected to.
6281
6282         Code is contributed under MIT/X11 license.
6283
6284 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6285
6286         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6287
6288 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6289
6290         * class.c (get_implicit_generic_array_interfaces): Extract common
6291         code to a helper function making it a lot easier on the eyes.
6292
6293 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6294
6295         * class.c (get_implicit_generic_array_interfaces): If the internal
6296         enumerator is an interface inflate System.Object instead of itself.
6297
6298         Fixes #461261.
6299
6300 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6301
6302         * object.c (mono_runtime_invoke_array): Don't assert with
6303         byref nullable types.
6304
6305         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6306         byref nullables we unbox the object and store it on the
6307         stack. 
6308         We can't use the boxed object since it is the T of Nullable<T>
6309         and the boxed representation of a nullable it's underlying type
6310         or null.
6311         We could cheat and create a boxed nullable and use the same
6312         machinery of other byref VTs but this feels like a hack and
6313         using the stack has the bonus of reducing heap pressure.
6314
6315         Fixes #461941.
6316
6317 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6318
6319         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6320         return value.
6321
6322         Fixes #461867.
6323
6324 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6325
6326         * icall-def.h : Adding an internal call definition for 
6327           System.Environment.internalBroadcastSettingChange.
6328
6329         * icall.c : Adding a Windows only implementation to broadcast a 
6330           WM_SETTINGCHANGE when an environment variable has changed.
6331
6332         Code is contributed under MIT/X11 license.
6333
6334 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6335
6336         * class.c, class-internals.h: Made
6337         mono_class_has_parent_and_ignore_generics() non-static.
6338
6339 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6340
6341         * image.c: deal with the mmap failing when loading an image.
6342
6343 2008-12-17  Geoff Norton  <gnorton@novell.com>
6344
6345         * threadpool.c: Ensure that the io_queue_lock is initialized
6346         in all circumstances, as we always attempt to cleanup against it.
6347
6348 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6349
6350         * icall.c (ves_icall_System_Environment_get_Platform): For
6351         compatibility reasons for existing client code we will keep
6352         returning 4 for a while.   
6353
6354         For how long will depend on the documentation being updated, and
6355         for us to give client code a chance to be updated.
6356
6357         This reverts the original decison on #433108 since we did not
6358         catch roughly 33 instances of the broken code in our own source
6359         code base, we did not catch failures on the buildbots, and QA did
6360         not bring this as a problem.
6361
6362         Only today I found some customer's code breaking due to our own
6363         class libraries not being fully updated and tracked it down to
6364         this change.  I am reverting it because if we could not even get
6365         our story straight in our own code base, how can we hope that our
6366         end user code be fixed?
6367
6368         As of this morning, our Wiki page that documents how to detect
6369         Unix had not been fixed.    
6370
6371 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6372
6373         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6374
6375         * class.c (mono_class_get_fields): Handle loading errors.
6376
6377 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6378
6379         * 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.
6380         
6381 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6382
6383         * mono-perfcounters.c: avoid warning.
6384
6385 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6386
6387         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6388         make sure all interfaces have MonoClass::interface_id set.
6389
6390         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6391         method table is property set.
6392
6393 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6394
6395         * class.c: New function mono_class_setup_interface_id that setup
6396         MonoClass::interface_id if needed.
6397
6398         * class-internals.h: Export new function.
6399
6400 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6401
6402         * class.c: Add code to sanity check the vtable after setup_vtable_general
6403         has done it's work.
6404
6405 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6406
6407         * icall.c: make Assembly.GetExecutingAssembly work properly when
6408         reflection is used to invoke the method.
6409         Bug #321781 fixed.
6410
6411 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6412
6413         * metadata/generic-sharing.c: Look for constraints in all type
6414         arguments, not just the first one.
6415
6416 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6417
6418         * appdomain.c: return the correct CodeBase for an Assembly instance
6419         that was loaded from the shadow-copy directories.
6420         Bug #458190 fixed.
6421
6422 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6423
6424         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6425
6426         * sgen-gc.c (check_object): New debugging helper function.
6427
6428         * object.c: Fix calls to mono_value_copy_array ().
6429
6430 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6431
6432         * class.c (mono_class_setup_fields): If working on an inflated class
6433         first check if the generic definition did init with success.
6434
6435         Fixes #445361.
6436
6437 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6438
6439         pedump.c (main): Fix a warning.
6440
6441 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6442
6443         * object-internals.h : Adding a definition for 
6444           MonoReflectionComVisibleAttribute.
6445
6446         * marshal.c (cominterop_com_visible) :  Method added to check the 
6447           ComVisible attribute of a class.
6448
6449         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6450           cominterop_raise_hr_exception added to consolidate common code 
6451           to raise hr exceptions.
6452
6453         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6454           if a managed class should support IDispatch.
6455
6456         * marshal.c 
6457           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6458           Added additional checks for managed object when getting 
6459           an IDispatch interface.
6460
6461         Code is contributed under MIT/X11 license.
6462
6463 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6464
6465         pedump.c (main): Handle mono_get_method () returning NULL. 
6466
6467 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6468
6469         * marshal.h: Fix a warning.
6470
6471 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6472
6473         * marshal.c : Adding cominterop_release_all_rcws to release all
6474           runtime callable wrappers held by the runtime.
6475
6476         * marshal.h : Adding declaration for cominterop_release_all_rcws.
6477           
6478         Code is contributed under MIT/X11 license.
6479
6480 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6481
6482         * metadata.c (mono_image_alloc_lock): New helper function.
6483         (mono_image_alloc0_lock): Ditto.
6484
6485         * metadata.c: Use the alloc_lock () helper functions for allocating
6486         memory from the image mempool.
6487
6488 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
6489
6490         * class.c (mono_class_from_generic_parameter): Document it's
6491         locking behavior. Fix double checked locking here, we stored in
6492         param->pklass a partially initialized MonoClass and no membar was used.
6493
6494 2008-12-05  Marek Habersack  <mhabersack@novell.com>
6495
6496         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
6497         (3) functions are present in the C library use them to do the
6498         job. If they are absent, make sure that the sum of int_part and
6499         dec_part is rounded before returning. This is necessary due to the
6500         division of dec_part by the power of 10 before the final addition
6501         is performed - if the result is not rounded in some cases it will
6502         yield invalid results.
6503
6504 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
6505
6506         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
6507         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6508         instruction instead of a pointer constant.
6509
6510 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6511
6512         * loader.c (mono_method_get_header): Do most of the work outside the
6513         loader lock, to avoid assembly load hook deadlocks.
6514
6515         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6516         (mono_metadata_parse_type_full): Ditto.
6517
6518 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
6519
6520         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
6521         Make the stack depth fixed. Ensure proper argument passing to the backtrace
6522         funtions. Finally, use a lock to produce well ordered output.
6523
6524         The lock looks silly, as all calls to the corlib mempool should be guarded
6525         with the loader lock, but for some reason this fact doesn't help. 
6526
6527         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
6528
6529 2008-12-02  Mark Probst  <mark.probst@gmail.com>
6530
6531         * socket-io.c: 64 bit big-endian fixes.
6532
6533 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
6534
6535         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
6536         targets that require strict compatibility between the types.
6537
6538         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
6539         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
6540         Kill the strict argument and create a new one valuetype_must_be_boxed.
6541
6542         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
6543         state that all valuetypes must be boxed.
6544
6545         Fixes #448560.
6546
6547 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
6548
6549         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
6550         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
6551
6552         Contributed under MIT/X11 license.
6553
6554 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
6555
6556         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
6557         the inflate_generic_type machinery should handle it.
6558
6559         This avoids a crash when the field's flags is zero and it's type is
6560         a primitive.
6561         What happens is that mono_metadata_parse_type_full will see that opt_attrs
6562         is zero and will return one of the cached built-in primitive types. Since
6563         those types live in read-only memory, the code that copies it crashes.  
6564
6565 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6566
6567         * object.c: Don't put function descriptors into generalized IMT
6568         thunks.
6569
6570 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6571
6572         * class.c: Enable generic code sharing on PPC64.
6573
6574 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6575
6576         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
6577         from mini/mini.c.
6578
6579         * generic-sharing.c: Allocate the method template slists from the
6580         image mempool so it doesn't leak.
6581
6582 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
6583
6584         * class.c (generic_array_methods): Release the linked list.
6585
6586 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6587
6588         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
6589         invocation to g_utf16_to_utf8().
6590
6591 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6592
6593         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
6594         arguments on big endian archs.
6595
6596 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6597
6598         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
6599         the type name (test added in corlib).
6600
6601 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6602
6603         * pedump.c: initialize perf. counters. Fixes a segv.
6604
6605 2008-11-25  Martin Baulig  <martin@ximian.com>
6606
6607         * mono-debug-debugger.c
6608         (mono_debugger_runtime_invoke): Return the exception object if an
6609         exception was thrown.  Visual Studio displays the exception object
6610         in the locals window.
6611
6612 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6613
6614         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
6615         ftnptr.
6616
6617 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6618
6619         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
6620         MONO_TYPE_U are sizeof (gpointer), too.
6621
6622 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6623
6624         * marshal.c (mono_type_native_stack_size): Fixed size and
6625         alignment for reference types.
6626
6627 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6628
6629         * class.c (mono_class_generic_sharing_enabled): Disable generic
6630         code sharing for PPC64.
6631
6632 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
6633
6634         * icall.c (mono_method_get_equivalent_method): Make sure
6635         method->klass->methods is inited before looping over it.
6636
6637 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6638
6639         * object.c: when calling ExecuteAssembly in a newly created domain,
6640         the configuration file and application base are already set up.
6641         Bug #446353 take 2 fixed.
6642
6643 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
6644
6645         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
6646         Fixes #444715. Fix a warning.
6647
6648 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
6649
6650         * appdomain.c: write the full path of the assembly to the .ini file
6651         created when "shadow-copying"
6652         Bug #446353 fixed.
6653
6654 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6655
6656         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
6657         if signature==FALSE.
6658
6659 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6660
6661         * marshal.h : Fix the cygwin build.
6662            marshal.c:12442: undefined reference to `_IID_IMarshal'
6663           
6664         Code is contributed under MIT/X11 license.
6665
6666 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6667
6668         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
6669           free threaded marshaler when QueryInterface is called on a COM callable
6670           wrapper requesting the IMarshal interface.
6671           
6672         Code is contributed under MIT/X11 license.
6673
6674 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6675
6676         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
6677
6678         * reflection.c (mono_type_get_object): Special case the very common
6679         void type.
6680
6681         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
6682         hold typeof(void).
6683
6684 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
6685
6686         * process.h : Adding method declaration for
6687           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6688           
6689         * process.c : Adding implementation for
6690           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6691           
6692         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
6693           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6694
6695         Code is contributed under MIT/X11 license.
6696
6697 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
6698
6699         * appdomain.c (unload_thread_main): Clean up threadpool by
6700         calling mono_thread_pool_remove_domain_jobs.
6701
6702         * domain-internals.h (struct _MonoDomain): Add new fields to
6703         help coordinate the cleanup of the threadpool.
6704
6705         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6706         that cleans up the threadpool of all jobs associated with an appdomain.
6707         It does that by cleaning up the queues and making sure all active
6708         threads are accounted.
6709
6710         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6711         unloaded or in the process of. Take this is such way that there is
6712         no race condition between another thread starting the unload and the
6713         current thread acknowledging it.
6714
6715         * threadpool.c (async_invoke_thread): Same.
6716
6717         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6718         firing the new thread.
6719
6720         * threadpool.c (start_tpthread): Same.
6721
6722         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6723
6724         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6725
6726 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6727
6728         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6729         Add support for DuplicateHandle.
6730         
6731         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6732         Add support for DuplicateHandle.
6733         
6734         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6735         Add support for DuplicateHandle.
6736
6737         Code is contributed under MIT/X11 license.
6738
6739 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6740
6741         * class-internals.h: Make min_align into a whole byte.
6742
6743         * class.c: Set min_align for SIMD types to 16.
6744
6745 2008-11-05  Geoff Norton  <gnorton@novell.com>
6746
6747         * attach.c: Default the attacher to enabled for all cases including
6748         embedded.
6749
6750 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6751
6752         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6753         change r117650.
6754
6755 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6756
6757         * monitor.c, monitor.h: New function for querying offsets of
6758         members of MonoThreadsSync.
6759
6760 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6761
6762         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6763         to speed up this function and to avoid the boundless memory growth caused by
6764         the signature_dup () calls.
6765
6766 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6767
6768         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6769         wrapper.
6770
6771         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6772         by 1 bit.
6773
6774         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6775
6776 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6777
6778         * appdomain.c:
6779         * domain-internals.h: made mono_set_private_bin_path_from_config()
6780         "internal".
6781         * object.c: call the above function after setting the configuration
6782         file path for the root domain.
6783         Fixes bug #314478.
6784
6785 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6786
6787         * assembly.c: when the assembly is loaded from an absolute path, end
6788         basedir with a directory separator.
6789         Bug #440781 fixed.
6790
6791 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6792
6793         * monitor.c (mono_monitor_get_fast_enter_method): If
6794         CompareExchange is not available, don't create the fastpath
6795         instead of asserting.  (The method is missing in the 1.1 profile.)
6796
6797 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6798
6799         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6800
6801         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6802         Monitor.Exit IL fastpaths.
6803
6804 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6805
6806         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6807
6808 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6809
6810         * class.c (mono_class_create_from_typedef): Added Vector2l.
6811
6812 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6813
6814         * class.c (mono_class_create_from_typedef): Added Vector2d.
6815
6816 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6817
6818         * appdomain.c: translate \ into / for cache_path.
6819         * domain-internals.h: new mono_is_shadow_copy_enabled().
6820         * icall.c: (fill_reflection_assembly_name) do the same path
6821         manipulations that get_code_base does.
6822         (get_code_base) use mono_is_shadow_copy_enabled.
6823
6824 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6825
6826         * appdomain.c: shadow-copied assemblies go to CachePath +
6827         ApplicationName when both are set. DynamicBase has nothing to do with
6828         shadow copies.
6829         Bug #406877 fixed.
6830
6831 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6832
6833         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6834         STANDALONESIG table.
6835
6836         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6837         standalone signatures.
6838
6839         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6840         comparison code: instead of comparing the signatures using a custom
6841         equals function, transform them to a common signature and compare that. This
6842         works better with AOT.
6843
6844 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6845
6846         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
6847
6848         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
6849         call for generic instances.
6850         (mono_class_setup_properties): Call setup_properties () before accessing
6851         gklass->properties.
6852
6853         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6854         over the virtual methods of a class using metadata if possible, avoiding the
6855         creation of MonoMethod's for non-virtual methods.
6856         
6857         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6858         get_virtual_methods () to iterate over the virtual methods of classes.
6859
6860 2008-10-25  Martin Baulig  <martin@ximian.com>
6861
6862         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
6863
6864 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6865
6866         * class.c (mono_class_create_from_typedef): Added Vector4i.
6867
6868 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6869
6870         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
6871         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
6872         special-casing applies to eliminate the call completely.
6873
6874 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6875
6876         * class.c (mono_class_create_from_typedef): Added Vector8s.
6877
6878 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6879
6880         * class.c (mono_class_create_from_typedef): Added Vector16sb.
6881
6882 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6883
6884         * icall.c: get rid of annoying warning.
6885
6886 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6887
6888         * threadpool.c: in 1.x, if you change the background status of the
6889         threadpool thread, it's not reset.
6890         Remove unnecessary calls to SetState.
6891
6892 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6893
6894         * threadpool.c: asynchronously create a set of idle threads upon first
6895         use of the threadpool. SetMinThreads will now start the appropriate
6896         number of idle threads if they are not already running. The default is
6897         1 threadpool thread per CPU. Increased the maximum number of threads
6898         per CPU to 10.
6899
6900 2008-10-22  Martin Baulig  <martin@ximian.com>
6901
6902         Revert r116521 from Zoltan, it breaks the debugger:
6903
6904         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6905         over the virtual methods of a class using metadata if possible, avoiding the
6906         creation of MonoMethod's for non-virtual methods.
6907         
6908         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6909         get_virtual_methods () to iterate over the virtual methods of classes.
6910
6911 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6912
6913         * threads.c: when creating a threadpool thread, set its state to
6914         'background'.
6915         * threadpool.c: reset the background state of a threadpool thread
6916         after finishing each work item
6917         Bug #437888 fixed.
6918
6919 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6920
6921         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6922         
6923         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6924         generic instances which works by inflating the methods in the container
6925         class's vtable.
6926
6927         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6928         variant which doesn't make a copy if no inflation was done.
6929         (mono_class_setup_fields): Use it.
6930
6931         * metadata.c (mono_metadata_get_shared_type): New helper function to
6932         return a shared instance of a given MonoType.
6933
6934         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
6935         a copy of most non-generic types.
6936
6937 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
6938
6939         * threadpool.c: remove one more GetSystemInfo () call.
6940
6941 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6942
6943         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
6944         use the code in mono-proclib.h to get processor information.
6945
6946 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6947
6948         * appdomain.c: fixed the logic that determines whether assemblies in a
6949         directory are "shadow-copied" or not. Bug #433483 fixed.
6950
6951 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6952
6953         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
6954         warning.
6955
6956 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6957
6958         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
6959         returning a vtype.
6960
6961         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
6962         reflection.c: Use mono_field_get_name () for accessing a field's name.
6963
6964         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
6965         class.c
6966
6967         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
6968         field.
6969
6970         * loader.c (find_method_in_class): Reenable the metadata optimization by
6971         not using it for generic instances.
6972
6973         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
6974         data/def_type fields from MonoClassField into a separate structure.
6975         (struct MonoClassField): Remove data/def_type fields.
6976         (struct _MonoClass): Add a 'field_def_values' array to store the default
6977         values/RVA for fields.
6978
6979         * class.c reflection.c: Update after the changes.
6980         
6981         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
6982         for accessing field->data.
6983
6984         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
6985
6986         * loader.c (find_method_in_class): Revert the last change for now as
6987         it breaks Mono.C5 unit tests.
6988
6989         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
6990         'field_generic_types' and 'field_objects' which contain the information
6991         previously stored in MonoInflatedField.
6992         (MonoInflatedField): Delete.
6993         (struct _MonoClassField): Delete 'generic_info' field.
6994
6995         * reflection.c: Store the information which was previously in 
6996         field->generic_info in MonoDynamicGenericClass instead.
6997
6998         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
6999         MonoClassField changes.
7000
7001 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
7002
7003         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
7004         store the value inside the data array of the MonoMethodWrapper.
7005         This saves memory, is faster and fixes the lifetime issues (methods
7006         were never removed from the hash previously). May also fix bug#436996.
7007
7008 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7009
7010         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
7011         generic instances, compute the type from the generic definition instead of
7012         looking in field->generic_info.
7013
7014         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
7015         for inflated fields, the only user was get_fieldref_token () which no
7016         longer needs it.
7017
7018         * class.c (mono_class_init): Revert the last change as it seems to cause
7019         crashes.
7020
7021         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
7022         bytes on 64 bit platforms.
7023
7024         * object.c (mono_class_create_runtime_vtable): Fix a warning.
7025         
7026         * object.c (mono_class_create_runtime_vtable): Don't initalize
7027         field->data/field->def_type here, it is done lazily by 
7028         mono_class_get_field_default_value ().
7029
7030         * icall.c (ves_icall_get_enum_info): Call 
7031         mono_class_get_field_default_value () instead of directly accessing
7032         field->data and field->def_type.
7033
7034         * object.c (get_default_field_value): Ditto.
7035
7036         * class.c (mono_field_get_data): Ditto.
7037         
7038         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
7039         call for generic instances.
7040
7041         * loader.c (find_method_in_class): If klass != from_class, then inflate
7042         the method with the context of from_class, since the caller assumes this.
7043
7044 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7045
7046         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7047         for accessing method->slot.
7048
7049 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7050
7051         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7052
7053 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7054
7055         * class.c (mono_method_get_vtable_index): Use
7056         mono_method_get_vtable_slot () for accessing method->slot.
7057
7058         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7059         accessing klass->methods.
7060
7061         * class.c (mono_method_get_vtable_slot): New helper function.
7062         (mono_class_get_vtable_entry): Ditto.
7063         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7064         accessing method->slot.
7065
7066         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7067         method to get_inflated_method ().
7068
7069         * class.c (mono_class_get_inflated_method): New helper method to obtain
7070         a method of an inflated class without calling setup_methods ().
7071         (mono_class_get_cctor): Use get_inflated_method.
7072
7073         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7074         
7075         * marshal.c image.c: Lazily create all the marshal caches.
7076
7077         * image.c (mono_image_init): Move initialization of runtime_invoke
7078         caches to marshal.c.
7079
7080         * marshal.c (get_cache): New helper function to lazily initialize a 
7081         wrapper cache.
7082         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7083
7084         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7085
7086 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7087
7088         * loader.c: fixed check for interface type.
7089
7090 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7091
7092         * appdomain.c: check for NULL setup before it's referenced.
7093
7094 p
7095 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7096
7097         * class.c: remove the unused old vtable setup code.
7098
7099 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7100
7101         * class.c: don't depend on interface order in
7102         setup_interface_offsets (bug #435777).
7103         * reflection.c: sort the InterfaceImpl table (patch from
7104         Jb Evain  <jbevain@novell.com>).
7105
7106 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7107
7108         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7109         the low level assemblies lock.
7110
7111 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7112
7113         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7114         object.c, reflection.c, socket-io.c, threads.c: introduced
7115         mono_framework_version () to return the major framewrok version,
7116         changed the code that was using more complex patterns to use it.
7117         Return the correct value for PlatformID for OSX.
7118
7119 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7120
7121         * icall-def.h, process.h, process.c: added an icall to get info about
7122         processes using mono-proclib.
7123
7124 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7125
7126         * mono-perfcounters.c: use the mono-proclib functions to
7127         access process information.
7128
7129 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7130
7131         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7132         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7133         reflection.c: remove rawbuffer usage: mmap support is more sanely
7134         provided by utils/mono-mmap.
7135
7136 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7137
7138         * gc.c: use posix semaphores when possible so that
7139         mono_gc_finalize_notify() is signal safe.
7140
7141 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7142
7143         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7144         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7145         be #ifdef-ed out, the linker will remove the rest.
7146
7147         * marshal.c: Implement DISABLE_COM.
7148
7149         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7150
7151 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7152
7153         * locales.c (string_invariant_compare_char): Optimization: do not
7154         call g_unichar_type unless we actually need the information.
7155
7156 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7157
7158         * object.c, class-internals.h: Also create remoting trampolines
7159         for generic methods.  Pass the domain to the remoting trampoline
7160         creation function, too.
7161
7162 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7163
7164         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7165
7166 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7167
7168         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7169         Vector4ui.
7170
7171 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7172
7173         * assembly.c:
7174         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7175
7176 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7177
7178         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7179         for the least possible amount of time (extending the fix in r113458).
7180
7181 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7182
7183         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7184
7185 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7186
7187         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7188         as possible simd intrinsic types.
7189         Optimized the test to check for the common prefix first.
7190
7191 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7192
7193         * class.c: back out part of a broken optimization committed on
7194         May 23th (bug #433908).
7195
7196 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7197
7198         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7199         Win32.  Should fix #432388 for most cases until we have the new
7200         profiler on Win32.
7201
7202 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7203
7204         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7205         instead of using inst->id so the hash is stable for AOT.
7206
7207 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7208
7209         * appdomain.c:
7210         * icall.c: create a .ini file for shadow-copied assemblies that
7211         contains the location of the original assembly. Use this to return the
7212         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7213         Also fix the number of '/' for windows when returning the CodeBase.
7214         Fixes bug #430920.
7215
7216 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7217
7218         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7219
7220         Code is contributed under MIT/X11 license.
7221
7222 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7223
7224         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7225           if if the class vtable needs initialized.
7226
7227         Code is contributed under MIT/X11 license.
7228
7229 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7230
7231         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7232           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7233           STRING->BSTR, and CLASS->INTERFACE.
7234
7235         Code is contributed under MIT/X11 license.
7236
7237 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7238
7239         * sysmath.h: changed the declaration of the
7240         ves_icall_System_Math_Round2 icall by adding an extra
7241         away_from_zero parameter.
7242
7243         * sysmath.c (ves_icall_System_Math_Round2): added support for
7244         away from zero rounding. The icall now takes an extra boolean
7245         parameter to signal that away from zero operation is requested.
7246
7247 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7248
7249         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7250         the delegate klass so it can work with full-aot.
7251         (mono_marshal_get_delegate_end_invoke): Ditto.
7252         (mono_marshal_get_delegate_invoke): Ditto.
7253
7254 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7255
7256         * gc.c, attach.h, attach.c: remove a bad pattern:
7257         add_finalizer_callback () is not implemented correctly, it can't
7258         without adding more overhead to the finalizer loop and it's not
7259         even needed, since we know exactly what we need to call, so there is
7260         no need to do so through an expensive function pointer.
7261
7262 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7263
7264         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7265         for the no-gc case.
7266         * attach.c (mono_attach_init): Remove the #ifdef.
7267
7268 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7269
7270         * attach.c (mono_attach_init): Don't use
7271         mono_gc_add_finalizer_thread_callback when compiling without GC.
7272         Fixes #432306.
7273         
7274         Code is contributed under MIT/X11 license.
7275
7276 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7277
7278         * class.c (mono_class_create_from_typedef): Remove the 
7279         #ifndef DISABLE_SIMD stuff.
7280
7281 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7282
7283         * class-internals.h (MonoClass): Added simd_type bit field.
7284
7285         * class.c (mono_class_create_from_typedef): Check if type is a simd
7286         intrinsic.
7287
7288 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7289
7290         * object.c (mono_method_add_generic_virtual_invocation): Only add
7291         instantiations to the thunk whose count is at least as large as
7292         the threshold.
7293
7294 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7295
7296         * icall.c: changed the Type of the exception thrown when trying to
7297         invoke a constructor on an abstract class. Part of the fix for bug
7298         #324185.
7299
7300 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7301
7302         * class.c, class-internals.h (mono_method_get_vtable_index): New
7303         function which returns the index into the vtable and properly
7304         handles inflated virtual generic methods.
7305
7306 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7307
7308         * object.c, domain.c, object-internals.h, domain-internals.h:
7309         Generalize IMT thunk machinery to also handle thunks for virtual
7310         generic method invokes.  When a virtual generic method is invoked
7311         more than a number of times we insert it into the thunk so that it
7312         can be called without lookup in unmanaged code.
7313
7314         * generic-sharing.c, class-internals.h: Fetching a
7315         MonoGenericInst* for a method from an (M)RGCTX.
7316
7317 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7318
7319         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7320         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7321         marshalling. Fixes #431304.
7322
7323 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7324
7325         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7326           handle when ref is specified without In or Out.
7327
7328         Code is contributed under MIT/X11 license.
7329
7330 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7331
7332         * loader.c (mono_get_method_constrained): Don't expand method with
7333         the class's context, because it's already a method of that class.
7334
7335 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7336
7337         * attach.c : should be correct build fix.
7338
7339 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7340
7341         * attach.c: Fix the previous change.
7342
7343 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7344
7345         * attach.c : quick w32 build fix.
7346
7347 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7348
7349         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7350         crashes MonoDevelop: #430455.
7351
7352 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7353
7354         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7355         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7356
7357         * domain.c: Remove initialization/cleanup of the removed fields.
7358
7359 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7360
7361         * class.c (mono_class_generic_sharing_enabled): Enable generic
7362         code sharing for PPC.
7363
7364 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7365
7366         * attach.c : Fixing the Windows builds.
7367
7368         Code is contributed under MIT/X11 license.
7369
7370 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7371
7372         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7373         the default generic sharing mode to 'all'.
7374
7375 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7376
7377         * generic-sharing.c, class-internals.h: New function for checking
7378         whether a method needs a static RGCTX invoke wrapper.  A few
7379         funtions moved from mini/generic-sharing.c.
7380
7381         * icall.c: New function used.
7382
7383 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7384
7385         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7386         Static RGCTX invoke wrapping applies to value type methods, too.
7387
7388         * class.c (mono_class_setup_vtable_general): In generic-shared
7389         value types, wrap methods with a static RGCTX invoke wrapper.
7390
7391 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7392
7393         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7394         osx build.
7395
7396 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7397
7398         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7399         register a callback which is called when the finalizer thread is woken
7400         up.
7401         (finalizer_thread): Call the callback if it exists.
7402
7403         * attach.h attach.c: New files, implementing the attach mechanism.
7404
7405         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7406         
7407         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7408         by the previous change.
7409
7410 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7411
7412         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7413         loader.c, marshal.c, metadata-internals.h, metadata.c,
7414         method-builder.c, object.c, reflection.c: introduced specific functions
7415         to allocate from the domain and image mempools and cleaned up most of
7416         the code to use them (still missing a few in reflection.c).
7417         Keep the loader bytes counter updated.
7418
7419 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7420
7421         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7422         loader-related counters.
7423
7424 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7425
7426         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7427         added more MS-compatible counters.
7428
7429 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7430
7431         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7432         class->blittable. Fixes #428217.
7433
7434 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7435
7436         * reflection.c (mono_image_get_field_on_inst_token): Call 
7437         field_encode_signature () since that handles custom modifiers too.
7438         Fixes #424663.
7439
7440 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7441
7442         * reflection.c (add_custom_modifiers): New helper function to merge custom
7443         modifiers stored in objects to a MonoType.
7444         (fieldref_encode_signature): Encode custom modifiers.
7445         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7446         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7447
7448 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7449
7450         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7451         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7452         64-bit IL only images because imports are not resolved for IL only images.
7453         Special thanks to Bill Holmes for finding this bug and testing the patch.
7454         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7455
7456         Contributed under MIT/X11 license.
7457
7458 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7459
7460         * mono-config.c (dllmap_start): Add support for the bits keyword
7461         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7462
7463 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7464
7465         * reflection.c (inflate_mono_method): When the class the method is
7466         to be inflated for is itself not inflated, just return the method.
7467
7468 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7469
7470         * mono-perfcounters.c: use more user friendly process instance names.
7471
7472 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
7473
7474         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7475           handle "[in] ref" and "[in][out] ref" cases.
7476
7477         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
7478           to mono_mb_create_method.  This was causing problems calling native to
7479           managed passing Variants by value.
7480
7481         Code is contributed under MIT/X11 license.
7482
7483 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
7484
7485         * class.c (can_access_internals): Call mono_assembly_load_friends ()
7486         before accessing the friend_assembly_names field.
7487
7488         * assembly.c (mono_assembly_load_friends): Make this callable multiple
7489         times.
7490         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
7491         called lazily when it is needed.
7492
7493         * metadata-internals.h (struct _MonoAssembly): Add 
7494         'friend_assembly_names_inited' flag.
7495
7496 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
7497
7498         * mono-perfcounters-def.h: fix the types of a few counters.
7499         * mono-perfcounters.c: implemented the instance names getter
7500         and a few bugfixes.
7501
7502 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
7503
7504         * culture-info-table.h : regenerated.
7505
7506 2008-09-17  Robert Jordan  <robertj@gmx.net>
7507
7508         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7509         context bound objects. Fixes #415577.
7510
7511         Code is contributed under MIT/X11 license.
7512
7513 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7514
7515         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7516         implementation (bug #423582).
7517
7518 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
7519
7520         * object.c (mono_object_get_virtual_method): Handle the case method->slot
7521         is not set. Fixes #426309.
7522
7523 2008-09-16  Jb Evain  <jbevain@novell.com>
7524
7525         * class.c (mono_class_from_name): fix the exported type look up
7526         when the type is defined in a referenced assembly.
7527
7528 2008-09-16  Jb Evain  <jbevain@novell.com>
7529
7530         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
7531         increment the next index counter on each iteration to make that work
7532         for more than one type forwarder. Unmanaged part to fix #422929.
7533
7534 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7535
7536         * object-internals.h: enum ComInterfaceType in
7537         MonoInterfaceTypeAttribute is guint32, not guint16.
7538
7539 2008-09-12  Mark Probst  <mark.probst@gmail.com>
7540
7541         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
7542         writing code.
7543
7544 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7545
7546         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
7547         not gboolean.
7548
7549 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7550
7551         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
7552         Endianness fixes for MonoSymbolFileOffsetTable.
7553
7554 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7555
7556         * process.c (complete_path) : Removing quotes from the 
7557           input path.  The glib file routines do not handle file paths
7558           that have quotes around them.
7559
7560         Code is contributed under MIT/X11 license.
7561
7562 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7563
7564         * socket-io.h : Adding a comment to provide locations where 
7565           changes to MonoSocketAsyncResult need to be synced.
7566
7567         Code is contributed under MIT/X11 license.
7568
7569 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
7570
7571         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
7572         parameters as well. Fixes #425001.
7573
7574 2008-09-08  Miguel de Icaza  <miguel@novell.com>
7575
7576         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
7577         windows build.
7578
7579 2008-09-07  Miguel de Icaza  <miguel@novell.com>
7580
7581         * console-io.c: Add support for tracking the window size if it
7582         changes.
7583
7584         The setup is very simple: the TtySetup function will now return a
7585         pointer to a location in memory that tracks the current console
7586         size.  The managed code checks its current value every time its
7587         queried against the last value set, and updates accordingly.
7588
7589         With this setup we can work with multiple consoles, and we do not
7590         require to poke into managed code from a signal handler.
7591
7592         Additionally, the environment for COLUMNS and LINES is now handled
7593         in unmanaged code.
7594
7595         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
7596
7597 2008-09-07  Mark Probst  <mark.probst@gmail.com>
7598
7599         * marshal.c (mono_type_native_stack_size): Treat
7600         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
7601
7602 2008-09-04  Jb Evain  <jbevain@novell.com>
7603
7604         * class.c (mono_class_is_assignable_from): fix assignability of nullables
7605         to nullables.
7606
7607 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
7608
7609         * verify.c (verify_type_compatibility_full): Revert change
7610         to allow converting a native int to unmanaged pointer be verifiable
7611         under non-strict mode.
7612         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
7613
7614         * verify.c: Added some TODOs.
7615
7616 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
7617
7618         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
7619           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
7620           Changed to use GlobalAlloc for the memory returned on Windows platforms.
7621
7622         Code is contributed under MIT/X11 license.
7623
7624 2008-09-02  Jb Evain  <jbevain@novell.com>
7625
7626         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
7627
7628 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
7629
7630         reflection.c (typebuilder_setup_fields): Handle classes with
7631         explicit size.
7632
7633 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
7634
7635         class.c (mono_class_setup_events): Add memory barrier due to
7636         double checked locking.
7637         
7638         class.c (mono_class_setup_properties): Same.
7639
7640 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
7641
7642         * class.c (mono_class_is_assignable_from): Fix the build.
7643         
7644         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
7645         before accessing klass->interface_bitmap. Fixes #421744.
7646
7647 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
7648
7649         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
7650         the runtime into no-exec mode, useful when running the AOT compiler.
7651
7652         * appdomain.c gc.c object.c: Avoid executing managed code when running
7653         in no-exec mode.
7654         
7655         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
7656
7657         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
7658         special case when the mono_assembly_loaded () returns NULL because the 
7659         search hook is not installed.
7660
7661 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
7662
7663         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
7664         crashes in bstr marshalling on linux.
7665
7666 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7667
7668         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
7669         with more than one parameter.
7670
7671 2008-08-24  Miguel de Icaza  <miguel@novell.com>
7672
7673         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
7674         start/stop flow control as well when turning off ICANON (allows
7675         C-s and C-q to be read by Console.ReadKey).
7676
7677 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7678
7679         * class.c (mono_class_init): Move the initialization of nested classes
7680         into mono_class_get_nested_types (). Fixes #418433.
7681
7682         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
7683         flag.
7684
7685         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
7686         iterating tough the nested classes of a class.
7687
7688 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
7689
7690         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
7691         on arm.
7692
7693 2008-08-22  Miguel de Icaza  <miguel@novell.com>
7694
7695         * console-io.c (sigcont_handler): Support signal chaining for
7696         SIGCONT.
7697
7698         (console_set_signal_handlers): Use best practices with sigaction,
7699         clear the structure before using it. 
7700
7701 2008-08-22  Robert Jordan  <robertj@gmx.net>
7702
7703         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7704         Fix the Windows build.
7705
7706 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7707
7708         * class.c (mono_class_generic_sharing_enabled): Make the default
7709         sharing mode 'corlib'.
7710
7711 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7712
7713         * console-io.c (console_set_signal_handlers): Fix a warning.
7714
7715         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7716         method normally, the JIT will take care of avoiding recursion.
7717
7718 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7719
7720         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7721
7722         Code is contributed under MIT/X11 license.
7723
7724 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7725
7726         * console-io.c (sigcont_handler): We need to restore the entire
7727         termios state, not only the original settings, as things like echo
7728         can be controlled after this (Booish exposes this issue with its
7729         own ReadLine implementation).
7730
7731         Additionally, we need to set the terminal back into keypad_xmit
7732         mode.
7733         
7734         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7735         string as a paramter as well.   Otherwise we get different
7736         keyboard sequences.
7737
7738 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7739
7740         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7741         delegates with byref out parameter passing. Fixes #351520.
7742
7743         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7744         a generic context.
7745         (mono_type_get_desc): Add the type arguments for GENERICINST.
7746         (mono_method_full_name): Stringify the class name using mono_type_full_name
7747         so it picks up generic arguments.
7748
7749 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7750
7751         * console-io.c: Removed debug output.
7752
7753 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7754
7755         reflection.c (mono_reflection_create_runtime_class): Alloc
7756         the nested classes linked list using the dynamic image mempool.
7757         Fixes leak in corlib compilation.
7758
7759 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7760
7761         * console-io.c: Fix incredibly annoying behavior on the console
7762         after resuming execution after control-z.   This affected every
7763         console application.
7764
7765 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7766
7767         * mempool-internals.h: Header for mono private mempool functions. The first
7768         two function are for allocating glib linked lists using pools.
7769
7770         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7771
7772         * Makefile.am: Added mempool-internals.h.
7773
7774 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7775
7776         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7777         (mono_domain_free): Ditto.
7778
7779         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7780         be used by the JIT to store its domain-specific information, instead of putting
7781         it directly into MonoDomain.
7782
7783         * domain.c (mono_install_create_domain_hook): New helper function to install
7784         a hook which initializes domain->runtime_info.
7785
7786         * domain.c (mono_install_free_domain_hook): Ditto.
7787         
7788 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7789
7790         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7791         asserting if the ares parameter is null.
7792
7793         * mono-perfcounters.c: Fix warnings.
7794
7795         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7796         is not needed, don't check for interruptions either.
7797         (mono_marshal_get_delegate_end_invoke): Ditto.
7798
7799 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7800
7801         * mono-perfcounters.c (predef_readonly_counter): added support for
7802         reading the ASP.NET Requests Queued counter from another process.
7803
7804 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7805
7806         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7807         MonoImage to simplify the AOT code.
7808
7809 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7810
7811         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7812         marshalling. Fixes #416078.
7813
7814 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7815         
7816         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7817         it is set, looking up the icall address is deferred to the JIT, since 
7818         in embedded scenarios, the icall might not be registered in the runtime
7819         doing the AOT compilation. Backported from the 2.0 branch.
7820
7821 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7822
7823         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7824         Fixes #415621.
7825
7826 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7827
7828         * Makefile.am: added support for cross-compilation.
7829
7830 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7831
7832         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7833
7834 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7835
7836         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7837
7838 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7839
7840         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7841         mono-perfcounters.c: performance counters implementation.
7842
7843 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7844
7845         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7846         to gpointer, letting the AOT code decide what to store in it.
7847
7848 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
7849
7850         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
7851           mono_class_setup_methods if the methods are not initialized.
7852
7853         Code is contributed under MIT/X11 license.
7854
7855 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7856
7857         * verify.c: Remove some debug code I commited by accident.
7858
7859         * verify.c (mono_method_is_valid_in_context): Change the return value
7860         to make possible to distinguish between invalid and unverifiable.
7861
7862         * verify.c (verifier_load_method): Don't return NULL for unverifiable
7863         methods.
7864
7865 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7866
7867         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
7868         constraints. Fixes regression in gtest-253.
7869
7870 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7871
7872         * verify.c (mono_verifier_verify_class): Don't allow generic types
7873         with explicit layout.
7874
7875         * verify.c (mono_method_verify): Check locals and argument types.
7876
7877 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
7878
7879         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
7880         wait if the thread is in StopRequested state.
7881
7882         * class.c (mono_class_from_name): Refactor the module searching code into
7883         a separate function so it can be reused in the AOT case too.
7884
7885 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7886
7887         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7888         Check both the type and it's generic type definition for loader errors.
7889         
7890         * verify.c (mono_method_is_valid_in_context): Don't generate another
7891         error when a type errors occur, this leads to the wrong exception been
7892         thrown.
7893
7894 2008-07-28  Dick Porter  <dick@ximian.com>
7895
7896         * icall-def.h
7897         * process.c
7898         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7899         New internal calls to duplicate and close a process handle.
7900
7901 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7902
7903         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7904
7905 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7906
7907         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7908
7909 2008-07-27  Robert Jordan  <robertj@gmx.net>
7910
7911         * class.c (mono_class_init): Don't compute class.has_finalize for
7912         valuetypes. Fixes #412477.
7913
7914 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7915
7916         * verify.c: Implement constraint equivalence checking.
7917         This is required when a generic parameter is used as
7918         argument to a constrained one.
7919
7920         Fixes #410637.
7921
7922 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7923
7924         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7925
7926         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7927
7928         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
7929         synch with managed object layout.
7930
7931 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7932
7933         * verify.c (do_branch_op): Handle valuetypes and generic
7934         arguments properly.
7935
7936         * verify.c (do_cmp_op): Same.
7937
7938         Fixes #410383.
7939
7940 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7941
7942         * generic-sharing.c: Fix memory leaks.
7943
7944         * class.c, class-internals.h: Make
7945         mono_class_inflate_generic_type_with_mempool() non-static.
7946
7947 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7948
7949         * pedump.c (dump_verify_info): Dump full class name.
7950
7951 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7952
7953         * generic-sharing.c: Removed some old code that didn't do anything.
7954
7955 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
7956         * profiler.c: Added runtime_initialized_event,
7957         mono_profiler_install_runtime_initialized and
7958         mono_profiler_runtime_initialized. This new hook tells the profiler
7959         when the runtime is sufficiently initialized to be able to call
7960         mono_thread_attach on the root appdomain.
7961         * profiler.h, profiler-private.h: Likewise.
7962
7963 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7964
7965         * verify.c (do_cast): Do boxing for generic arguments as well.
7966
7967         * class.c (is_nesting_type): Drop generic instantiations before
7968         checking for nesting.
7969
7970         * class.c (can_access_instantiation): Allow access to generic
7971         arguments.
7972
7973 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7974
7975         * verify.c (verify_class_for_overlapping_reference_fields):
7976         On some cases, the field size might be zero, guard against that.
7977         Fix the explicit layout check to work as expected.
7978
7979 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
7980
7981         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
7982         mono_thread_resume () during shutdown, since the thread we want to abort
7983         might be suspended.
7984
7985 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
7986
7987         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
7988         warning.
7989
7990         * debug-mono-symfile.c: Fix a warning.
7991
7992         * mono-perfcounters.c (get_cpu_times): Fix a warning.
7993
7994         * object.c (mono_class_vtable): Check if exception_type is set, and return
7995         NULL as defined by the function comments.
7996
7997 2008-07-22  Mark Probst  <mark.probst@gmail.com>
7998
7999         * mempool.c: Use malloc for every single mempool allocation if the
8000         configure option is set.  This makes it easier to track mempool
8001         allocations with tools like Valgrind.
8002
8003 2008-07-22  Jb Evain  <jbevain@novell.com>
8004
8005         * reflection.c (create_dynamic_mono_image): emit the same
8006         metadata version that SL2 does when creating a SL2 image.
8007
8008 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
8009
8010         * icall-def.h:
8011         * icall.c: New icall System.Enum:get_hashcode. This function
8012         avoids the overhead of boxing the enum to the underlying type.
8013
8014 2008-07-21  Mark Probst  <mark.probst@gmail.com>
8015
8016         * reflection.c (mono_method_get_object): Don't let static RGCTX
8017         invoke wrappers get into MonoReflectionMethods.
8018
8019 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
8020
8021         * object-internals.h:
8022         * object.c: New mono_runtime_class_init_full function
8023         that makes throwing the exception optinal.
8024
8025         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
8026         for the case where the exception object is supplied.
8027
8028 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
8029
8030         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
8031         old ld versions.
8032
8033         Contributed under MIT/X11 license.
8034
8035 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8036
8037         * string-icalls.c (ves_icall_System_String_InternalSplit):
8038         Optimize array allocation by caching the MonoClass of the
8039         array type.
8040
8041         * icall.c (ves_icall_Type_GetMethodsByName): Same.
8042
8043         * reflection.c (mono_param_get_objects): Same.
8044
8045 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8046
8047         * icall-def.h:
8048         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8049         It inflates the given type using the class context.
8050
8051 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8052
8053         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8054         the vtable if it already exists.
8055
8056         * object-internals.h: Add mono_class_try_get_vtable as part of the
8057         internal API.
8058
8059         * reflection.c (mono_type_get_object): Use the MonoObject from the
8060         vtable when possible. Reduces locking contention on reflection heavy
8061         code.
8062
8063 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8064
8065         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8066         g_bit_nth_msf () since that macro is not implemented in eglib.
8067
8068 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8069
8070         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8071         on platforms which do not support it.
8072
8073 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8074
8075         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8076
8077 2008-07-11  Martin Baulig  <martin@ximian.com>
8078
8079         * mono-debug-debugger.h
8080         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8081
8082         * mono-debug-debugger.c
8083         (_mono_debugger_interruption_request): New global volatile variable.
8084         (mono_debugger_check_interruption): New public function.
8085
8086         * threads.c
8087         (mono_thread_current_check_pending_interrupt): Call
8088         mono_debugger_check_interruption().
8089         (mono_thread_interruption_checkpoint_request): Likewise.
8090
8091 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8092
8093         * verify.c: Add more type checks for loaded types. Verify the result
8094         handle from ldtoken.
8095
8096 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8097
8098         * loader.c (field_from_memberref): Don't crash if the field
8099         wasn't found.
8100
8101 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8102
8103         * verify.c: Verify if type and method instantiations
8104         don't have invalid VAR or MVAR arguments.
8105
8106 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8107
8108         * verify.c: Fix double free of function pointer list.
8109
8110 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8111
8112         * object.c (mono_string_to_utf8): Comment the new code as it
8113         breaks under eglib.
8114
8115 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8116
8117         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8118
8119 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8120
8121         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8122           is not throw too many times.
8123
8124         Code is contributed under MIT/X11 license.
8125
8126 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8127
8128         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8129         debugging is turned off.
8130
8131 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8132
8133         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8134
8135 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8136
8137         * class-internals.h, class.c: Added new generic sharing option:
8138         Share only stuff in System.Collections.Generic, which is now the
8139         default.
8140
8141 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8142
8143         * generic-sharing.c, class-internals.h: New function for getting a
8144         generic method in a generic class given the corresponding method
8145         for a different instantiation of the class.  Partly refactored
8146         from mini-trampolines.c.
8147
8148         * class.c: Make sure generic methods have a class_inst if they are
8149         part of a generic class.
8150
8151         * metadata.c (mono_type_stack_size_internal): Handle type
8152         variables.
8153
8154 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8155
8156         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8157         Signifies whether information on the this/vtable/mrgctx variable
8158         is available.
8159
8160 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8161
8162         * object.c, object-internals.h, icall.c: New function
8163         mono_delegate_ctor_with_method(), which does the same as
8164         mono_delegate_ctor(), but takes an explicit method argument
8165         instead of taking the method from the jit info.
8166
8167         * marshal.c: When creating a delegate with an inflated method take
8168         the "this" argument as the target class for the castclass.
8169
8170 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8171
8172         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8173         mono_jit_info_table_find() to perform very badly in some cases.
8174
8175 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8176
8177         * icall.c (type_from_typename): Handle 'string'.
8178
8179         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8180         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8181
8182 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8183
8184         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8185
8186         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8187         number of available managed allocator types.
8188
8189         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8190         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8191
8192 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8193
8194         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8195         which is a low level lock protecting just the 'jit_code_hash' hash table.
8196
8197         * domain.c: Initialize+cleanup jit_code_hash_lock.
8198         
8199 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8200
8201         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8202         after initialization.
8203
8204         * coree.h: Make MonoFixupExe internal.
8205
8206         Contributed under MIT/X11 license.
8207
8208 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8209
8210         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8211         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8212         as well.
8213         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8214         image being loaded is a CLI image and _CorValidateImage gets called.
8215
8216         * coree.h: Add MonoLoadImage.
8217
8218         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8219         instead of LoadLibrary.
8220
8221         Contributed under MIT/X11 license.
8222
8223 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8224
8225         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8226         for any primitive type.
8227
8228 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8229
8230         * object.c (mono_array_new_specific): Optimize this and the other allocation
8231         functions a bit.
8232         
8233         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8234         domains too if mono_dont_free_domains is set.
8235
8236         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8237         whenever to free appdomain data after it has been unloaded.
8238
8239         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8240         
8241 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8242
8243         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8244         (mono_method_get_equivalent_method): Fix a warning.
8245
8246         * object.c (mono_message_init): Avoid looking up array types for each call.
8247
8248 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8249
8250         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8251         call.
8252
8253         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8254         even more.
8255
8256         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8257         each iteration.
8258
8259         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8260         fields of an enum.
8261
8262 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8263
8264         * object.c (mono_value_box): Fix boxing of nullables.
8265
8266 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8267
8268         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8269         mono_module_handle that is defined by the linker; no initialization required.
8270         * coree.h: Remove mono_module_handle, add __ImageBase, update
8271         mono_image_open_from_module_handle.
8272         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8273         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8274         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8275         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8276         to 4 GB away from image base address. IA64 version is not tested but was very
8277         easy to implement and should work if we ever need it.
8278         * domain.c (mono_init_internal): Avoid system error message boxes.
8279         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8280         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8281         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8282         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8283         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8284
8285         Contributed under MIT/X11 license.
8286
8287 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8288
8289         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8290         as part of the private mono API.
8291         
8292         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8293         Do proper argument checking for methods that belong to generic classes.
8294         Do proper type resolution for GMFH/2.
8295         Fixes #377324.
8296         
8297 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8298
8299         * verify.c (do_switch): Fix a memory corruption bug with
8300         the jump index is out of bound.
8301
8302 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8303
8304         * verify.c: Disable debug code.
8305
8306 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8307
8308         * reflection.c (mono_image_get_methodbuilder_token): Use
8309         mono_image_get_methodspec_token_for_generic_method_definition
8310         instead of mono_image_get_memberref_token. We cache more memberef
8311         entries now.
8312
8313 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8314
8315         * verify.c: Inflate exception clause types.
8316         Fixes #402606.
8317         
8318 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8319
8320         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8321         name.
8322
8323         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8324
8325         * reflection.c (mono_image_create_method_token): Same.
8326
8327 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8328
8329         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8330         It does the same as mono_image_get_methodref_token but works on
8331         MethodBuilder.
8332
8333         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8334         and always generate a methodspec. This follows the old behavior and fixes
8335         the regressions in System.Core. 
8336
8337 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8338
8339         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8340         don't event mono_class_get () succeeds. Fixes #402182.
8341
8342 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8343
8344         * metadata-internals.h: Added MonoDynamicImage::methodspec
8345         hashtable to store methodspec tokens created for MethodBuilders.
8346
8347         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8348         MethodBuilders as open instantiations if a methodspec was requested.
8349
8350         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8351
8352         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8353
8354         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8355
8356         Fixes bug #349190.
8357
8358 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8359
8360         * loader.c (method_from_methodspec): Avoid crashing if the
8361         method lookup fails.
8362
8363 2008-06-20  Dick Porter  <dick@ximian.com>
8364
8365         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8366         classes being in a different assembly.  Fixes bug 399184.
8367
8368 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8369
8370         * loader.c (mono_loader_init): Make this callable multiple times.
8371         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8372         the runtime is initialized. Fixes #401755.
8373
8374 2008-06-19  Dick Porter  <dick@ximian.com>
8375
8376         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8377         Fixes bug 349688.
8378
8379 2008-06-19  Dick Porter  <dick@ximian.com>
8380
8381         * socket-io.c:
8382         * icall-def.h: Implement Socket generic Send() and Receive()
8383         methods.  Fixes bug 395168.
8384
8385 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8386
8387         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8388
8389         Contributed under MIT/X11 license.
8390
8391 2008-06-18  Martin Baulig  <martin@ximian.com>
8392
8393         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8394         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8395         set to 80.0.  The debugger <-> runtime interface is now frozen as
8396         well.   
8397
8398         * mono-debug.c
8399         (mono_debug_debugger_version): Bump to 4.
8400
8401 2008-06-18  Martin Baulig  <martin@ximian.com>
8402
8403         * debug-mono-symfile.c
8404         (load_symfile): Don't check the minor version.
8405
8406         * debug-mono-symfile.h: Bump the version number to 50.0.
8407
8408 2008-06-18  Martin Baulig  <martin@ximian.com>
8409
8410         * debug-mono-symfile.c
8411         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8412         minimum required version.
8413
8414 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8415
8416         * reflection.c (mono_custom_attrs_from_property): Fix support for
8417         retriveving cattrs of dynamic inflated generic types.
8418
8419         * reflection.c (mono_custom_attrs_from_event): Same.
8420
8421         * reflection.c (mono_custom_attrs_from_field): Same;
8422
8423         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8424
8425         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8426         Moved to metadata.c.
8427
8428         * metadata.c: New functions to retrive the equivalent field, event
8429         of property from the generic type definition.
8430
8431         * metadata-internals.h: Added new functions from metadata.c.
8432
8433 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8434
8435         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8436         to cached in a mempool is used.
8437
8438         * metadata.c (free_generic_class): In some situations field generic_info type
8439         is not properly dup'ed and leads to double free'ing.
8440
8441         Fixes #400643.
8442
8443 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8444
8445         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8446         this arguments (will be needed later for generic methods).
8447         Collect stats.
8448
8449 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8450
8451         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8452         Create a static RGCTX invoke wrapper for methods which require it.
8453
8454 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8455
8456         * object.c, class-internals.h: New function for checking whether
8457         an individual field is special static.
8458
8459 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8460
8461         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8462         linear search since the table is sorted.
8463
8464         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8465         Fixes #324180.
8466
8467 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8468
8469         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8470         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8471
8472         * gc.c (mono_domain_finalize): Allow an infinite timeout.
8473
8474         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
8475         
8476         * threads.c (mono_thread_request_interruption): Get rid of locking, use
8477         InterlockedCompareExchange to query and modify 
8478         thread->interruption_requested.
8479
8480         * object-internals.h (struct _MonoThread): Change interruption_requested
8481         to a gint32 so it can be modified by atomic operations. Add 
8482         'critical_region_level' from the managed side, change small_id to a guint32,
8483         add new set of 'unused' fields.
8484
8485         * appdomain.c: Bump corlib version.
8486
8487 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
8488
8489         * class.c (mono_class_from_name): Search modules as well. Fixes
8490         #322332.
8491
8492 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8493
8494         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
8495         templates.  Templates are generalized with an additional type_argc
8496         argument.  RGCTX templates have type_argc==0, MRGCTX templates
8497         have type_argc>0.
8498
8499         * domain-internals.h, domain.c: New hash table for looking up
8500         MRGCTXs.
8501
8502         * metadata.c, metadata-internals.h: Rename hash and equal
8503         functions for MonoGenericInst's and make them public.
8504
8505         * class-internals.h: New data structures for the MRGCTX.  Macros
8506         for distinguishing slots in the RGCTX and the MRGCTX.
8507
8508 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8509
8510         * object.c (mono_method_get_imt_slot): Put the same methods of
8511         different instantiations of the same generic interface in the same
8512         IMT slots, to make generic sharing simpler.
8513
8514 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8515
8516         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
8517
8518         * metadata.c (mono_metadata_field_info_with_mempool): Added.
8519         This function works just like mono_metadata_field_info, but
8520         accept a mempool as argument to be used allocating memory.
8521
8522         * marshal.c (mono_marshal_load_type_info): Use new function
8523         to load marshal data into image mempool.
8524
8525 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8526
8527         * class.c (mono_class_inflate_generic_type_with_mempool):
8528         This function allows to inflate a generic type using
8529         a mempool.
8530
8531         * class.c (inflate_generic_type): Take a mempool as argument
8532         and use it to do type dup'ing.
8533
8534         * class.c (mono_class_setup_fields): Field type for generic
8535         generic classes are allocated from the image mempool.
8536
8537         * metadata.c (free_generic_class): Inflated field type is
8538         now allocated in the image mempool.
8539
8540 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8541
8542         * threads.c (thread_cleanup): Free MonoThread::name.
8543
8544 2008-06-12  Marek Habersack  <mhabersack@novell.com>
8545
8546         * appdomain.c (ensure_directory_exists): avoid unnecessary
8547         mkdir(2) calls when the shadow directory already exists.
8548         (mono_make_shadow_copy): copy also satellite assemblies from the
8549         private bin directories.
8550
8551 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8552
8553         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
8554         
8555         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
8556         a page boundary. Fixes #396219.
8557
8558 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8559
8560         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
8561         due to double-checked locking.
8562
8563 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8564
8565         * assembly.c (build_assembly_name): Release memory on failure.
8566
8567         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
8568
8569 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8570
8571         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
8572         memory on failure.
8573
8574 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8575
8576         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
8577         memory on failure.
8578
8579 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8580
8581         * loader.c (field_from_memberref): Check if field signature type is equal
8582         to the non-inflated type of the field. Fixes #398980.
8583
8584 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8585
8586         * assembly.c (mono_assembly_load_from_full): Call 
8587         mono_assembly_load_friends () outside the assemblies lock, since it can
8588         acquire the loader lock. Fixes #323696.
8589
8590         * reflection.c (resolve_object): Inflate the inst with the context for
8591         FieldOnTypeBuilderInst. Fixes #399010.
8592
8593 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8594
8595         * reflection.c (mono_image_get_field_on_inst_token): Don't
8596         inflate the field to encode it's signature. If it's a
8597         VAR or MVAR it should stay that way in the signature.
8598         Fixes #399047.
8599
8600 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8601
8602         * reflection.c (resolve_object): Release memory of inflated types.
8603
8604 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8605
8606         * loader.c (mono_method_get_signature_full): Remove assert about
8607         loading a methodspec to a generic method. We have such methods, such as
8608         System.Threading.Interlocked::CompareExchange<T>.
8609         This assert was removed since it crashes the verifier when it checks
8610         methods calling CompareExchange<T>.
8611
8612 2008-06-10  Marek Safar  <marek.safar@gmail.com>
8613
8614         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
8615         of Type array and not MonoType.
8616
8617 2008-06-10  Marek Habersack  <mhabersack@novell.com>
8618
8619         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
8620         <lupus@ximian.com>
8621
8622 2008-06-10  Martin Baulig  <martin@ximian.com>
8623
8624         * debug-mono-symfile.h
8625         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
8626         changes to the file format, but we were generating incorrect
8627         source file indices in the line number table due to a bug, which
8628         made backtraces report an incorrect source file.
8629
8630 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8631
8632         * mono-debug.c: Moved mono_debug_free_method_jit_info from
8633         mini/debug-mini.c to here.
8634
8635         * mono-debug.c (il_offset_from_address): Free memory from find_method.
8636
8637         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
8638         use it to release structs returned by mono_debug_find_method.
8639
8640 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
8641
8642         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
8643         since it needs to set method->slot for all interface methods.
8644
8645 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8646
8647         * class-internals.h: Forgot to add.
8648
8649 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8650
8651         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
8652
8653         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
8654         Lookup the custom attributes from property_hash.
8655
8656         * reflection.c (mono_save_custom_attrs): Save the custom attributes
8657         in property_hash. Allocate all data using the image mempool.
8658
8659         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
8660         for dynamic_custom_attrs to checks if the image is dynamic.
8661
8662 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8663
8664         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
8665         assemblies array.
8666         
8667         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
8668         runtime functions while holding the domain assemblies lock.
8669
8670 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8671
8672         * verify.c: Reapplied the last bit of the reverted changes.
8673
8674 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8675
8676         * verify.c: Reapplied more of the reverted changes.
8677
8678 2008-06-09  Martin Baulig  <martin@ximian.com>
8679
8680         * debug-mono-symfile.c (load_symfile): Check the major version
8681         first; if it's wrong, don't print the minor version in the error message.
8682
8683 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8684
8685         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
8686         lock instead of the domain lock to avoid deadlocks, since the thread might
8687         already hold the loader lock.
8688
8689         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
8690         (mono_thread_attach): Ditto.
8691
8692         * monitor.c: Use a TLS variable for holding the current thread id instead
8693         of calling pthread_self ().
8694         (mono_monitor_init_tls): New internal function to initialize the TLS
8695         variable.
8696         (mono_monitor_try_enter_internal): Put the owner == id check after the
8697         owner == 0 check.
8698
8699         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
8700         missed optimizations when using gcc-4.3.
8701
8702 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8703
8704         * reflection.c (mono_dynamic_image_free): Free the memory
8705         used by MonoGenericParam in MonoDynamicImage::gen_param.
8706
8707         * reflection.c (mono_reflection_setup_generic_class): Allocate
8708         container from mempool.
8709
8710         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8711         container from mempool.
8712
8713 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8714
8715         * threads.c (mono_set_pending_exception): New internal function to set the
8716         pending exception of the current thread.
8717         (mono_thread_get_and_clear_pending_exception): Check for 
8718         thread->pending_exception as well.
8719
8720         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8721
8722         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8723         it can trigger a collection.
8724
8725 2008-06-06  Martin Baulig  <martin@ximian.com>
8726
8727         Merged the `debugger-kahalo' branch.
8728
8729         * mono-debug.h
8730         (MONO_DEBUGGER_VERSION): Bumped to 72.
8731
8732         * debug-mono-symfile.h
8733         (MonoSymbolFileMethodIndexEntry): Removed.
8734         (MonoSymbolFileMethodEntry): New public typedef.
8735         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8736         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8737         `data_offset'.
8738         (MonoSymbolFileMethodEntry): Removed.
8739         (MonoSymbolFileLexicalBlockEntry): Removed.
8740         (MonoSymbolFileLineNumberEntry): Removed.
8741         (MonoDebugLexicalBlockEntry): Removed.
8742         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8743         removed `num_il_offsets' and `il_offsets'.
8744         (MonoSymbolFile): Replace `version' with `major_version' and
8745         `minor_version'.
8746         (MONO_SYMBOL_FILE_VERSION): Replace with
8747         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8748         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8749
8750         * debug-mono-symfile.c
8751         (mono_debug_symfile_lookup_location): Add support for the new line
8752         number table format.
8753
8754 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8755
8756         * metadata.c (free_generic_class): Release the inflated
8757         MonoClass of dynamic generic classes if it's not a generic
8758         type definition.
8759
8760 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8761
8762         * verify.c: Reapplied more of the reverted changes.
8763
8764 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8765
8766         * reflection.c (lookup_custom_attr): Clean the cached flag or
8767         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8768         for SRE types.
8769
8770 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8771
8772         * verify.c: Reapplied a small part of the reverted changes.
8773
8774 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8775
8776         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8777
8778         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8779         previously in managed code.
8780         (mono_monitor_exit): Ditto.
8781         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8782
8783         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8784         the managed definition.
8785
8786 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8787
8788         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8789
8790 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8791
8792         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8793         
8794         * monitor.c: Add some micro optimizations.
8795
8796         * icall.c (type_from_typename): Handle 'bool'.
8797
8798 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8799
8800         * verify.c: Implement constructor verification per P III 1.8.1.4.
8801         Fixes #396716.
8802
8803 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8804
8805         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8806         holding the assemblies lock here too.
8807
8808 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8809
8810         * verify.c: Kill stack_top function.
8811
8812 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8813
8814         * verify.c: Kill stack_get function.
8815
8816 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8817
8818         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8819
8820 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8821
8822         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8823         more reliable.
8824
8825         * verify.c (mono_method_verify): Inflate params and locals to avoid
8826         mismatch when checking for compatibility.
8827
8828 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8829
8830         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8831         Length prefix should be size in bytes. Fix bug #339530.
8832         
8833         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8834         Length prefix should be size in bytes. Fix bug #339530.
8835
8836         Code is contributed under MIT/X11 license.
8837
8838 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8839
8840         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8841
8842         Contributed under MIT/X11 license.
8843
8844 2008-06-05  Martin Baulig  <martin@ximian.com>
8845
8846         * mono-debug-debugger.c
8847         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
8848
8849 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
8850
8851         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
8852         while holding the assemblies lock to prevent deadlocks. Handle the case
8853         where the search hook returns NULL but the assembly was still loaded.
8854         Fixes #323696.
8855
8856         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
8857         modify domain state.
8858
8859 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
8860
8861         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
8862         * Makefile.am (pedump_LDADD): Post-process object files and
8863         add dtrace-generated object file, if necessary.
8864
8865         Code is contributed under MIT/X11 license.
8866
8867 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8868
8869         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
8870
8871 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8872
8873         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
8874
8875 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8876
8877         * threads.c: Try to free everything from the delayed free table
8878         when shutting down threads, and set the variable to NULL after the
8879         table is freed so that calling
8880         mono_thread_hazardous_try_free_all() when shutting down the root
8881         domain doesn't crash.
8882
8883 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8884
8885         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8886         the caller if resulting type was inflated.
8887
8888         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8889         was inflated.
8890
8891         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8892
8893
8894 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8895
8896         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8897         class library tests.
8898
8899         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8900         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8901         #396989.
8902
8903 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8904
8905         * domain.c, domain-internals.h: The JIT infos are now freed by the
8906         JIT info table code.  They are freed immediately if there only a
8907         single JIT info table in circulation.  If there is more, the free
8908         is delayed via a queue.
8909
8910         * threads.c, threads-types.h: New hazard pointer function for
8911         freeing all freeable delayed items in one sitting.
8912
8913 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8914
8915         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8916
8917         * reflection.c (typebuilder_setup_properties): Same.
8918
8919         * reflection.c (typebuilder_setup_events): Same.
8920
8921 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8922
8923         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8924         and use it for allocating memory.
8925
8926         * reflection.c (mono_marshal_spec_from_builder): Same.
8927
8928         * reflection.c: Change code to use new signatures.
8929
8930         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
8931
8932 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8933
8934         * decimal.c (rescale128): Put back one line which was accidently commented
8935         out.
8936         
8937         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
8938         to cause crashes.
8939
8940 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8941
8942         * reflection.c (mono_reflection_generic_class_initialize): Name must
8943         be always malloc'ed so we can free it later on. Do this for field, property
8944         and event.
8945
8946         * metadata.c (free_generic_class): Free field, property and event names.
8947
8948 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8949
8950         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
8951         instead of g_memdup.
8952
8953         * reflection.c (typebuilder_setup_fields): Same.
8954
8955 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8956
8957         * decimal.c (rescale128): Optimize this function a bit more.
8958
8959 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8960
8961         * metadata.c (free_generic_class): Release some memory from
8962         SRE generic classes.
8963
8964 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8965
8966         * reflection.c (mono_image_get_generic_field_token): No reference
8967         to name is kept, free it.
8968
8969         * reflection.c (mono_reflection_generic_class_initialize): Free
8970         more memory of the inflated field.
8971
8972 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8973
8974         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
8975         code.
8976
8977 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8978
8979         * reflection.c (mono_dynamic_image_free): Release memory used by
8980         MonoDynamicImage::array_methods elements.
8981
8982         * reflection.c (assembly_add_win32_resources): Release memory after
8983         encoding.
8984
8985 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8986
8987         * decimal.c (log2_32): Use an optimized version for this function too.
8988         
8989         * decimal.c (log2_64): Fix this on 32 bit machines.
8990
8991 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8992
8993         * class.c (mono_dup_array_type): Implement allocation using a mempool.
8994
8995         * class.c (mono_metadata_signature_deep_dup): Same.
8996
8997         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
8998         a mempool.
8999
9000         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
9001
9002         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
9003
9004         * metadata-internals.h: Added mono_metadata_signature_dup_full.
9005
9006         * class-internals.h: Update signatures to take a MonoMemPool.
9007
9008 2008-06-02  Dick Porter  <dick@ximian.com>
9009
9010         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
9011         * icall-def.h: Add
9012         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
9013         FormatMessage API to get the error text.  Fixes bug 321827.
9014
9015 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9016
9017         * decimal.c: Add some micro optimizations to make decimal operations faster.
9018
9019 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
9020
9021         * reflection.c (method_encode_clauses): Take a mempool
9022         as parameter and use it to allocate the clause array.
9023
9024         * reflection.c (mono_image_get_field_on_inst_token): Free
9025         the inflated type after encoding it.
9026
9027         * reflection.c (mono_dynamic_image_free): Free each element
9028         of MonoDynamicImage::gen_params.
9029
9030         * reflection.c (reflection_methodbuilder_to_mono_method):
9031         Allocate the generic param array from the mempool.
9032         Allocate signature params from the mempool.
9033
9034         * reflection.c (mono_reflection_generic_class_initialize):
9035         Free inflated fields after been used.
9036
9037 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9038
9039         * icall.c: Reapply the memory leak fixes as they no
9040         longer make mono crash.
9041
9042 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9043
9044         * reflection.c (mono_type_get_object): Don't store the suplied
9045         MonoType with type_hash. A caller which pass a type that
9046         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9047         might end with a pointer to freed memory.
9048         The solution is to use byval_arg or this_arg from the associated
9049         MonoClass of the supplied type.
9050
9051 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9052
9053         * icall.c: Revert the rest of the last change as it breaks the build too.
9054
9055 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9056
9057         * icall.c: Revert a leak fix as it's breaking the build.
9058
9059 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9060
9061         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9062
9063 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9064
9065         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9066
9067 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9068
9069         * icall.c: Fix some memory leaks.
9070
9071 2008-05-29  Dick Porter  <dick@ximian.com>
9072
9073         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9074         async socket operations from the pending list when a socket
9075         closes.  Leaving it until the threadpool services the event
9076         exposes a race condition when a socket descriptor is reused.
9077         Fixes bug 377589.
9078
9079 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9080
9081         * object.c: Fix negative index check for array alocation.
9082
9083 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9084
9085         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9086         This check is performed by the verifier for IL created delegates
9087         and by Delegate::CreateDelegate for programatically created ones.
9088         Fixes #372406.
9089
9090 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9091
9092         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9093         Fix code to use mono_array_size_t instead of int.
9094
9095         Based on patch by Luis F. Ortiz.
9096         Contributed under X11 license.
9097         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9098
9099 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9100
9101         * icall.c: Added ves_icall_System_Array_GetLongLength and
9102         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9103         arrays.
9104
9105         * icall.h: Export both new functions.
9106
9107         Based on patch by Luis F. Ortiz.
9108         Contributed under X11 license.
9109         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9110
9111 2008-05-28  Martin Baulig  <martin@ximian.com>
9112
9113         The debugger now requires exactly r103463.
9114
9115         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9116         This version is not supported by the debugger, wait for 72.
9117
9118 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9119
9120         * object.h: Changed array related functions to use
9121         mono_array_size_t instead of guint32. Forgot to commit this file.
9122
9123         Patch by Luis F. Ortiz.
9124         Contributed under X11 license.
9125         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9126
9127
9128 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9129
9130         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9131         don't define it. Use the number literal instead.
9132
9133 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9134
9135         * icall.c: Changed array related functions to use
9136         mono_array_size_t instead of guint32.
9137
9138         * icall.c (ves_icall_System_Array_GetLength): Check for length
9139         overflow under MONO_BIG_ARRAYS.
9140
9141         Based on patch by Luis F. Ortiz.
9142         Contributed under X11 license.
9143         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9144
9145 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9146
9147         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9148
9149         Based on patch by Luis F. Ortiz.
9150         Contributed under X11 license.
9151         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9152
9153 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9154
9155         * object.c, object.h: Changed array related functions to use
9156         mono_array_size_t instead of guint32.
9157
9158         Patch by Luis F. Ortiz.
9159         Contributed under X11 license.
9160         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9161
9162 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9163
9164         * object.h: Introduced mono_array_size_t typedef. This must be used
9165         in all places an array length is expected. This is 64bits wide if
9166         MONO_BIG_ARRAYS is enabled.
9167
9168         Patch by Luis F. Ortiz.
9169         Contributed under X11 license.
9170         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9171
9172 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9173
9174         * security-manager.c class.c: Set the class exception info by calling
9175         mono_class_set_failure ().
9176
9177         * class.c (mono_class_get_exception_data): New accessor function.
9178         (mono_class_set_failure): Store exception_data in the property hash.
9179
9180         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9181         the struct as a property.
9182
9183         * loader.c (mono_get_method_full): Store the lookup result for method
9184         tokens in method_cache, the others in methodref_cache to decrease the memory
9185         usage of hash tables.
9186
9187         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9188         (mono_image_init): method_cache is lazy inited now.
9189
9190         * metadata-internals.h (struct _MonoImage): Change method_cache to
9191         a MonoValueHashTable, add a separate methodref_cache.
9192
9193 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9194
9195         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9196           Double.ToString as exposed by Bug #383531.
9197
9198 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9199
9200         * number-formatter.h: Make some tables static.
9201
9202         * class.c (mono_method_set_generic_container): New accessor function.
9203         (mono_method_get_generic_container): Ditto.
9204
9205         * class-internals.h (struct _MonoMethod): Remove rarely used 
9206         'generic_container' field, store it in the property hash instead. Add 
9207         'is_generic' boolean field instead.
9208
9209         * image.c (mono_image_init): Initialize property_hash.
9210         (mono_image_close): Destroy property_hash.
9211
9212         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9213         hold rarely used fields of runtime structures belonging to this image.
9214
9215         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9216         to get/set method->generic_container.
9217
9218         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9219         generic methods.
9220
9221 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9222
9223         * class.c (mono_class_inflate_generic_method_full): Don't increase
9224         mono_stats.inflated_method_count for methods found in the cache.
9225
9226         * threads.c (mono_thread_request_interruption): Add a comment about 
9227         QueueUserAPC ().
9228
9229 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9230
9231         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9232         interface_offsets_packed table.
9233         
9234         * class.c (mono_class_init): Remove some dead code.
9235
9236         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9237         mono_class_setup_vtable () when CAS is active to detect security problems.
9238
9239 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9240
9241         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9242
9243         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9244         parameters as it's irrelevant for delegate checking.
9245
9246 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9247
9248         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9249
9250         * class.c (mono_class_init): Control the creation of a generic vtable using
9251         a global which is true by default, but set to false by the runtime startup code.
9252         
9253         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9254         Disabled for now since it breaks the embedding API.
9255         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9256         (mono_class_setup_methods): Add a memory barrier.
9257
9258         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9259         when mono_class_init () doesn't compute the generic vtable.
9260         
9261 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9262         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9263         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9264         to support call chains (backtrace) in the stat profiler.
9265         * profiler.c, profiler-private.h: Likewise.
9266
9267 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9268
9269         * generic-sharing.c: Init generic class when a method of it is
9270         requested via a runtime generic context.
9271
9272 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9273
9274         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9275
9276         * reflection.c (mono_type_get_object): Add a FIXME.
9277
9278         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9279
9280         * class.c (mono_class_get_method_by_index): New helper function, returning an
9281         entry in the class->methods array.
9282
9283 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9284
9285         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9286         Avoid creating a generic vtable for generic instances as well.
9287         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9288         generic instances.
9289
9290 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9291
9292         * loader.c (mono_get_method_constrained): Inflate the signature
9293         with class context. Fix #325283.
9294
9295 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9296
9297         * object.c (mono_class_create_runtime_vtable): Add a comment.
9298
9299         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9300         where needed.
9301         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9302         (mono_class_setup_vtable_general): Add an assert.
9303         (mono_class_init): Avoid creating a generic vtable for arrays.
9304
9305         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9306         here, let mono_class_init () do that.
9307
9308         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9309         interfaces in mscorlib.
9310
9311         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9312         interfaces. Add some comments.
9313         (mono_class_init): Call mono_class_setup_methods () here since it is no
9314         longer called by mono_class_setup_vtable ().
9315
9316         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9317         not set in class->vtable.
9318         (mono_class_create_runtime_vtable): Reenable the disabled code.
9319
9320         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9321         now as it causes some test failures.
9322
9323         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9324         if using the vtable trampoline. Also remove some strange code which put the
9325         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9326         stuff as it is no longer needed.
9327
9328 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9329
9330         * pedump.c: Give make --verify all option check code as well.
9331         Using --verify code won't check for metadata now.
9332
9333 2008-05-19  Martin Baulig  <martin@ximian.com>
9334
9335         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9336
9337         * mono-debug.c
9338         (_mono_debug_using_mono_debugger): New global variable; it's set
9339         directly by the debugger, so mono_debug_using_mono_debugger() also
9340         works after attaching.
9341
9342 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9343
9344         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9345         as we do double checked locking on MonoClass::runtime_info and
9346         MonoClassRuntimeInfo::domain_vtables.
9347
9348 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9349
9350         * debug-helpers.c (print_field_value): Fix a warning.
9351
9352 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9353
9354         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9355         set in the AOT case.
9356
9357 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9358
9359         * class.c (mono_class_setup_vtable_general): Use memory barriers
9360         as we do double checked locking on MonoClass::vtable.
9361
9362 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9363
9364         * reflection.c (resolve_object): Inflate only if the generic context
9365         is not null. Fixes #389886.
9366
9367 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9368
9369         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9370         instead of g_free.
9371
9372         Code is contributed under MIT/X11 license.
9373
9374 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9375
9376         * class.c: Revert unrelated change.
9377
9378 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9379
9380         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9381         a generic instantiation, use mono_class_from_mono_type instead of playing
9382         with MonoType directly.
9383
9384 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9385
9386         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9387         checks must ignore generic instantiations, so mono_class_has_parent is not
9388         suitable. Fixes #390128.
9389
9390 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9391
9392         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9393         it to avoid registering tokens during metadata generation. Fixes #390023.
9394
9395 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9396
9397         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9398         consistent.
9399
9400         Contributed under MIT/X11 license.
9401
9402 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9403
9404         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9405         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9406         to fixup the EXE image.
9407         (mono_cleanup): Use mono_close_exe_image.
9408         (mono_close_exe_image): New function.
9409         * image.c: Include "marshal.h".
9410         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9411         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9412         counting when the image is loaded outside of mono_image_open_full. Set status
9413         based on GetLastError.
9414         * coree.c: Include required headers. Add init_from_coree.
9415         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9416         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9417         (_CorExeMain): Set init_from_coree.
9418         (CorExitProcess): Only call ExitProcess for now.
9419         (CorBindToRuntimeEx): New stub implementation.
9420         (CorBindToRuntime): New function.
9421         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9422         (MonoFixupExe): ILONLY executables require no fixups.
9423         (mono_set_act_ctx): New function to set activation context.
9424         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9425         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9426         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9427         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9428         as MONO_INTERNAL.
9429         * domain-internals.h: Add mono_close_exe_image.
9430
9431         Contributed under MIT/X11 license.
9432
9433 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9434
9435         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9436         size for generic param and event tables. Fixes #388977.
9437
9438 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9439
9440         * loader.c (mono_method_signature): Use memory barriers because of the double
9441         checked locking pattern.
9442
9443         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9444         aborting or aborted as well. Fixes #376391.
9445         
9446         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9447         existing runtime state in the Suspend handler during shutdown.
9448
9449 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9450
9451         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9452
9453         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9454         which are starting up or shutting down.
9455
9456         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9457         this function never returns if the runtime is already shutting down.
9458
9459         * icall.c (ves_icall_System_Environment_Exit): Update after 
9460         mono_threads_set_shutting_down () signature change.
9461         
9462 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9463
9464         * class.c: Added can_access_instantiation to verify if the instantiation
9465         is visible. Fix access check for nested types as they returned TRUE
9466         before doing type and generic instantiation visibility checks.
9467
9468 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9469
9470         * reflection.c (mono_reflection_create_generic_class): The created type
9471         must have a different container from its TypeBuilder. Otherwise they
9472         will end sharing generic arguments, which is wrong.
9473
9474         Due to the sharing, making a generic instance of the created type using
9475         the TypeBuider generic arguments resulted in the generic type definition
9476         been returned, which is wrong as well.
9477
9478         As a bonus the code was leaking the type_params array. This memory should
9479         be allocated from the image mempool.
9480
9481         This fixes bug #354047.
9482
9483 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9484
9485         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
9486         to here         as they are now used in assembly.c new code.
9487         Added a skipverification flag to MonoAssembly.
9488         New internal function mono_assembly_has_skip_verification.
9489
9490         * assembly.c: New function mono_assembly_has_skip_verification. It checks
9491         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
9492         part of #387274.
9493
9494 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9495
9496         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
9497         needed. Fixes #387034.
9498
9499         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
9500
9501 2008-05-06  Miguel de Icaza  <miguel@novell.com>
9502
9503         * assembly.c (mono_assembly_load_reference): Prevent crash while
9504         disassembling Silverlight 2.0 executables while we still do not
9505         have GACed libraries.
9506
9507 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9508
9509         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9510
9511 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9512
9513         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9514         of the dynamic case. Fixes #387404.
9515
9516 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9517
9518         *verify.c (mono_verifier_is_class_full_trust): If under
9519         verify_all and the verifier mode was not set, only
9520         gac and corlib types are fulltrust. This makes --verify-all
9521         usable to detect unverifiable code, which is the expected
9522         use case.
9523
9524 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9525
9526         * verify.h: Ops, commited the header with debug
9527         enabled.
9528
9529 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9530
9531         * verify.c (merge_stack): Use the new value on unverifiable
9532         stack merges.
9533
9534         * verify.c (verify_type_compatibility_full): Comparison
9535         of nullable types can't use mono_class_is_assignable_from.
9536
9537         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
9538         that makes all verification errors be reported.
9539
9540         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
9541         mono_method_verify.
9542
9543 2008-05-05  Robert Jordan  <robertj@gmx.net>
9544
9545         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
9546         support for value types. See #386415.
9547
9548         * object.c: comments.
9549
9550         Code is contributed under MIT/X11 license.
9551
9552 2008-05-05  Martin Baulig  <martin@ximian.com>
9553
9554         * debug-mono-symfile.h
9555         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
9556         for old pre-terrania symbol files.
9557
9558 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9559
9560         * mono-config.c: Add ppc64 architecture.
9561
9562         Code is contributed under MIT/X11 license.
9563
9564 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9565
9566         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
9567           PPC64 uses function descriptors as well.
9568
9569         Code is contributed under MIT/X11 license.
9570
9571 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
9572
9573         * object.c (compute_class_bitmap): Ignore literal static fields.
9574
9575         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
9576         var has an invalid format.
9577         (describe_ptr): Add some sanity checks for the vtable.
9578         (add_nursery_frag): Clear unused nursery fragments.
9579         (major_collection): Clear all remaining nursery fragments.
9580
9581 2008-05-03  Robert Jordan  <robertj@gmx.net>
9582
9583         * image.c, metadata-internals.h: add thunk_invoke_cache.
9584
9585         * marshal.c, marshal.h: implement
9586         mono_marshal_get_thunk_invoke_wrapper ().
9587
9588         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
9589
9590         Code is contributed under MIT/X11 license.
9591
9592 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9593
9594         * verify.c (do_leave): Empty the stack.
9595
9596 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9597
9598         * class.c (mono_class_is_assignable_from): Variance
9599         doesn't work between reference and value types. For example,
9600         given type C<T+>, C<int32> is not assignable to C<object>.
9601         Break the argument checking loop on first error. 
9602
9603 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
9604
9605         * icall.c : base64_to_byte_array() needs some more strict
9606           check for sequence of '=' characters. Patch by Santa
9607           Marta (http://deee.g.hatena.ne.jp/santamarta).
9608
9609           Contributed under MIT/X11 license.
9610           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
9611
9612 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
9613
9614         * domain.c: Disable LoadLibrary support to fix Win32 build.
9615
9616         Code is contributed under MIT/X11 license.
9617
9618 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
9619
9620         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
9621         to help with cache behaviour.
9622
9623 2008-05-01  Miguel de Icaza  <miguel@novell.com>
9624
9625         * appdomain.c (mono_domain_from_appdomain): Add new accessor
9626         method. 
9627
9628 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
9629
9630         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
9631
9632 2008-05-01  Dick Porter  <dick@ximian.com>
9633
9634         * process.c (process_get_fileversion): Only pass 16 bits of
9635         language ID to VerLanguageName.  Fixes bug 381204.
9636
9637 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9638
9639         * verify.c (mono_method_verify): Fix the comparison
9640         operator for code bounds check.
9641
9642 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9643
9644         * verify.c (mono_method_verify): Check the bounds of
9645         all access of the code array.
9646
9647 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
9648
9649         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
9650
9651 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
9652
9653         * image.c (mono_image_strong_name_position): Fix return value when the rva is
9654         not valid.
9655
9656 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
9657
9658         * loader.c (mono_get_method_from_token, mono_method_signature): Add
9659         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
9660         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
9661         fixup main EXE images when using mono.exe for mixed-mode assembly support.
9662         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
9663         mono_runtime_load.
9664         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
9665         runtime initialization from metadata.
9666         * assembly.c: Remove obsolete ceGetModuleFileNameA.
9667         (mono_set_rootdir): Use mono_get_module_file_name.
9668         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
9669         handles.
9670         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
9671         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
9672         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
9673         MonoCLIImageInfo. Add support for module handles.
9674         (load_cli_header): Update mono_cli_rva_image_map signature.
9675         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
9676         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
9677         (mono_image_rva_map): Add support for module handles.
9678         (mono_image_ensure_section_idx): Add support for module handles.
9679         (mono_image_close): Add support for module handles.
9680         (do_load_header): Add support for module handles.
9681         (mono_image_open_from_module_handle): New function for internal use.
9682         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
9683         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
9684         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
9685         handles.
9686         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
9687         * image.h: Add mono_image_fixup_vtable.
9688         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
9689         support.
9690         * coree.h: New file.
9691         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
9692         unsupported native code.
9693         (mono_marshal_set_callconv_from_modopt): New function splitted from
9694         mono_marshal_get_managed_wrapper.
9695         (mono_marshal_get_managed_wrapper): Use
9696         mono_marshal_set_callconv_from_modopt.
9697         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
9698         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
9699         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
9700         that results in a deadlock when the runtime is loaded in _CorDllMain.
9701         * Makefile.am: Add coree.c and coree.h.
9702
9703         Contributed under MIT/X11 license.
9704
9705 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9706
9707         * generic-sharing.c: Search for type arguments in array element
9708         types as well.
9709
9710 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9711
9712         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9713
9714         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9715
9716         * object.c: Don't setup the RGCTX when the vtable is created,
9717         because we're setting it up lazily now.
9718
9719 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9720
9721         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9722         64 bit support.
9723
9724 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9725
9726         * verify.c (verify_class_for_overlapping_reference_fields): 
9727         If class is under fulltrust allow reference types to overllap
9728         if they have the same RVA.
9729
9730 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9731
9732         * pedump.c: Added new flag valid-only, that makes the verifier
9733         behaves just like --security=validil. It won't fail type load
9734         due to unverifiable restrictions.
9735
9736 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9737
9738         * class-internals.h (struct MonoMethod): Added a verification_success
9739         field to cache verifier executions. Reduced MonoMethod:slot size by
9740         one bit.
9741
9742 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9743
9744         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9745         instead of a 'vt' argument to save an indirection and to allow these to be used
9746         for valuetypes.
9747         (scan_vtype): New helper function to scan an area using a gc descriptor.
9748         (mono_gc_wbarrier_value_copy): Implement this.
9749         (handle_remset): Add support for REMSET_VTYPE.
9750         (find_in_remset_loc): Ditto.
9751         (mono_gc_base_init): Allow some debugging options to be controlled through the
9752         use of the MONO_GC_DEBUG env variable.
9753         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9754         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9755
9756 2008-04-23  Martin Baulig  <martin@ximian.com>
9757
9758         * domain.c (mono_domain_create): Move the call to
9759         mono_debug_domain_create() down, after allocating the domain id.
9760
9761 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9762
9763         verify.c (verify_class_for_overlapping_reference_fields): Skip
9764         static fields while verifying for overlapping fields as they
9765         don't matter at all.
9766
9767 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9768
9769         * domain-internals.h: added a declaration of
9770         mono_make_shadow_copy.
9771
9772         * assembly.c (mono_assembly_open_full): shadow copying of
9773         assemblies moved to here, so that all the assemblies within the
9774         application domain's private binary directories can be
9775         processed. Fixes bug #380546
9776
9777         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9778         mono_make_shadow_copy and made non-static. The decision whether
9779         to shadow-copy an assembly is made based on its location - it's
9780         copied if it's in one of the private application domain binary
9781         directories and its different to the target file in the shadow
9782         directory. Fixes bug #380546
9783
9784 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9785
9786         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9787
9788         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9789         types.
9790
9791         * reflection.c (mono_image_create_token): Handle 
9792         Method/ConstructorOnTypeBuilderInst.
9793         (resolve_object): Ditto.
9794         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9795         so it can be called from resolve_object. Also handle the case when the inflated
9796         class already has its methods setup.
9797
9798 2008-04-21  Martin Baulig  <martin@ximian.com>
9799
9800         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9801
9802 2008-04-20  Geoff Norton  <gnorton@novell.com>
9803
9804         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9805         pointer dereference.
9806
9807 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9808
9809         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9810         portability API to look up the assembly file. Fixes behavior in
9811         situations when the application has a bin/ directory, but the
9812         assembly search patch refers to Bin/ (and thus the requested file
9813         name is Bin/SomeLibrary.dll). Fixes bug #379888
9814
9815 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9816
9817         verify.c (mono_type_is_generic_argument): Extracted this check
9818         from a dozen places to here.
9819
9820         verify.c: Fixed all issues related to boxing generic arguments
9821         and their constraints.
9822
9823 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9824
9825         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9826
9827 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9828
9829         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9830         isn't finished yet. Fixes #363447.
9831
9832 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9833
9834         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9835         Fixes #346419.
9836
9837 2008-04-13  Jb Evain  <jbevain@novell.com>
9838
9839         * domain.c: update the 2.1 profile versions.
9840         Merged from the Moonlight 2 branch.
9841
9842 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9843
9844         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9845         mscorlibs for the non-refonly case as well.
9846
9847         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
9848         in mono_assembly_load_from_full (). Fixes #378924.
9849
9850 2008-04-11  Geoff Norton  <gnorton@novell.com>
9851
9852         * icall.c: The global extern environ doesn't exist on Mac.  We
9853         need to call NSGetEnviron instead.
9854
9855 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9856
9857         verify.c: Add generic method constraint verification.
9858
9859 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9860
9861         class.c (mono_class_inflate_generic_method_full): Add a long
9862         explanation to the is_mb_open hack. Remove the FIXME.
9863
9864 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9865
9866         * verify.c (mono_method_verify): Mark all unknown opcodes
9867         as invalid. Mark jmp as unverifiable.
9868
9869 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9870
9871         * verify.c: Add code to do type constraint verification on class instances.
9872
9873         * verify.c (mono_verifier_verify_class): Use the type constraint 
9874         verification code.
9875
9876 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9877
9878         * class.c (mono_class_get_field_default_value): Don't pass cindex
9879         as hint to mono_metadata_get_constant_index. The local is not initialized
9880         and should contain garbage most of the time. This could only work
9881         with a lot of luck.
9882
9883 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9884
9885         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9886
9887 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9888
9889         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9890
9891         * class.c (mono_class_from_generic_parameter): Save the token of the
9892         generic param in MonoClass::sizes.generic_param_token.
9893
9894         * reflection.c (mono_custom_attrs_from_class): If the class type is
9895         VAR or MVAR retrieve the attributes of the generic param.
9896
9897 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9898
9899         * class.c (mono_class_init): Do class verification if the verifier
9900         is enabled.
9901
9902 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9903
9904         * verify-internal.h: Added mono_verifier_verify_class.
9905
9906         * verify.c: Added mono_verifier_verify_class. It checks for
9907         classes with explicit layout that have overlapping reference fields.
9908
9909         * pedump.c: Init the verifier state prior to verification. Fixed
9910         command line arguments.
9911
9912 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9913
9914         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9915
9916 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9917
9918         * verify-internals.h: Fix a warning.
9919
9920 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9921
9922         * verify-internals.h: New header with the verifier configuration
9923         extracted from mini.c.
9924
9925         * verify.c: Implemented the new functions exported by verify-internals.h.
9926
9927 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9928
9929         * verify.c: Add proper verification of ckfinite.
9930
9931 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9932
9933         * verify.c (do_conversion): Improved error message to something
9934         more meanfull.
9935
9936         * verify.c (check_is_valid_type_for_field_ops): Fix to work
9937         with primitive types.
9938
9939 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9940
9941         * verify.c: Added tail prefix checking. Marked icall
9942         as unverifible.
9943
9944 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9945
9946         * verify.c: Fix the detection of branches to the middle
9947         of an instruction.
9948
9949 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
9950
9951         * verify.c: Implemented verification of volatile. and
9952         unaligned. prefix. Check if a type is valid after retrieving it.
9953
9954 2008-04-01  Dick Porter  <dick@ximian.com>
9955
9956         * process.c (process_get_fileversion): If there's no string block,
9957         set the file language to en_US.  Fixes the other new part of bug
9958         374600.
9959
9960 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
9961
9962         * class.c: New functions mono_method_can_access_field_full and
9963         mono_method_can_access_method_full. They perform type visibility
9964         and type site check.
9965
9966         * class-internal.h: Added exported functions.
9967
9968         * verify.c: Use new functions to implement proper visibility checks.
9969
9970 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
9971
9972         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
9973
9974 2008-03-28  Dick Porter  <dick@ximian.com>
9975
9976         * process.c (process_get_fileversion): Use the first language ID
9977         we see, rather than insisting on an invariant language.  Fixes bug
9978         374600.
9979
9980 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
9981
9982         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
9983         the streams to fix reading of invalid memory later.
9984
9985         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
9986         to ease debugging.
9987
9988 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
9989
9990         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
9991         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
9992
9993 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
9994         * threads.h: Added MonoThreadManageCallback type and
9995         mono_thread_set_manage_callback prototype
9996         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
9997         (used to store the mono_thread_manage callback).
9998         * threads.c: Added mono_thread_set_manage_callback, and handle
9999         "MonoThread->manage_callback" in build_wait_tids.
10000
10001 2008-03-26  Dick Porter  <dick@ximian.com>
10002
10003         * process.c (process_get_fileversion): Set FileVersionInfo strings
10004         to Empty when the resource doesn't have the particular info.
10005         Fixes bug 355717.
10006
10007 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
10008
10009         * verify.c (mono_method_verify): Proper prefix validation.
10010
10011 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10012
10013         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
10014         itself in a separate argument instead of throwing them. Fixes #373448.
10015
10016         * appdomain.c: Bump corlib version.
10017
10018 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
10019
10020         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
10021
10022 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
10023
10024         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
10025         version macros.
10026
10027 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10028
10029         * generic-sharing.c, class-internals.h: Code for putting
10030         reflection types into the runtime generic context.
10031
10032 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
10033
10034         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
10035         Fixes #340662. 
10036
10037
10038 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
10039
10040         * verify.c (VerifyContext): Added instruction prefix data to the struct.
10041
10042         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10043
10044         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10045
10046         * verify.c (do_cast): Let the result value keep the boxed status.
10047
10048         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10049
10050 2008-03-17  Jb Evain  <jbevain@novell.com>
10051
10052         * reflection.c: when running on a 2.0 runtime, emit
10053         unconditionally the #~ header version as 2.0, and the
10054         CLI header version as 2.5, for symmetry's sake with csc.
10055
10056 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10057
10058         * class.c: Remove the unused cache_interface_offsets stuff.
10059
10060         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10061         profiler.c: Fix warnings.
10062
10063 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10064
10065         * generic-sharing.c, class-internals.h: Support for putting
10066         methods into the runtime generic context.
10067
10068 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10069
10070         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10071         classes which are generic instances of not-yet finished typebuilders. Fixes
10072         #351172.
10073
10074         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10075
10076 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10077
10078         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10079
10080         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10081         field, replace it with a hash table in MonoDynamicImage.
10082
10083         * reflection.c (inflate_mono_method): Access the generic definition object from
10084         image->generic_def_objects instead of imethod->reflection_info.
10085
10086         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10087
10088         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10089         
10090         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10091         function in reflection.c so it is easier to keep in sync with the dynamic image
10092         creation code.
10093
10094         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10095         mono_image_close ().
10096
10097 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10098
10099         * class.c (mono_class_generic_sharing_enabled): Disable generic
10100         sharing for all architectures except AMD64 and x86 to fix build.
10101
10102 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10103
10104         * verify.c: Use the generic definition MonoGenericContext when available.
10105         Remove code for checking generics instance compatibility in favor of
10106         mono_class_is_assignable_from.
10107
10108 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10109
10110         * marshal.c, marshal.h, metadata-internals.h, image.c,
10111         wrapper-types.h: New wrapper for invoking a shared static method
10112         without having to pass the runtime generic context argument.
10113
10114 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10115
10116         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10117
10118 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10119
10120         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10121         
10122         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10123         create a token from a FieldOnTypeBuilderInst.
10124         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10125         (resolve_object): Ditto.
10126
10127         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10128         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10129
10130 2008-03-14  Martin Baulig  <martin@ximian.com>
10131
10132         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10133
10134         * debug-mono-symfile.h
10135         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10136         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10137
10138 2008-03-10  Martin Baulig  <martin@ximian.com>
10139
10140         * debug-mono-symfile.h
10141         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10142         `lexical_block_table_offset'.
10143         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10144         `lexical_blocks'.
10145         (MonoSymbolFile): Added `version'.
10146
10147         * mono-debug.h
10148         (MonoDebugLexicalBlockEntry): Removed.
10149         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10150         `lexical_blocks'.
10151
10152         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10153         blocks here; the debugger now does this internally.
10154
10155 2008-02-27  Martin Baulig  <martin@ximian.com>
10156
10157         * object.c (mono_runtime_exec_main): Call
10158         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10159         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10160
10161 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10162
10163         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10164         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10165
10166 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10167
10168         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10169         ldftn with a virtual method.
10170
10171 2008-03-13  Geoff Norton  <gnorton@novell.com>
10172
10173         * decimal.c:  Only include memory.h if the platform has it.
10174
10175 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10176
10177         * assembly.c, class.c, metadata-internals.h: make sure public key
10178         tokesns are compared in a case-insensitive way. Also, all
10179         the lookups in the GAC use a lowercase public key token
10180         (gaacutil already does the lowercasing on install). Fixes
10181         bug #369541.
10182
10183 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10184
10185         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10186         and return value.
10187
10188 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10189
10190         * image.c: when someone loads a mscorlib from a file, return the
10191         currently loaded mscorlib (fixes bug #369253).
10192
10193 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10194
10195         * class.c: handle types with no parents by forcing them to have
10196         System.Object as a parent and marking them as broken (this currently
10197         allows the first part of bug #369173 to work as well, likely because
10198         we don't check for typeload exceptions everywhere yet).
10199
10200 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10201
10202         * class.c: more complete check that types belong to corlib
10203         (fixes second part of bug #369173).
10204
10205 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10206
10207         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10208           "inline" to "__inline" before including mono-membar.h.
10209           
10210         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10211           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10212           MSVC builds.
10213
10214         Contributed under MIT/X11 license.
10215
10216 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10217
10218         * verify.c (do_invoke_method): Remove return type validation.
10219
10220         * verify.c (do_ret): Do return type validation at return site instead of
10221         call site.
10222
10223 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10224
10225         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10226
10227         * verify.c: Some todos cleaned and improved a few error messages.
10228
10229 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10230
10231         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10232
10233 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10234
10235         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10236         system types correctly.
10237
10238         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10239         function.
10240
10241 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10242
10243         * assembly.c (build_assembly_name): Fix a warning.
10244
10245 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10246
10247         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10248         the called function takes an object type argument. Fixes storing or
10249         valuetypes across remoting as well as reducing memory usage.
10250         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10251         stfld_remote wrapper caches.
10252
10253 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10254
10255         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10256         is not found.
10257
10258         * reflection.c (mono_image_register_token): New helper function to save
10259         a token->object mapping.        
10260
10261         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10262         managed code.
10263
10264         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10265         one dimension arrays. Fixes #367670.
10266         (mono_reflection_get_type_internal): Ditto.
10267
10268 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10269
10270         * marshal.c: mono_load_remote_field_new() always returns object.
10271         so use the proper signature (fixes bug #366445).
10272
10273 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10274         
10275         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10276         add an 'inline_failure' flag instead.
10277
10278 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10279
10280         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10281         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10282         contains the location of "this", used for exception handling.
10283
10284 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10285
10286         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10287         their size on all platforms for perf reasons.
10288
10289 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10290
10291         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10292         object-internal.h
10293
10294         * object-internal.h: Same.
10295
10296 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10297
10298         * reflection.h: Fix the build I just broke.
10299
10300 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10301
10302         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10303         Test if a token is valid, this remove explicit usage of 
10304         MonoDynamicImage::tokens from the verifier code.
10305
10306         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10307
10308         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10309         instead of direct access to MonoDynamicImage::tokens.
10310
10311 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10312
10313         * verify.c (token_bounds_check): Fix the build I just broke.
10314
10315 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10316
10317         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10318
10319         * verify.c (verifier_load_method): Fixed the errors message.
10320
10321         * verify.c (mono_method_verify): Fixed a debug message.
10322
10323 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10324
10325         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10326         mono-perfcounters.h, class-internals.h: support for predefined
10327         writable counters, query of categories and counters, bugfixes.
10328
10329 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10330
10331         * verify.c (do_refanytype): Verify the refanytype opcode.
10332
10333         * verify.c (mono_method_verify): Use do_refanytype.
10334
10335 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10336
10337         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10338
10339         * verify.c (mono_method_verify): Use do_mkrefany.
10340
10341 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10342
10343         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10344         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10345         implementation.
10346
10347 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10348
10349         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10350         the type load exception.
10351
10352 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10353
10354         * verify.c: Added a few FIXME for method signatures
10355
10356         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10357         of mono_method_get_signature and get vararg call working. Removed unused
10358         checks for return value.
10359
10360         * verify.c (do_refanyval): Verify the refanyval opcode.
10361
10362         * verify.c (mono_method_verify): Implemented verification of arglist and
10363         use do_refanyval.
10364
10365 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10366
10367         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10368         vtypes to marshal.c.
10369
10370         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10371         it works for AOT as well.
10372
10373 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10374
10375         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10376         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10377         the system time is adjusted.
10378
10379 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10380
10381         * icall.c, icall-def.h: use the new time functions (fixes the
10382         non-monotonic behaviour of TickCount).
10383
10384 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10385
10386         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10387         it breaks the build.
10388         
10389         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10390         cattr is not finished yet.
10391
10392 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10393
10394         * verify.c: Proper token validation for field, method and type.
10395
10396 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10397
10398         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10399
10400         * loader.c (method_from_memberref): Generate type load error instead of method missing
10401         if the type is not found.
10402
10403 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10404
10405         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10406         some of the conversions caused the generation of a marshal directive exception.
10407
10408 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10409
10410         verify.c: Report which exception should be thrown by the JIT.
10411         Added a lot of FIXME notes.
10412
10413 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10414
10415         * generic-sharing.c: Runtime generic context slots are not
10416         instantiated on init anymore.  Instead, provide function to do the
10417         instantiating on demand.
10418
10419         * class-internals.h: Added vtable to runtime generic context.
10420         Macros for encoding direct and indirect slot offsets in one
10421         guint32.
10422
10423 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10424
10425         * object.c, generic-sharing.c: Moved some generic sharing code
10426         from object.c to generic-sharing.c.
10427
10428         * generic-sharing.c: Added support for extensible runtime generic
10429         context.
10430
10431         * metadata-internals.h: Two new hash tables in MonoImage for
10432         extensible runtime generic context support.
10433
10434         * domain.c: Unregister generic vtables upon domain unloading.
10435
10436         * image.c: Destroy new hash tables upon image unloading.
10437
10438         * metadata.c: Unregister generic subclasses upon image unloading.
10439
10440         * class-internals.h: New data structure for runtime generic
10441         context template.  New fields in the runtime generic context for
10442         extensible part.
10443
10444         * Makefile.am: Added generic-sharing.c.
10445
10446 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10447
10448         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10449         there is a pending loader exception, raise it.
10450
10451         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10452         same.
10453
10454         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10455         same.
10456
10457         Fixes #363450.
10458
10459 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10460
10461         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10462
10463         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10464         
10465         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10466         ref-only requests for compatibility with MS.
10467
10468 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10469
10470         * reflection.c (mono_custom_attrs_from_method): Don't silently
10471         return an empty list for generic method instances.
10472         (mono_custom_attrs_from_param): Likewise.
10473
10474 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
10475             Raja R Harinath  <harinath@hurrynot.org>
10476
10477         Fix #354757
10478         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
10479         * class.c (mono_class_inflate_generic_method_full): Initialize it
10480         when a fully-open method is instantiated.
10481         * metadata.c (inflated_method_equal, inflated_method_hash): Update
10482         to new field.
10483         * reflection.c (inflate_mono_method): Don't create a temporary context.
10484
10485 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10486
10487         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10488         Compute correct value, to prepare for imethod->reflection_info going away.
10489
10490 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10491
10492         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
10493
10494 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10495
10496         * verify.c: Implement skip visibility flag.
10497
10498 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10499
10500         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
10501         which contains an extra field to tell the kind of exception that should be thrown.
10502
10503         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
10504
10505 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
10506
10507         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10508         'method' is updated.
10509
10510 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10511
10512         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10513         explicit layout as well. Fixes #360375.
10514
10515 2008-02-11  Geoff Norton  <gnorton@novell.com>
10516
10517         * loader.c: Guard and dereference against inflated generic methods
10518
10519 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
10520
10521         * class.c: Include Retargetable spec in assembly name.
10522         * assembly.c: Always include PublicKeyToken spec in assembly name
10523         (with value "null" if assembly is not signed), and include
10524         Retargetable spec.
10525         * icall-def.h: Added icall for Assembly.get_fullname.
10526         * icall.c: Added icall returning the fullname of an assembly.
10527
10528 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
10529
10530         * class.c (mono_class_setup_vtable_general): Add a missing call to
10531         mono_class_setup_methods () which is needed in the AOT case.
10532
10533 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
10534
10535         * verify.c (mono_type_get_stack_name): Added. Return the name for the
10536         stack type of the given MonoType.
10537
10538         * verify.c (verify_type_compatibility_full): Handle the void type.
10539
10540         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
10541         way stack merging works.
10542
10543         * verify.c (store_local): Improved verification message.
10544
10545         * verify.c (do_branch_op): If the merging is invalid, the method
10546         is unverifiable and not invalid. Improved error message.
10547
10548         * verify.c (merge_stacks): Properly merge a boxed valuetype and
10549         a reference type diferent than System.Object. Improved error
10550         message.
10551
10552 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
10553
10554         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
10555
10556         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
10557         type of an enum even if the argument is byref.
10558
10559         * verify.c: Replace all explicit uses of enumtype and enum_basetype
10560         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
10561
10562         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
10563
10564         *verify.c (verify_type_compatibility_full): Make enum types
10565         compatible with their base types.
10566
10567         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
10568         types are compatible for the special case of a boxed valuetype and
10569         System.Object.
10570
10571         * verify.c (verify_stack_type_compatibility): The function
10572         is_compatible_boxed_valuetype was extracted from here.
10573
10574         * verify.c (push_arg): Only set ctx->has_this_store if the method
10575         is not static.
10576
10577         * verify.c (do_ldelem): Fixed a typo in an error message and added
10578         strict check for mixing int32 and native int as the array type
10579         and ldelem type.
10580
10581         * verify.c (merge_stacks): Consider boxed valuetypes in the
10582         compatibility checks.
10583
10584 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
10585         * profiler.h: (MonoGCEvent): Added start-stop the world events.
10586
10587 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10588         *class.c: use_new_interface_vtable_code: renamed the env var to have
10589         a "MONO_" prefix, and fix the logic to enable it by default.
10590
10591 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10592         *class.c:
10593         mono_class_setup_vtable_general: rewrote the way in which interface
10594         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
10595         makes the code more maintainable.
10596         For now the old code is still there, and can be activated setting
10597         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
10598
10599 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
10600
10601         * verify.c: guarded some debug functions around and #ifdef.
10602
10603         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
10604
10605 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
10606
10607         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
10608         changes for now since they seem to break too many things.
10609
10610 2008-02-05  Mark Probst  <mark.probst@gmail.com>
10611
10612         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
10613         mono_marshal_find_nonzero_bit_offset): Added macro and function
10614         for finding the byte- and bit-offset of a bitfield within a
10615         struct.
10616
10617 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
10618
10619         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
10620         (mono_marshal_get_struct_to_ptr): Ditto.
10621
10622         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
10623         cctor_signature.
10624
10625 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
10626
10627         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
10628         between methods for non-corlib types.
10629
10630 2008-02-02  Geoff Norton  <gnorton@novell.com>
10631
10632         * loader.c (mono_method_get_param_names): Populate the parameter name for 
10633         generic parameters as well. (Fixes #342536)
10634
10635 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
10636
10637         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
10638
10639         * verify.c (do_invoke_method): Fix for calling with byref structs.
10640
10641         * verify.c (do_cast): push a boxed value type based on the type token and not
10642         the type of stack.
10643
10644 2008-01-31  William Holmes  <billholmes54@gmail.com>
10645
10646         * process.c (process_module_string_read): Check the size returned form 
10647           VerQueryValue to avoid out of memory exception. 
10648
10649 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
10650
10651         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10652         Handle properly modules which are not in the moduleref table. Fixes
10653         #356938.
10654
10655 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
10656
10657         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
10658         the dynamic case which is now in managed code.
10659         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
10660
10661         * marshal.c (mono_string_to_bstr): Fix a warning.
10662         (init_com_provider_ms): Ditto.
10663
10664         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
10665
10666         * exception.c (mono_get_exception_out_of_memory): New helper function.
10667
10668 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
10669
10670         * marshal.c: Add support for BSTR marshalling
10671         using other COM systems.
10672
10673         Code is contributed under MIT/X11 license.
10674
10675 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10676
10677         * object.c (mono_runtime_invoke_array): reverted previous
10678         commit as it breaks the build.
10679
10680 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10681
10682         * object.c (mono_runtime_invoke_array): Verify arguments for
10683         invalid types. Fixes #348522.
10684
10685 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10686
10687         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
10688         non-final virtual calls using call. 
10689
10690         * verify.c (do_invoke): fixed some TODOs.
10691
10692         * verify.c (push_arg): set has_this_store for "ldarga 0".
10693
10694 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
10695
10696         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
10697         which belong to an inflated class. Fixes #356531.
10698
10699 2008-01-26  Robert Jordan  <robertj@gmx.net>
10700
10701         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10702         which resort to FindFirstFile when a certain error condition
10703         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10704         Code is contributed under MIT/X11 license.
10705
10706 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10707
10708         * marshal.c (emit_marshal_string): Fix out string marshalling
10709         to use specified encoding. Fixes #323900.
10710
10711         Code is contributed under MIT/X11 license.
10712
10713 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10714
10715         * class.c (mono_class_inflate_generic_method_full): Don't modify
10716         iresult->context after cache check.
10717
10718 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10719
10720         * class.c (mono_class_inflate_generic_method_full): Change the
10721         struct assignments to memcpy for better visibility and add some comments.
10722
10723 2008-01-23  Dick Porter  <dick@ximian.com>
10724
10725         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10726         procedure, and make it work on windows.
10727
10728 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10729
10730         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10731         a MonoReflectionTypeBuilder since it is always of that type.
10732
10733         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10734
10735         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10736
10737         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10738         
10739         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10740
10741         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10742
10743         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10744         instantiations from the type cache.
10745
10746 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10747
10748         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10749
10750         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10751
10752 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10753
10754         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10755
10756         * verify.c (mono_method_verify): removed old TODO
10757
10758 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10759
10760         * verify.c (do_newobj): add visibility check.
10761
10762 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10763
10764         * verify.c (do_load_function_ptr): add visibility check.
10765
10766 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10767         *class.c:
10768         mono_generic_class_get_class: hook profiler events.
10769         mono_field_get_offset: added to support heap-shot in the new profiler.
10770         *class.h: exported mono_field_get_offset.
10771         * reflection.c:
10772         mono_reflection_setup_internal_class: hook profiler events.
10773
10774 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10775
10776         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10777         argument here too and use it to avoid checking for pending exceptions if 
10778         possible.
10779
10780 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10781
10782         * assembly.c (build_assembly_name): add arg for passing the assembly
10783         flags. Do not consider a PublicKey with value "null" valid.
10784         (mono_assembly_name_parse_full): added boolean argument that will be
10785         set if the assembly name contains a PublicKeyToken spec. Added support
10786         for the Retargetable spec for which only Yes or No are allowed as valid
10787         value. Consider assembly name invalid if Retargetable spec is set, but
10788         either version, culture or public key (token) are not specified.
10789         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10790         with implementation in assembly.c.
10791         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10792         from MonoAssemblyName.
10793         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10794         introduced argument for mono_assembly_name_parse_full to know if the
10795         assembly name has a PublicKeyToken spec, and if it has instruct
10796         fill_reflection_assembly_name to use default value for keyToken (if
10797         PublicKeyToken is null).
10798
10799 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10800
10801         * verify.c (mono_method_verify): fixed ovf ops with
10802         float values. They are unverifiable now.
10803
10804 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10805
10806         * class.c (set_failure_from_loader_error): add BadImageException to the
10807         list of exceptions that can cause a type to fail to load.
10808
10809         * class.c (mono_class_get_exception_for_failure): same.
10810
10811 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10812
10813         * verify.c (in_any_exception_block): added, check if offset
10814         is part of any exception handling clause.
10815
10816         * verify.c (get_stack_type): added VAR and MVAR types.
10817
10818         * verify.c (do_stobj): better error messages.
10819
10820         * verify.c (do_cpobj): added, check cpobj.
10821
10822         * verify.c (do_initobj): added, check initobj.
10823
10824         * verify.c (do_sizeof): added, check sizeof.
10825
10826         * verify.c (do_localloc): added, check localloc.
10827
10828         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10829
10830 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10831
10832         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10833         save_lmf/restore_lmf opcodes.
10834
10835         * threads.c (mono_threads_install_notify_pending_exc): New function to
10836         install a callback notifying the JIT there is a pending exception on a thread.
10837         (mono_thread_request_interruption): Call the new callback.
10838         (mono_thread_get_and_clear_pending_exception): New function to return the
10839         exception pending on a thread.
10840
10841         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10842         to turn off checking for pending exceptions.
10843         (mono_marshal_get_native_wrapper): Ditto.
10844
10845 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10846
10847         * threads-types.h: Get rid of the unnecessary extern declarations.
10848
10849 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
10850
10851         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
10852         return field from parent class if not private.
10853         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
10854         returns fields from parent class if they are not private.
10855         (method_nonpublic): added function to determine if a given method
10856         should be considered non-public. Returns false for private methods
10857         on parent class, and internal methods from parent on the 1.0 profile.
10858         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
10859         use method_nonpublic function to determine whether method should be
10860         returned.
10861         (property_accessor_public): use newly introduced method_nonpublic
10862         function to determine whether accessor is non-public. 
10863         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
10864         event from parent class if not private. Only return static event if
10865         Static flag is set, and only return static event from parent class if
10866         FlattenHierarchy flag is set.
10867         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
10868         include non-private events from parent class.
10869
10870 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10871
10872         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
10873         warning.
10874
10875 2008-01-16  Wade Berrier <wberrier@novell.com>
10876
10877         * security.c: Add assembly.h header to appease some warnings
10878
10879 2008-01-16  Dick Porter  <dick@ximian.com>
10880
10881         * process.c (process_module_string_read): Remove trailing null
10882         when saving string.
10883
10884 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10885
10886         * class-internals.h: A new data structure describing the layout of
10887         a runtime generic context (MonoRuntimeGenericContextTemplate).
10888
10889         * metadata-internals.h: Added a hash table to MonoDomain that maps
10890         from open generic classes to their runtime generic context
10891         templates.
10892
10893         * object.c: Building of the runtime generic context, including
10894         proper handling of generic type arguments of superclasses.
10895         Building of the runtime generic context according to the template.
10896
10897 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10898
10899         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10900         Fixes #350856.
10901
10902         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10903         mono_portability_find_file (). Fixes #325466.
10904         (mono_image_get_public_key): Fix a warning.
10905
10906 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10907
10908         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10909         Fixes #353550.
10910         (mono_class_from_name_case): Ditto.
10911
10912 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10913
10914         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10915           common storage for the tables used in the System/NumberFormatter class.
10916
10917 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10918
10919         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10920
10921 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10922
10923         * verify.c (get_boxable_mono_type): check if the token is valid.
10924
10925         * verify.c (set_stack_value): changed to add an error if an
10926         invalid type is set on stack. Changed all callers due to signature change.
10927
10928         * verify.c (do_stobj): implement stobj validation.
10929
10930 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
10931
10932         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
10933         set container->is_method, it was set earlier.
10934
10935         * metadata.c (type_in_image): Handle MVARs which belong to not finished
10936         generic methods.
10937
10938         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10939         is_method of the generic container to TRUE for methods.
10940
10941 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10942
10943         * metadata.c (type_in_image): Handle type parameters properly.
10944
10945         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
10946         memory ownership of this structure.
10947
10948 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
10949
10950         * verify.c (get_boxable_mono_type): make typedref types been just
10951         unverifiable. check for void type.
10952
10953         * verify.c (do_unbox_any): added, verify opcode unbox.any.
10954
10955         * verify.c (do_load_function_ptr): accept method spec tokens.
10956
10957 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10958
10959         * marshal.c (mono_class_native_size): Always set *align even if this is called
10960         recursively.
10961
10962 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
10963
10964         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
10965         out-of-date.
10966
10967 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
10968
10969         * verify.c: removed some old unused tables. A huge bunch of small fixes
10970         to things found while testing the verifier with mono basic.
10971
10972         * verify.c (dump_stack_value): dump null literal flag to.
10973
10974         * verify.c (verify_type_compatibility_full): fix comparison
10975         for types that have a generic super type.
10976
10977         * verify.c (verify_stack_type_compatibility): fix compatibility
10978         between null literals and reference types. fix compatibility between
10979         boxed valuetypes and object. fix corner case test for enums.
10980
10981         * verify.c (do_cmp_op): proper verification of cgt.un in case
10982         of reference types.
10983
10984         * verify.c (do_invoke_method): fix error message.
10985
10986         * verify.c (do_store_indirect
10987
10988         * verify.c (check_is_valid_type_for_field_ops): proper verification
10989         of managed pointers to valuetypes and boxed valuetypes. proper verification
10990         of null literals.
10991
10992         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
10993         allow token to be a reference type.
10994
10995         * verify.c (do_cast): proper handling of boxes valuetypes.
10996
10997         * verify.c (do_stelem): proper handling of storing a boxed valuetype
10998         in object[].
10999
11000         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
11001         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
11002         fixed the decoding of unbox_any
11003
11004 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11005
11006         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
11007
11008 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
11009
11010         * verify.c (do_newobj): do delegate verification.
11011
11012         * verify.c (verify_delegate_compatibility): perform delegate
11013         verification.
11014
11015         * verify.c (verify_ldftn_delegate): perform tests related to
11016         ldftn delegates.
11017
11018         * verify.c (mono_delegate_signature_equal): perform the
11019         slightly diferent signature comparison required by delegates.
11020
11021         * metadata.c (mono_metadata_type_equal_full): added and exported
11022         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
11023         allows signature only comparison.
11024
11025         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
11026         as MONO_INTERNAL.
11027
11028 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
11029
11030         * verify.c: added a bunch of stack_slot_* functions to
11031         make access to stack slot type easier. This is required to
11032         allow optional flags, like null literal, boxed value and
11033         this pointer.
11034         All access paths to IlStackDesc::stype have been changed 
11035         to use these new funcions.
11036         Removed a bunch of unused functions and cleared all warnings.
11037         This patch introduces the usage of the this pointer and 
11038         boxed value flags.
11039
11040 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
11041
11042         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11043
11044 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11045
11046         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11047         match managed version.
11048
11049         * appdomain.c: Bump corlib version.
11050         
11051         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11052         argument.
11053
11054 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11055
11056         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11057         Set public key token to zero-length byte array if assembly is not
11058         strongnamed.
11059
11060 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11061
11062         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11063         writing a vtype array elem.
11064
11065 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11066
11067         * assembly.c (build_assembly_name): return FALSE if length of token is
11068         not 16 (if not "null").
11069         (mono_assembly_name_parse_full): return FALSE if value of version,
11070         culture, token or key is 0.
11071         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11072         specify whether public key and public key token must be set to default
11073         value (zero-length byte array) if not available. Set versioncompat to
11074         SameMachine. If public key is available or the default is set, then
11075         set PublicKey flag.
11076         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11077         is available, use empty byte array as default value. On the 2.0
11078         profile, use default value for public key token if not set.
11079         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11080         profile, use default value for public key if not set. On the 2.0
11081         profile, use default value for public key token if not set.
11082         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11083         default values for public key and public key token.
11084
11085 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11086
11087         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11088         field to keep it in synch with the managed object.
11089
11090         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11091         delegates. Fixes #351520.
11092
11093         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11094         contains defined memory.
11095         
11096         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11097
11098         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11099         
11100         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11101         of the GC data structures.
11102
11103         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11104
11105         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11106         
11107         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11108         barrier.
11109         (mono_array_clone_in_domain): Ditto.
11110         (mono_array_clone_in_domain): Ditto.
11111
11112         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11113         (cache_culture): Use a write barrier.
11114
11115         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11116         (ves_icall_get_property_info): Ditto.
11117
11118         * object.h (MONO_STRUCT_SETREF): New macro.
11119
11120         * class-internals.h (MonoStats): Add some GC statistics.
11121
11122         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11123
11124 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11125
11126         * exception.c (mono_exception_from_name_two_strings):
11127         Break from loop after method is found.
11128
11129 2008-01-04  Dick Porter  <dick@ximian.com>
11130
11131         * process.c (process_module_string_read): Rename variable to
11132         reflect correct usage, after fixing bug 345972.
11133
11134 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11135
11136         * verify.c (mono_type_create_fnptr_from_mono_method): 
11137         created a MonoType function pointer instance to be used during
11138         verification. The verifier releases this memory at end.
11139
11140         * verify.c (mono_method_is_constructor): extracted repeated
11141         checks for constructor into a single class.
11142
11143         * verify.c (do_push_field): use new extracted method
11144         for constructor check.
11145
11146         * verify.c (do_newobj): same.
11147
11148         * verify.c (do_ldftn): renamed to do_load_function_ptr
11149         and make it verify ldvirtftn too.
11150
11151         * verify.c (mono_method_verify: proper verification
11152         of ldvirtftn. release created MonoMethod instances.
11153
11154 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11155
11156         * verify.c (token_bounds_check): added.
11157
11158         * verify.c (do_ldftn): added.
11159
11160         * verify.c (mono_method_verify): proper verificartion of ldftn.
11161
11162 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11163
11164         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11165         than the table row count. It's the resposibility of the caller to
11166         make the bounds check and raise the correct error.
11167
11168         * metadata.c (mono_metadata_decode_row_col): Same.
11169
11170         * loader.c (mono_get_method_from_token): perform bounds check
11171         on token for methoddef table.
11172
11173 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11174
11175         * icall.c
11176         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11177         assert into a negative result, the managed code already coped with
11178         that.
11179
11180         Some folks on Windows reported this error. 
11181
11182 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11183
11184         * appdomain.c: Bump corlib version.
11185         * icall.c:
11186         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11187         CultureInfo.CreateCulture to create CultureInfo for name.
11188         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11189         create CultureInfo for name. Fixes bug #347174.
11190
11191 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11192
11193         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11194         flags.
11195
11196         * verify.c (is_valid_branch_instruction): allow branching to the
11197         first instruction of the protected block.
11198
11199         * verify.c (is_valid_cmp_branch_instruction): same.
11200
11201         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11202         avoid double initialization.
11203
11204         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11205         detect which cases the eval stack should just be copied.
11206
11207         * verify.c (mono_method_verify): check if the eval stack
11208         is empty when entering a protected block.
11209
11210 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11211
11212         * verify.c: added is_clause_in_range, is_clause_inside_range,
11213         is_clause_nested and verify_clause_relationship. They perform
11214         the verifications stated in P1 12.4.2.7.
11215
11216         * verify.c (mono_method_verify): remove some unused variables,
11217         add the new exception clause checks, add instruction border
11218         checks for protected block start/end, improved some error 
11219         messages and fixed a bug in the way invalid instruction access
11220         is detected.
11221
11222 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11223
11224         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11225         from GC 7.0 if available.
11226
11227         * object.c: Remove an unused define.
11228         
11229         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11230
11231         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11232
11233         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11234
11235         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11236
11237         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11238         to take the same arguments as the other make_descr functions.
11239
11240         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11241
11242         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11243         directly.
11244
11245         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11246         mini.c.
11247
11248         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11249         call to boehm-gc.c.
11250
11251         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11252
11253         * null-gc.c (mono_gc_register_root): Fix a warning.
11254
11255         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11256
11257         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11258         (mono_gc_base_init): Call GC_init ().
11259
11260         * null-gc.c: Define mono_gc_register_root () as a no-op.
11261
11262         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11263
11264 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11265
11266         * verify.c: add prototype for merge_stacks at top
11267
11268         * verify.c (do_switch): added.
11269
11270         * verify.c (merge_stacks): on some cases the stack merging
11271         was not happening properly. Unequal stack sizes at merge
11272         points should be invalid.
11273
11274         * verify.c (mono_method_verify): added more debug info on stack state.
11275         verify switch properly.
11276
11277 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11278
11279         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11280         marshal.h.
11281
11282         * boehm-gc.c marshal.c: Include method-builder.h.
11283
11284         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11285
11286         * marshal.c: Remove some code which is now in method-builder.c.
11287
11288 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11289
11290         * method-builder.c: New file, extraction of the method builder functionality 
11291         from marshal.c.
11292
11293         * marshal.c: Move the mb functions into method-builder.c.
11294
11295         * marshal.h marshal.c: Export some mono_mb_... functions.
11296
11297         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11298
11299         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11300         the caller.
11301
11302         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11303
11304         * loader.c (mono_field_from_token): Ditto.      
11305
11306         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11307         type as well.
11308         
11309         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11310         Fixes #342565.
11311
11312         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11313         a helper function for setting it.
11314
11315         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11316
11317         
11318         * assembly.c: Significally simplify code now that referenced assemblies are 
11319         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11320
11321         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11322         #349952.
11323
11324 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11325
11326         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11327         instructions that were target of branches or are at protected block boundaries.
11328
11329         * verify.c (in_same_block): handle filter clauses.
11330
11331         * verify.c (is_valid_branch_instruction): added. checks the target of
11332         instructions br or brtrue/false.
11333
11334         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11335         binary branch instructions such as beq and bge.
11336
11337         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11338         and made it pin the instruction as been part of the exception block.
11339
11340         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11341         of in_same_block.
11342
11343         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11344         of in_same_block.
11345
11346         * verify.c (do_ret): ret from a protected block is unverifiable and
11347         not invalid.
11348
11349         * verify.c (do_static_branch): verify br and br.s instructions.
11350
11351         * verify.c (merge_stacks): add extra param to support detection
11352         of branches in the middle of instructions.
11353         
11354         * verify.c (mono_method_verify): verify branches and exception blocks
11355         that target the middle of instructions. Proper verification of br and br.s.
11356
11357 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11358
11359         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11360         skip_visibility field.
11361         (reflection_methodbuilder_from_dynamic_method): Ditto.
11362
11363         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11364         registrations. Fixes #348193.
11365
11366         * threads.h: Move the internal mono_thread_get_pending_exception () to
11367         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11368
11369 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11370
11371         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11372         icall registration. Fixes #348193.
11373
11374         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11375         for corlib classes into object. Fixes #349621.
11376
11377 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11378
11379         * icall.c (property_accessor_nonpublic): new function to determine
11380         whether an accessor allows a property to be considered non-public.
11381         Returns false for private accessor(s) from parent class, and internal
11382         accessor(s) from parent on 2.0 profile (and higher).
11383         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11384         to determine whether property should be included if NonPublic flag
11385         is set. Fixes bug #349078.
11386
11387 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11388
11389         * verify.c (init_stack_with_value): added.
11390
11391         * verify.c (mono_method_verify): extracted common
11392         code for exception initialization into init_stack_with_value.
11393
11394         * verify.c (mono_method_verify): initialize the exception
11395         for handler clauses as well.
11396
11397         * verify.c (mono_method_verify): fix the exception clause
11398         ordering rules, it should use handler end offset and not
11399         start offset.
11400
11401 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11402
11403         * rawbuffer.c: remove useless warning.
11404
11405 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11406
11407         * threads.h, threads-types.h: move functions to the correct header
11408         (fixes bug#349952).
11409
11410 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11411
11412         * verify.c (mono_method_verify): proper verification
11413         of exception handling clauses ranges and fallthru in
11414         and out of protected blocks.
11415
11416 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11417
11418         * verify.c (mono_method_verify): fixed compilation issue.
11419
11420 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11421
11422         * verify.c (mono_method_verify): a printf slipped in, changed
11423         to use verifier debug macro.
11424
11425 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11426
11427         * verify.c (is_correct_leave): check for filter clauses.
11428
11429         * verify.c (do_filter): added.
11430
11431         * verify.c (mono_method_verify): property verification of leave.
11432
11433
11434 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11435
11436         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11437         Win32 build, until we figure out how to do the proper thing on
11438         Win32.
11439
11440 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11441
11442         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11443         by the previous patch.
11444         
11445         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11446         the assembly resolve handler for refonly assemblies.
11447
11448 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11449
11450         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11451         Make sure only one thread is allowed to commence shutdown, and
11452         don't allow new threads to be started once shutdown is in
11453         progress.
11454
11455 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11456
11457         * verify.c (is_correct_endfilter): added.
11458
11459         * verify.c (is_unverifiable_endfilter): added.
11460
11461         * verify.c (do_endfilter): added.
11462
11463         * verify.c (mono_method_verify): property verification of endfilter
11464         and fixed a corner case or endfinally.
11465
11466 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11467
11468         * verify.h: new flags to support fail fast of unverifiable code and
11469         do non-strict verification. Non-strict verification is required to
11470         have MS runtime compatibility. There are a huge amount of unverifiable
11471         code that it accepts as verifiable. The strict mode verifies the code
11472         as the specs says.
11473         Non-strict mode will be required in cases where code needs to be
11474         accepted as verifiable but fails under strict mode.
11475
11476         * pedump.c: added support to fail fast and non-strict verification.
11477
11478         * verify.c: added support for both fail fast and non-strict verification.
11479
11480 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
11481
11482         * verify.c (is_correct_endfinally): added.
11483
11484         * verify.c (mono_method_verify): property verification of endfinally.
11485
11486 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11487
11488         * verify.c (in_any_block): check for filter clauses.
11489
11490         * verify.c (is_correct_rethrow): added.
11491
11492         * verify.c (mono_method_verify): property verification of rethrow.
11493
11494         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
11495
11496 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11497
11498         * verify.c (do_throw): added.
11499
11500         * verify.c (mono_method_verify): property verification of throw
11501
11502 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
11503
11504         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
11505         assemblies. Fixes #346425.
11506
11507 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11508
11509         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11510         FieldBuilders.
11511
11512         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11513
11514         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11515         prevent asserts when this is called with a token which might not be valid.
11516
11517         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
11518         lookup_dynamic_token_class with valid_token == FALSE.
11519
11520         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
11521
11522         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
11523
11524         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
11525         
11526 2007-12-10  Mark Probst  <mark.probst@gmail.com>
11527
11528         * gc.c: Don't delay threadpool thread finalization unless Mono is
11529         shutting down.
11530
11531 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11532
11533         * threads.c: turn an assert into a non-fatal warning.
11534
11535 2007-12-09  Robert Jordan  <robertj@gmx.net>
11536
11537         * icall.c (GetVirtualMethod): Add missing argument validation.
11538
11539 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11540
11541         * verify.c (do_cast): added.
11542
11543         * verify.c (mono_method_verify): property verification of castclass and isinst.
11544
11545
11546 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11547
11548         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
11549
11550         * verify.c (do_stelem): added.
11551
11552         * verify.c (mono_method_verify): property verification of stelem.X.
11553
11554 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11555
11556         * class.c, class-internals.h: Introduce an environment variable
11557         (MONO_GENERIC_SHARING) through which the extent of generic code
11558         sharing can be controlled (share all classes, share only corlib
11559         classes, or share nothing).
11560
11561         * object.c: Only create runtime generic context for classes for
11562         which sharing is enabled.
11563
11564 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11565
11566         * verify.c (do_ldelem): refactor it to work with ldelem.any.
11567
11568         * verify.c (mono_method_verify): property verification of ldelem.any.
11569
11570 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11571
11572         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
11573         added ldelem.X opcodes.
11574
11575         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
11576
11577         * verify.c: proper verification of ldelem.X 
11578
11579 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11580
11581         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
11582
11583 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11584
11585         * verify.c (mono_method_verify): null literal requires special handling,
11586         the value pushed on stack need to be flagged as so.
11587
11588         * verify.c (do_ldelema): Verify ldelema properly.
11589
11590 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11591
11592         * verify.c: Verify ldlen properly.
11593
11594 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
11595
11596         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
11597         to the target object's type. Fixes #346160.
11598
11599 2007-12-05  Dick Porter  <dick@ximian.com>
11600
11601         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
11602         Solaris needs the same workaround as BSD-derived systems.  Fixes
11603         bug 323524, patch by Burkhard Linke
11604         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
11605
11606 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
11607
11608         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
11609         handle to use when error dialog is shown; otherwise, update mask
11610         to show no error dialog when an error occurs.
11611
11612 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
11613
11614         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
11615
11616         * class.c (mono_class_get_field_default_value): New helper function to initialize
11617         field->def_type and field->data.
11618
11619 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
11620
11621         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
11622         the general one.
11623
11624         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
11625
11626         * marshal.c: Avoid depending on delegate->method_info being set.
11627
11628         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
11629         
11630         * object.c (mono_delegate_ctor): Set delegate->method.
11631
11632         * object-internals.h (struct _MonoDelegate): Add 'method' field.
11633
11634         * appdomain.c: Bump corlib version.
11635
11636 2007-11-27  Raja R Harinath  <harinath@gmail.com>
11637
11638         * metadata.c (mono_generic_inst_equal_full): Short-circuit
11639         equality check if we're comparing canonicalized MonoGenericInsts.
11640
11641 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
11642
11643         * class.c (generic_array_methods): Call mono_class_setup_methods () before
11644         accessing class->methods.
11645
11646 2007-11-22  Dick Porter  <dick@ximian.com>
11647
11648         * threads.c: Ensure that the synch_cs is set before trying to use
11649         it.
11650
11651 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
11652
11653         * profiler.c: r89126 broke the statistial profiler, unbreak.
11654
11655 2007-11-22  Martin Baulig  <martin@ximian.com>
11656
11657         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
11658
11659         * mono-debug.c
11660         (mono_debug_debugger_version): Bump to 3.
11661         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
11662         -> mono_debugger_class_initialized().
11663
11664         * mono-debug-debugger.c
11665         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
11666
11667         * class.c
11668         (mono_debugger_start_class_init_func): Removed.
11669         (mono_debugger_class_loaded_methods_func): Added.
11670         (mono_class_setup_methods): Call it here.
11671
11672 2007-11-22  Martin Baulig  <martin@ximian.com>
11673
11674         * mono-debug.c
11675         (mono_debug_add_delegate_trampoline): New public method.
11676         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
11677
11678         * mono-debug.h
11679         (MonoSymbolTable): Added `global_data_table'.
11680         (MonoDebuggerTypeKind): Removed.
11681
11682 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
11683
11684         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
11685         these methods.
11686
11687         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11688         
11689 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11690
11691         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
11692
11693 2007-11-20  Martin Baulig  <martin@ximian.com>
11694
11695         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
11696
11697         * mono-debug-debugger.c
11698         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
11699         (mono_debugger_remove_breakpoint): Likewise.
11700         (mono_debugger_check_breakpoints): Likewise.
11701         (mono_debugger_register_class_init_callback): New public method.
11702         (mono_debugger_remove_class_init_callback): Likewise.
11703         (mono_debugger_add_type): Likewise.
11704
11705         * mono-debug-debugger.h
11706         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11707
11708 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11709
11710         * class.c: more interface implementations needed for the
11711         array enumerator (fixes bug #341112).
11712
11713 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11714
11715         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11716         fix ParamName of ArgumentNullExceptions.
11717
11718 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11719
11720         * reflection.c (mono_reflection_encode_sighelper): Generate the
11721         modopts and modreqs.   I have a useless test that crashes monodis,
11722         but that shows the code working.
11723
11724 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11725
11726         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11727         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11728
11729 2007-11-15  Dick Porter  <dick@ximian.com>
11730
11731         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11732         When joining a thread, it's the thread that's calling Join that
11733         gets WaitSleepJoin state not the target.  Fixes the standalone
11734         test case in bug 334740, and hopefully the whole bug too.
11735
11736 2007-11-15  Dick Porter  <dick@ximian.com>
11737
11738         * process.c: Read file version info from the files pointed at by
11739         process modules, not the current process.  Fixes bug 315969.
11740
11741         Use windows typedef names in some places to fix warnings on the
11742         windows build.
11743
11744 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11745
11746         * image.c, metadata-internals.h: Added a generic_class_cache hash
11747         to MonoImage for looking up generic classes when sharing generics.
11748
11749 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11750
11751         * sgen-gc.c: warning cleanups.
11752
11753 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11754
11755         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11756         inherited properties.
11757
11758 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11759
11760         * object.c, class-internals.h: Added more information to the
11761         runtime generic context.
11762
11763 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11764
11765         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11766         instead of just the target method. Generalize the abstract method handling to
11767         handle any non-static method.
11768
11769         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11770         mono_marshal_get_delegate_invoke () signature change.
11771
11772 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11773
11774         * class.c, class-internals.h: Made
11775         mono_type_get_basic_type_from_generic () public.  Fixed member
11776         access check for shared generics.
11777
11778         * loader.c: Don't insert field into field cache if it's part of a
11779         non-inflated generic class.
11780
11781         * domain.c, domain-internals.h: The generic sharing context is now
11782         part of the jit info data structure.  Added two accessor
11783         functions.
11784
11785 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11786
11787         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11788         the array Get/Set/Address methods, since the JIT inlines them.
11789
11790         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11791
11792         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11793         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11794
11795         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11796         mono_marshal_get_delegate_invoke signature change.
11797
11798         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11799         an additional argument. Add support for invoking abstract methods.
11800
11801         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11802
11803         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11804
11805 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11806
11807         * class.c: Do field layout for open generic classes as well.
11808
11809 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11810
11811         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11812         other objects, because the threadpool is still around.  Put them
11813         in a list instead and after finalizing all other objects in the
11814         root domain shut down the thread pool and then finalize the
11815         threads.  Fixes bug #337383.
11816
11817         * threads.c, thread-types.h: New mono_thread_create_internal()
11818         function for marking a thread with the threadpool flag before it
11819         started.  Set synch_cs to NULL after freeing it.
11820
11821         * threadpool.c: Mark threadpool threads before they start.
11822
11823 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11824
11825         * reflection.h, reflection.c: don't export random functions
11826         and lazy load dbnull and missing objects.
11827
11828 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11829
11830         * class.c: Initialize COM types if COM interfaces
11831         are present (not just COM classes).
11832         
11833         Code is contributed under MIT/X11 license.
11834
11835 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11836         * reflection.c:
11837         create_dynamic_mono_image: hook module profiler events (dynamic case).
11838         mono_image_basic_init: hook assembly profiler events (dynamic case).
11839
11840 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11841         * profiler.c:
11842         simple_appdomain_unload: completely terminate the profiler
11843         instead of only processing the statistical samples.
11844         simple_shutdown: make sure this is really called exactly once,
11845         even in multithreaded applications, and always listen to
11846         appdomain events.
11847         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
11848         here, the "[un]load" functions will do it.
11849         Fixes bugs #333791 and #325261.
11850
11851 2007-11-07  Geoff Norton  <gnorton@novell.com>
11852
11853         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
11854         rather than depend on __APPLE__.
11855
11856 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11857
11858         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
11859
11860 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
11861
11862         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
11863         UTF16 MonoString. Fix the crash from bug #335488
11864
11865 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
11866
11867         * marshal.c: Correct (for non-Win32 OS) length != size in 
11868         mono_string_from_bstr. Fix #339530.
11869
11870 2007-11-06  Geoff Norton  <gnorton@novell.com>
11871
11872         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
11873         to succeed
11874
11875 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
11876
11877         * process.c: Added run-time GetProcessId API detection for Windows.
11878
11879 2007-11-04  Miguel de Icaza  <miguel@novell.com>
11880
11881         * reflection.c  (mono_param_get_objects): If a parameter has the
11882         attribute [System.Runtime.InteropServices.Optional] we should
11883         set the DefaultValue of the ParameterInfo to be
11884         System.Reflection.Missing instead of DBNull.
11885
11886         See bug #339013.
11887
11888         (mono_get_reflection_missing_object): New method,
11889         returns the System.Reflection.Missing.Value singleton instance.
11890
11891 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11892
11893         * culture-info-table.h : regenerated.
11894
11895 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11896
11897         * icall.c: Use GetEnvironmentStrings on windows
11898         so we are using the same environment block as 
11899         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11900         #333740.
11901         
11902         Code is contributed under MIT/X11 license.
11903
11904 2007-10-31  Martin Baulig  <martin@ximian.com>
11905
11906         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11907
11908         * mono-debug-debugger.h
11909         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11910
11911 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11912
11913         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11914         classes.
11915
11916 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11917
11918         * culture-info-table.h : regenerated.
11919
11920 2007-10-30  Robert Jordan  <robertj@gmx.net>
11921
11922         * icall-def.h, icall.c:
11923         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11924
11925         Code is contributed under MIT/X11 license.
11926
11927 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11928
11929         * class.c (mono_class_setup_vtable): Find the inflated methods in the
11930         inflated class instead of inflating them again.
11931         
11932         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
11933         dynamic case.
11934
11935         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
11936         Call setup_supertypes () after klass->parent is set.
11937         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
11938
11939         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
11940         for inflated instances of not yet created dynamic generic classes.
11941         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
11942         times from inflated_method.
11943         (methodbuilder_to_mono_method): Ditto.
11944
11945 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11946
11947         * gc.c: code cleanup and removed old untested option of not creating the
11948         finalizer thread.
11949
11950 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11951
11952         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
11953         creating a jump trampoline for dynamic methods.
11954
11955 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
11956
11957         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
11958         generic TypeBuilders when called from another method of the same type (bug #335131).
11959
11960
11961 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
11962
11963         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
11964         doesn't seem to work perfectly.
11965         
11966         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
11967         called multiple times.
11968         (methodbuilder_to_mono_method): Ditto.
11969         (resolve_object): Inflate FieldBuilder's.
11970
11971 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11972
11973         * string-icalls.c, string-icalls.h, appdomain.c: patch from
11974         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
11975         RemoveEmptyEntries in the string.Split implementation (bug #322375).
11976
11977 2007-10-26  Dick Porter  <dick@ximian.com>
11978
11979         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
11980         Thread initialisation changes
11981
11982 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
11983
11984         * verify.c: fix compatibility check between arrays and System.Array
11985
11986 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
11987
11988         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
11989         too. Fixes #336999.
11990
11991 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
11992
11993         * object.c (mono_value_box): Use typed allocation here.
11994
11995 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
11996
11997         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
11998         trampoline instead of compiling the method right away.
11999
12000         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
12001
12002 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
12003
12004         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
12005         related fields for dynamic classes. Fixes #334493.
12006
12007 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
12008
12009         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
12010         
12011         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
12012
12013         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
12014         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
12015
12016         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
12017
12018         * reflection.c (create_generic_typespec): Initialize klass->generic_container
12019         if needed.
12020         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
12021
12022 2007-10-18  Jonathan Chambers <joncham@gmail.com>
12023
12024         * marshal.c: Use correct key when removing item
12025         from ccw_hash.
12026         
12027         Code is contributed under MIT/X11 license.
12028
12029 2007-10-17  William Holmes  <billholmes54@gmail.com>
12030
12031         *marshal.c: Adding a case to marshal booleans to U1
12032
12033         Code is contributed under MIT/X11 license.
12034
12035 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
12036
12037         * class.c (mono_class_from_name): Search the modules compromising dynamic
12038         assemblies. Fixes #331601.
12039
12040 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
12041
12042         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12043         exception if the type name contains an assembly component. Fixes #334203.
12044
12045         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12046         modules inside dynamic assemblies. Fixes #334200.
12047         
12048         * reflection.c: Set image->public_key and image->public_key_length;
12049
12050         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12051         fields.
12052
12053         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12054         
12055 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12056
12057         * metadata.c: Implemented correct comparing of generic classes.
12058         An inflated generic class can be equal to a non-inflated one if it
12059         is inflated with generic type variables as type arguments.  Fixes
12060         bug #333798.
12061
12062 2007-10-15  Dick Porter  <dick@ximian.com>
12063
12064         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12065         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12066         81646.
12067
12068         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12069         instead of a monitor lock.  This means that monitor_try_enter and
12070         co can set the thread state safely.
12071         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12072         thread_interrupt_requested, so interrupt actually works.
12073
12074         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12075         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12076         state accessor function
12077
12078 2007-10-15  Martin Baulig  <martin@ximian.com>
12079
12080         * mono-debug.h
12081         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12082         the debugger with the current runtime.
12083
12084 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12085
12086         * object.c, object-internals.h: added the ability to set a single
12087         trampoline for all the slots in a vtable.
12088
12089 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12090
12091         * marshal.c: deal with a possible race condition during multicast
12092         delegate invocation.
12093
12094 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12095
12096         * class.c: ensure value type methods don't have the synchronized
12097         flag set.
12098
12099 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12100
12101         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12102         breaks the build.
12103
12104 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12105
12106         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12107         to take an options parameter so that empty entries can be removed during
12108         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12109
12110 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12111
12112         * marshal.c: make sure we don't store the signature from a dynamic
12113         method into the runtime invoke cache (bug #327189).
12114
12115 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12116
12117         * marshal.c: make sure the wrapper methods are properly initialized.
12118
12119 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12120
12121         * metadata.c, metadata-internals.h: Generalized
12122         mono_type_stack_size() to mono_type_stack_size_internal() which
12123         takes an additional argument specifying whether it allows open
12124         types.
12125
12126 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12127
12128         * verify.c (do_invoke_method): handle typedbyref params
12129         correctly and check for unverifiable return values.
12130
12131         * verify.c (do_newobj): fix a warning.
12132
12133 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12134
12135         * verify.c: don't tread typedbyref as allways unverifable,
12136         so uses, like (ld/st)loc.0 are valid. verify for the cases
12137         that it matters, like boxing related operations.
12138
12139 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12140
12141         * verify.c: add verification of the newobj opcode. verification
12142         of delegate instantation still missing due ldftn and virldftn not
12143         pushing the function type on stack
12144
12145 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12146
12147         * class-internals.h: Runtime generic context data structure
12148         definition.
12149
12150         * object.c: Initialization of runtime generic context at runtime
12151         vtable creation time.
12152
12153 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12154         * class.c (mono_class_create_from_typedef,
12155         mono_class_from_generic_parameter, mono_ptr_class_get,
12156         mono_fnptr_class_get, mono_bounded_array_class_get)
12157         * domain.c (mono_domain_create, mono_domain_free)
12158         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12159         * image.c (do_mono_image_load, mono_image_close):
12160         Hooked up load-unload profiler events.
12161
12162 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12163
12164         * domain.c: track statistics about the actual amount of native code
12165         allocated.
12166
12167 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12168
12169         * class.c: the valuetype enumerators don't have the additional
12170         supertypes interfaces.
12171
12172 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12173
12174         * class.c: need more interfaces setup for the IEnumerator<T>
12175         object created for arrays (tests/ienumerator-interfaces.2.cs).
12176
12177 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12178
12179         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12180
12181 2007-10-05  Alp Toker  <alp@atoker.com>
12182
12183         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12184         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12185         #315863.
12186
12187 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12188
12189         * verify.c (verify_type_compatibility_full): verification of
12190         compatibility improved, validates correctly non-strict checks between
12191         native int and I4 types different than (unsigned)int32.
12192
12193         * verify.c (do_store_indirect): added, do all verification of
12194         ldind.X opcodes. 
12195
12196         * verify.c (get_load_indirect_mono_type): renamed to
12197         get_indirect_op_mono_type, as it now returns the MonoType for 
12198         ldind.X and stind.X opcodes.
12199
12200 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12201
12202         * reflection.c: Fix the encoding of generic type definition for
12203         TypeBuilders.
12204
12205         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12206         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12207         be made. Typespec check is done prior to typeref cache lookup.
12208
12209         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12210         mono_image_typedef_or_ref_full.
12211
12212         * reflection.c (encode_generic_class): encode the generic class
12213         directly instead of calling encode_type.
12214
12215         * reflection.c (encode_type): encode the generic type definition
12216         MonoClass as a generic instantiation.
12217
12218         * reflection.c (create_typespec): cache typespec tokens in
12219         the assembly->typespec cache. Don't create typespec for a generic
12220         instance MonoClass. Create typespec for the generic type defintion.
12221
12222         * reflection.c (create_generic_typespec): encode the generic
12223         class directly instead of calling encode_type.
12224
12225         * reflection.c (mono_image_create_token): encode the generic
12226         type definition not using a typespec for MonoType instances.
12227
12228
12229 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12230
12231         Fix #328812
12232         * class.c (mono_image_init_name_cache): Don't return nested
12233         'protected internal' classes.
12234         (mono_class_from_name_case): Likewise.
12235
12236 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12237
12238         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12239           common function used by both DefaultConfig in System.dll and
12240           InternalConfigurationHost in System.Configuration.dll.
12241
12242 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12243
12244         * class.c: automatically add to vectors only a few essential explicit
12245         generic interfaces. The rest of the interfaces that arrays should
12246         provide are currently implicitly added (but still not lazily, see the
12247         design in the discussion of bug#325495 for the details of what is
12248         needed for that). Additionally, implicit interfaces are assigned the
12249         same vtable slot as the explicit interfaces (as they are compatible):
12250         this enables huge memory savings since we don't need to instantiate
12251         as many memthods and as large vtables anymore. Also, Since
12252         GetEnumerator<T> returns an instance of a type that is required to
12253         support a similarly large set of interfaces as arrays, we add
12254         implicit interfaces and interface offset sharing support to those
12255         types, too. This change adds all the required interfaces so that
12256         the anonarray.cs test case in the bug report works (we don't add
12257         all the interfaces to arrays of arrays 3-level deep and more because
12258         of the memory requirements explained in the bug and since they are much
12259         less common: the lazy-loading support will enabled them to work, too).
12260
12261 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12262
12263         * verify.c (merge_stacks): major clean up, all type compatibility
12264         checks are done by verify_type_compatibility. This fix my earlier lack
12265         of understanding of the CLR type system and merge_stacks no longer looks
12266         scary.
12267
12268         * verify.c: fixed some bad spelling.
12269
12270 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12271
12272         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12273         a given stack slock.
12274         
12275         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12276         verify_type_compatibility_full. This removed a near indentical function and fixed
12277         handling of Int32 and IntPtr across all opcodes.
12278
12279 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12280
12281         * class.c: only vectors have the additional generic interfaces.
12282
12283 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12284
12285         * mono-config.c: Use g_strcasecmp instead of
12286         strcasecmp like everywhere else to fix
12287         compilation with MSVC.
12288         
12289         Code is contributed under MIT/X11 license.
12290
12291 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12292
12293         * object.c, object-internals.h: refactored the IMT code to enable
12294         building a single slot at a time and lazily creating the IMT trampolines
12295         and thunks.
12296
12297 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12298
12299         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12300
12301         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12302         Fixes #328501.
12303         
12304 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12305
12306         * loader.c (method_from_methodspec): Rearrange to avoid
12307         un-necessary exposition.  Don't assert out if the method's
12308         declaring type is a generic type definition.
12309
12310 2007-09-28  Martin Baulig  <martin@ximian.com>
12311
12312         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12313
12314 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12315
12316         * class-internals.h: optimize field layout of MonoClass to
12317         requires less cachelines at runtime and save a few bytes on 64 bit
12318         systems.
12319
12320 2007-09-28  Jb Evain  <jbevain@novell.com>
12321
12322         * reflection.c: when encoding type names in custom attributes,
12323         if the type is a closed generic type, its generic arguments
12324         have to be serialized as AssemblyQualifiedName, so that when
12325         they are deserialized, it's possible to re-create them properly.
12326         Fixes #329450.
12327
12328
12329 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12330
12331         * object.c, class-internals.h: added delegate-creation counter.
12332
12333 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12334
12335         * class.c: cleanup of the code that synthetizes interfaces for
12336         arrays in 2.0: saves quit a bit of corlib mempool memory.
12337         Code to fix bug #325495 ifdeffed out for now until the issues
12338         with memory usage and O(n^2) behaviour are fixed.
12339
12340 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12341
12342         * marshal.c: when possible, do not duplicate the name of the methods
12343         in the method builder and in the generated MonoMethod.
12344
12345 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12346         * verify.c: added support for type checking ldind_* opcodes.
12347
12348 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12349
12350         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12351         which is used to distinguish the fully open instantiation of a TypeBuilder
12352         with the rest. This temporary hack is required to restore the property that
12353         the fully open instantiation is the same type of the generic type definition.
12354
12355         * class-internals.h (mono_generic_class_is_generic_type_definition):
12356         new function as part of the internal API.
12357
12358         * class.c (inflate_generic_type): return NULL when the generic inst is
12359         fully open. The fully open generic type is now the same as the generic type
12360         definition for non TypeBuilder types.
12361
12362         * class.c (mono_generic_class_get_class): removed assert since it is
12363         no longer valid, gklass->cached_class can point to the generic type definition.
12364
12365         * class.c (mono_generic_class_is_generic_type_definition): new.
12366
12367         * metadata.c (mono_generic_class_hash): added is_tb_open field
12368         to the hash calculation.
12369
12370         * metadata.c (free_generic_class): if the generic class is associated
12371         with the generic type definition, its field will come from the mempool and
12372         must not be freed.
12373
12374         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12375         new, this function identifies the corner case of a TypeBuilder fully open
12376         instantiation.
12377
12378         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12379         for lookup. Set gclass->cached_class to be the container class in case of
12380         the fully open instantiation of non TypeBuilder types.
12381
12382         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12383         to compare generic classes.
12384
12385         * reflection.c (method_encode_methodspec): remove assert that
12386         no longer is valid.
12387
12388         * reflection.c (mono_reflection_generic_class_initialize): add
12389         an aditional assert to ensure the proper type is used.
12390
12391 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12392
12393         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12394         to enjoy it.
12395
12396 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12397
12398         * verify.c (push_arg): Fixed support for ldarga
12399         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12400         MonoType used as first arg in case of instance calls.
12401
12402 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12403
12404         * verify.c: Support for verifying VAR and MVAR types, 
12405
12406 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12407
12408         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12409         accessors correctly.
12410
12411 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12412
12413         * threads.c: support OSX and other systems in
12414         mono_thread_get_stack_bounds (bug #328026).
12415
12416 2007-09-25  Martin Baulig  <martin@ximian.com>
12417
12418         * mono-debug.h
12419         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12420
12421 2007-09-24  Martin Baulig  <martin@ximian.com>
12422
12423         * mono-debug.h
12424         (MonoDebugClassEntry): Moved the definition of this struct into
12425         mono-debug.c to make it private.
12426
12427         * mono-debug.c
12428         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12429         type table per symbol file, we don't need to store the symfile id
12430         any longer.
12431
12432 2007-09-24  Martin Baulig  <martin@ximian.com>
12433
12434         Create one type table per symbol file, since a `MonoClass *' gets
12435         invalid when its image is unloaded.
12436
12437         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12438         (MonoDebugHandle): Added `type_table'.
12439
12440 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12441
12442         * mempool.c, mempool.h: added mono_mempool_new_size () API
12443         to be able to specify a smaller initial size for the pool.
12444         Adjusted the code to slowly increase pool size before using
12445         the previous default size.
12446         * image.c: use a small initial size for image mempools.
12447
12448 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12449
12450         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12451         Fixes ##320990.
12452
12453         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12454         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12455
12456 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12457
12458         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12459         free. Fixes #327438.
12460
12461 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12462
12463         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12464         generic instantiations, etc.
12465         <MONO_TYPE_ARRAY>: Likewise.
12466
12467 2007-09-21  Martin Baulig  <martin@ximian.com>
12468
12469         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12470         these structs were never defined.
12471         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12472
12473 2007-09-21  Martin Baulig  <martin@ximian.com>
12474
12475         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
12476
12477 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
12478
12479         * image.c: removed the guid hash tables: we can get the same info
12480         without the additional memory usage hit (partially fixes also bug #327052).
12481
12482 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12483
12484         * profiler.h, profiler-private.h, profiler.c: add a new profiler
12485         event to handle unloading methods. After the event is called, the
12486         corresponding MonoMethod* must be considered invalid.
12487         * loader.c (mono_free_method): call the new mono_profiler_method_free
12488         event.
12489
12490 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12491
12492         * domain-internals.h: New flag in MonoJitInfo which marks shared
12493         generic methods.  New hash table (shared_generics_hash) in
12494         MonoDomain to keep track of shared generic methods.  Prototypes
12495         for functions to register and lookup shared generic methods.
12496
12497         * domain.c: Support for registering and looking up shared generic
12498         methods via a hash table (shared_generics_hash) in MonoDomain.
12499
12500         * class-internals.h: New exception to signal failure of shared
12501         compilation of a generic method.  New counters for generics
12502         sharing in MonoStats.
12503
12504 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12505
12506         * image.c, metadata-internals.h: don't keep a file descriptor open
12507         for loaded assemblies (bug#325988).
12508
12509 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12510
12511         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12512         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12513         use the corresponding datatypes.
12514         (type_in_image): Update to changes.
12515         (CleanForImageUserData): Simplify.
12516         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
12517         Avoid quadratic behaviour in handling the "stolen" list by
12518         separating the filter predicate out, and by prepending the stolen
12519         items rather than appending them.
12520         (steal_ginst_in_image): Likewise.
12521         (mono_metadata_clean_for_image): Update to changes.
12522
12523 2007-09-19  Martin Baulig  <martin@ximian.com>
12524
12525         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
12526
12527 2007-09-19  Martin Baulig  <martin@ximian.com>
12528
12529         * mono-debug.c (mono_debug_cleanup): Don't call
12530         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
12531
12532 2007-09-19  Raja R Harinath  <harinath@gmail.com>
12533
12534         Fix crash on 'make run-test' in mcs/errors
12535         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
12536         Avoid more potential allocations in mono_class_from_mono_type.
12537         (ginst_in_image): Update to changes.
12538         (gclass_in_image): Rearrange slightly.
12539
12540 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12541
12542         * class.c (mono_class_init): Move the code that sets up class->methods to 
12543         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
12544
12545         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
12546         canonical instance of an inflated generic signature.
12547         (mono_type_create_from_typespec): Remove an invalid free.
12548
12549         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
12550
12551 2007-09-18  Marek Habersack  <mhabersack@novell.com>
12552
12553         * domain-internals.h: added a declaration of the
12554         mono_assembly_load_full_nosearch internal function.
12555
12556         * assembly.c (mono_assembly_load_with_partial_name): use
12557         mono_try_assembly_resolve return value properly.
12558         (mono_assembly_load_full_nosearch): copied the function body from
12559         mono_assembly_load_full, without the code to invoke assembly
12560         search hooks.
12561         (mono_assembly_load_full): calls the above new function and if the
12562         assembly is not resolved, invokes the search hooks.
12563
12564         * appdomain.c (mono_runtime_init): restore the global postload
12565         assembly search handlers.
12566
12567 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12568
12569         * class.c (mono_class_init): Make sure class->methods and class->properties
12570         are never NULL in the generics case.
12571
12572         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
12573
12574 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12575
12576         * metadata.c (free_generic_class): Disable some code to fix the build.
12577
12578         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
12579
12580         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
12581         from the image mempool.
12582
12583         * metadata.c (free_generic_class): Free more data from the inflated class.
12584
12585         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
12586
12587         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
12588         mempool.
12589         (mono_type_create_from_typespec): Ditto.
12590
12591         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
12592         MonoImage to the caller.
12593         (mono_init_internal): Save the opened image in a global variable.
12594         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
12595
12596         * reflection.c (resolve_object): Fix a leak.
12597
12598         * metadata.c: Fix the freeing of data in the generics caches.
12599         
12600         * metadata.c (free_generic_inst): Comment this out to fix the build.
12601         (free_generic_class): Ditto.
12602
12603         * metadata.c: Free cached generic methods, instantinations and classes when
12604         they are removed from the caches.
12605         (mono_metadata_free_type): Free the type itself.
12606
12607         * class.c: Free the result of mono_class_inflate_generic_type () in a few
12608         places.
12609
12610 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12611
12612         * boehm-gc.c: restrict managed allocs to __thread supporting
12613         architectures.
12614
12615 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
12616
12617         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
12618         (mono_generic_class_get_class): Fix a leak.
12619
12620         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
12621         mono_metadata_free_type ().
12622         (mono_metadata_inflate_generic_inst): Fix a leak.
12623
12624 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12625
12626         * mono-debug.c (free_header_data): Fix a leak missed earlier.
12627
12628         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
12629         mempool.
12630
12631         * mono-debug.c (mono_debug_close_image): Fix call to 
12632         g_hash_table_remove ().
12633
12634 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12635
12636         * icall-def.h: redirect all the string ctor to the managed
12637         CreateString () methods.
12638         * string-icalls.c, string-icalls.h: removed dead code for string
12639         ctors and icalls.
12640
12641 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12642
12643         * mono-debug.c: Fix memory leaks.
12644
12645 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12646
12647         * threads-types.h: Implement mono_hazard_pointer_set and 
12648         mono_hazard_pointer_clear macros using do/while(0) to fix
12649         compilation with MSVC.
12650         
12651         Code is contributed under MIT/X11 license.
12652
12653 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12654
12655         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
12656         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
12657
12658 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12659
12660         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
12661         icalls.
12662
12663 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12664
12665         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
12666         managed-code allocated as well.
12667
12668 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12669
12670         * class.c (mono_class_is_assignable_from): Add support for generic variance.
12671
12672 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12673
12674         * boehm-gc.c: fixed the build after the AOT changes.
12675
12676 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12677
12678         * wrapper-types.h: Add an ALLOC wrapper type.
12679
12680         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
12681         reference managed allocator methods.
12682
12683 2007-09-12  Marek Safar  <marek.safar@gmail.com>
12684
12685         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
12686         of Type array and not MonoType, a fix suggested by Hari.
12687         
12688 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12689
12690         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
12691         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
12692         
12693         Code is contributed under MIT/X11 license.
12694
12695 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12696
12697         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
12698
12699 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12700
12701         * image.c (do_mono_image_open): if assembly file fails to open and
12702         MONO_IOMAP is in effect, try to find the path in a
12703         case-insensitive way.
12704
12705         * appdomain.c (mono_runtime_init): do not install postload hooks -
12706         tests show that MS.NET doesn't use anything of that sort to
12707         trigger the AppDomain.AssemblyResolve event.
12708         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12709         made non-static.
12710         (mono_runtime_init): init portability helpers here.
12711
12712         * assembly.c (mono_assembly_load_with_partial_name): if other   
12713         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12714         to resolve the assembly.
12715
12716         * domain-internals.h: added mono_try_assembly_resolve and marked
12717         it as internal.
12718
12719 2007-09-11  Jb Evain  <jbevain@novell.com>
12720
12721         * object-internals.h (MonoReflectionDynamicMethod): add
12722         a `MonoReflectionType *owner` field. The owner is used
12723         * reflection.c:
12724         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12725         method as the class declaring the dynamic method.
12726         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12727         dynamic method to the declaring type of the methodbuilder.
12728
12729 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12730
12731         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12732         rules for calling methods via reflection.
12733
12734 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12735
12736         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12737         Inflate MonoType's.
12738
12739 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12740
12741         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12742         provide a managed method that does fast allocations without needing
12743         a managed->unmanaged transition. Boehm GC implementation currently
12744         enabled for ptrfree objects on sane architectures.
12745
12746 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12747
12748         * marshal.c, marshal.h: exported a couple of useful functions and
12749         added mono_mb_get_label () to easily handle backward branches.
12750
12751 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12752
12753         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12754
12755 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12756
12757         * loader.c (find_method): Fixed the regression introduced while
12758         fixing bug #81466.
12759
12760 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12761
12762         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12763         well.
12764         
12765         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12766         icall.c reflection.c: Pass a MonoGenericContext argument to 
12767         mono_lookup_dynamic_token ().
12768
12769         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12770         #82744.
12771         
12772 2007-09-09  Robert Jordan  <robertj@gmx.net>
12773
12774         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12775         for generic methods.
12776
12777         * object.c (mono_object_get_virtual_method): Handle generic methods.
12778         Fixes bug #78882.
12779
12780         Code is contributed under MIT/X11 license.
12781
12782 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12783
12784         * image.c: fix locking in mono_image_load_file_for_image ().
12785
12786 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12787
12788         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12789         used only as a cache: added an icall to fill it.
12790
12791 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12792
12793         * reflection.h: exposed mono_reflection_free_type_info
12794         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12795         since mono_reflection_bind_generic_parameters makes a copy of it.
12796         * reflection.c (free_type_info): subinfos should be freed.
12797         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12798         made non static.
12799         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12800         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12801         this fixes #82695 and #81726.
12802    
12803
12804 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12805
12806         * process.h, process.c:  added support for user profile/info in
12807           ProcessStartInfo. For now only Windows works.
12808
12809 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12810
12811         * metadata.c: consider the generic arguments when comparing
12812         signatures (bug #82614).
12813
12814 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12815
12816         * cil-coff.h, image.c: updated assembly loader to cope with the
12817         PE32+ 64 bit file format.
12818
12819 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12820
12821         * assembly.c, class.c, domain.c, loader.c: remove useless
12822         inclusion of cil-coff.h.
12823
12824 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12825
12826         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12827         if interface is marked with CoClassAttribute. 
12828    
12829         Code is contributed under MIT/X11 license.
12830
12831 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12832
12833         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12834         if it's seen twice in major collections.
12835
12836 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12837
12838         * sgen-gc.c: big objects are not copied to the gray area, but they
12839         need to be considered for scanning, too, if they are brought alive
12840         by an object ready for finalizations or a survived one.
12841
12842 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12843
12844         * sgen-gc.c: properly account the number of disappearing links when
12845         they are nullified.
12846
12847 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12848
12849         * sgen-gc.c: share the code to scan the registered roots between the
12850         different types of collections.
12851
12852 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12853
12854         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
12855
12856 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12857
12858         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
12859         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
12860
12861 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12862
12863         * security-manager.c (mono_security_manager_get_methods):
12864         LinkDemandSecurityException now has 2 arguments instead of 3.
12865
12866 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
12867
12868         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
12869         platforms which need it.
12870
12871 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12872
12873         * sgen-gc.c: unregister thread data structures with a pthread_key_t
12874         dtor.
12875
12876 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12877
12878         * threads.c: free the thread static data on thread exit.
12879
12880 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
12881
12882         * class.c: walk the hierarchy to find the generic definition for
12883         a class (fixes runtime part of bug #82498).
12884
12885 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12886
12887         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12888         ...
12889
12890         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12891
12892 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12893
12894         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12895
12896 2007-08-24  Robert Jordan  <robertj@gmx.net>
12897
12898         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12899
12900 2007-08-24  Jb Evain  <jbevain@novell.com>
12901
12902         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12903         for byref types.
12904
12905 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12906
12907         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12908         #82286.
12909
12910 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12911
12912         * assembly.c: Fix a warning.
12913         
12914 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12915
12916         * appdomain.c: parse the <runtime> section looking for the probing
12917         element with the 'privatePath' attribute, which sets additional
12918         directories in which the runtime should look for assemblies.
12919
12920 2007-08-23  Robert Jordan  <robertj@gmx.net>
12921
12922         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12923         Fixes #82499.
12924
12925 2007-08-23  Martin Baulig  <martin@ximian.com>
12926
12927         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12928         _mono_debug_init_corlib() and remove it from the header file.
12929
12930 2007-08-23  Martin Baulig  <martin@ximian.com>
12931
12932         * mono-debug-debugger.c
12933         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
12934         don't notify the debugger about it.
12935
12936         * mono-debug-debugger.h
12937         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
12938
12939 2007-08-23  Robert Jordan  <robertj@gmx.net>
12940
12941         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
12942         Code is contributed under MIT/X11 license.
12943
12944 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12945
12946         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
12947
12948 2007-08-22  Martin Baulig  <martin@ximian.com>
12949
12950         * mono-debug.c: Store debugging info on a per-domain basis and
12951         free it on domain unload.  Add support for unloading symbol files.
12952
12953         * mono-debug.h
12954         (MonoDebugList): New typedef.
12955         (MonoSymbolTable):
12956         - add `data_tables and `type_table'.
12957         - replace 'symbol_files' and `num_symbol_files' with a
12958           `MonoDebugList *'.
12959         (mono_debug_data_table): Removed.
12960         (mono_debug_list_add): New public function.
12961         (mono_debug_list_remove): New public function.
12962         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
12963         (mono_debug_init_2_memory): Renamed into
12964         mono_debug_open_image_from_memory().
12965         (mono_debug_close_image): New public function.
12966         (mono_debug_domain_create): Likewise.
12967         (mono_debug_domain_unload): Likewise.
12968         (MONO_DEBUGGER_VERSION): Bump to 60.
12969
12970         * mono-debug-debugger.h
12971         (MonoDebuggerEvent):
12972         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
12973         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
12974         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
12975         - rename `THREAD_CREATED' and `THREAD_EXITED' into
12976           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
12977         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
12978           meaning.
12979         (mono_debugger_add_symbol_file): Removed.
12980         (mono_debugger_add_type): Removed.
12981         (mono_debugger_lookup_type): Removed.
12982         (mono_debugger_lookup_assembly): Removed.
12983
12984         * domain.c
12985         (mono_domain_create): Call mono_debug_domain_create().
12986         (mono_init_internal): Call mono_debug_init_corlib().
12987
12988         * assembly.c
12989         (mono_assembly_close): Call mono_debug_close_image().
12990
12991 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12992
12993         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
12994         mmap call.
12995
12996 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12997
12998         * sgen-gc.c: ensure section->pin_queue_end is initialized
12999         correctly when non pinning objects in the section have been found.
13000
13001 2007-08-22  Marek Habersack  <mhabersack@novell.com>
13002
13003         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
13004         containing a list of directories separated by ':'. MSDN docs say
13005         the directories should be separated with ';'. Part of a bugfix for
13006         bug #81446
13007
13008 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
13009
13010         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
13011         it should MonoType and not MonoClass.
13012
13013 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
13014
13015         * culture-info-table.h : regenerated.
13016
13017 2007-08-20  William Holmes  <billholmes54@gmail.com>
13018
13019         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
13020          to call ReplaceFile Kernel32 on windows or in io-layer.
13021         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
13022         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
13023          as an internal call.
13024
13025         Code is contributed under MIT/X11 license.
13026
13027 2007-08-20  Jb Evain  <jbevain@novell.com>
13028
13029         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
13030         and MONO_EXCEPTION_FIELD_ACCESS.
13031
13032         * debug-helpers.[c|h]: new mono_field_full_name function.
13033
13034 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13035
13036         * class.c: Removed class_security_level() and moved it to
13037         security-core-clr.c.
13038
13039         * security-core-clr.c, security-core-clr.h: class_security_level()
13040         is now public and renamed to mono_security_core_clr_class_level().
13041         It also looks for security attributes in the classes a class is
13042         nested in.
13043
13044 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13045
13046         * security-core-clr.c, security-core-clr.h: CoreCLR security
13047         utility functions.
13048
13049         * Makefile.am: Added security-core-clr.[ch].
13050
13051         * security-manager.c, security-manager.h: Functions and enum for
13052         setting and getting the security mode.
13053
13054         * class.c: CoreCLR security checks.
13055
13056 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13057
13058         * icall-def.h, process.c, process.h: implemented icall to get
13059         user/system processor times.
13060
13061 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13062
13063         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13064         reader-lock-free jit_info_table.
13065
13066 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13067
13068         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13069
13070         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13071
13072         * object-internals.h (MonoException): Add missing _data member.
13073
13074 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13075
13076         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13077         checking that only methods with matching qname or fqname are picked
13078         from implemented interfaces.
13079
13080 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13081
13082         * verify.c (do_newarr):added, do type verification of
13083         newarr ops, push the right value on the eval stack.
13084         * verify.c (mono_method_verify): use do_newarr
13085
13086
13087 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13088
13089         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13090         factored the common code into get_boxable_mono_type, which
13091         is now using mono_type_get_full, this fixed byref related tests.
13092
13093 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13094
13095         * class.c: added mono_type_get_full, this function has the same
13096         behavior of mono_class_get_full but the returned MonoType has
13097         all metadata of the associated token in case of a typespec token.
13098         * class.c: added mono_type_retrieve_from_typespec, used by 
13099         mono_type_get_full to retrieve the token type.
13100         * class.c (mono_class_create_from_typespec): changed to use
13101         mono_type_retrieve_from_typespec.
13102         * class.c (mono_ldtoken): changed to use mono_type_get_full
13103         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13104         * class-internals.h: exported mono_type_get_full for internal use.
13105
13106 2007-08-16  Jb Evain  <jbevain@novell.com>
13107
13108         * domain.c (supported_runtimes): add entry for
13109         the 'moonlight' runtime version.
13110
13111 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13112
13113         * verify.c (mono_method_verify): small typo sliped in.  
13114
13115 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13116
13117         * verify.c (do_unbox_value): added, do type verification of
13118         unboxing ops
13119         * verify.c (mono_method_verify): use do_unbox_value
13120
13121
13122 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13123
13124         * verify.c (dump_stack_value): fixed typo, was printing string
13125         instead of object on stack.
13126         * verify.c (do_box_value): moved the byref check up as it leads
13127         to invalid code and should be done earlier.
13128         * verify.c: improved error messages for and ldobj
13129
13130 2007-08-15  William Holmes  <billholmes54@gmail.com>
13131
13132         * marshal.c (emit_marshal_custom): Omit the call to 
13133           marshal_native_to_managed when calling native to managed 
13134           and the argument is specified as an out argument.
13135
13136         Code is contributed under MIT/X11 license.
13137
13138 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13139
13140         * verify.c: fixed the type checks for generics, function pointers and vectors.
13141         Added type verification for ldobj and ldtoken. The verifier
13142         would segfault if header or signature of a method contained references
13143         to non-existant types.
13144
13145 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13146
13147         * marshal.c (cominterop_get_ccw): Patch from
13148         Bill Holmes to no walk up interface hierarchy. 
13149         All parent methods should be present in the interface for COM.
13150    
13151         Code is contributed under MIT/X11 license.
13152
13153 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13154
13155         * marshal.c (emit_marshal_com_interface): Patch from
13156         Bill Holmes to handle COM Interfaces as return values
13157         for native->managed calls.
13158    
13159         Code is contributed under MIT/X11 license.
13160
13161 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13162
13163         * marshal.c (cominterop_get_idispatch_for_object): Implement
13164         for runtime callable wrappers.
13165    
13166         Code is contributed under MIT/X11 license.
13167
13168 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13169
13170         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13171         so 2.0 types are accessible
13172
13173
13174 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13175
13176         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13177         once we load mscorlib.   Due to the order in which we initialize,
13178         the mono_assembly_load_full routine that loads mscorlib did not
13179         load friends.   We now load it once we load the
13180         mono_defaults.internals_visible_class class. 
13181
13182         * assembly.c: Expose the mono_load_friend_assemblies method.
13183
13184 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13185
13186         * verify.c: improved the handling of boxing, better
13187         type checking for unary ops and conversion. Fix bug
13188         regarding managed pointer compatibility checking
13189
13190 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13191
13192         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13193
13194         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13195
13196 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13197
13198         * reflection.c (dup_type): Remove.
13199         * class.c (dup_type): Remove.
13200         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13201         instead of the dodgy 'dup_type'.
13202         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13203         handle the case where 'dup_type' needed the second argument.
13204
13205 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13206
13207         * domain.c: Fix a warning.
13208
13209 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13210
13211         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13212         checking that methods with the same fqname are not overridden
13213         with a method from an ancestor.
13214
13215 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13216
13217         * threads.c (free_thread_static_data_helper): Avoid a crash if
13218         thread->static_data is not yet set.
13219
13220 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13221
13222         * marshal.c: Use correct image when emitting
13223         native wrapper for COM calls.
13224    
13225         Code is contributed under MIT/X11 license.
13226
13227 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13228
13229         * icall-def.h, security.c, security.h :
13230           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13231
13232 2007-08-07  Martin Baulig  <martin@ximian.com>
13233
13234         * mono-debug-debugger.h
13235         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13236
13237         * domain.c (mono_domain_free): Call
13238         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13239
13240 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13241
13242         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13243         * verify.c (in_same_block): code should test if either offset is inside the clauses
13244         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13245         and filter blocks
13246
13247 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13248
13249         * image.c (mono_image_close): Fix a leak.
13250
13251         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13252
13253         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13254
13255 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13256
13257         * domain.c, threads.c, threads-types.h: fix memory retention issue
13258         with thread static variables not being cleared on domain unload.
13259         Reuse thread static slots after domain unload.
13260
13261 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13262
13263         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13264         nullable type.
13265
13266         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13267         now done in mono_runtime_invoke_array.
13268
13269         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13270         receiver is a nullable type.
13271
13272         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13273         generic parameter.
13274
13275 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13276
13277         * marshal.c: Implement COM Objects as return type for 
13278         managed->unmanaged calls. Added Release calls for COM Object
13279         out/return values in managed->unmanaged calls.
13280
13281         Code is contributed under MIT/X11 license.
13282
13283 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13284
13285         * threads.h, threads-type.h: move the hazard pointer declarations
13286         to the private header.
13287
13288 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13289
13290         * file-io.c, appdomain.c: memory leak fixes.
13291
13292 2007-08-02  Dick Porter  <dick@ximian.com>
13293
13294         * socket-io.c
13295         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13296         SO_REUSEADDR setting into io-layer/sockets.c.
13297
13298 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13299
13300         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13301         from Object when called on a generic parameter. Fixes #82211.
13302
13303 2007-08-01  Dick Porter  <dick@ximian.com>
13304
13305         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13306         Fixes bug 79250 yet again.
13307
13308 2007-07-30  Martin Baulig  <martin@ximian.com>
13309
13310         Merged the `debugger-dublin' branch.
13311
13312         * mono-debug.h
13313         (MonoDebugDataTable): New typedef.
13314         (MonoDebugMethodAddressList): New typedef.
13315         (MonoDebugWrapperData): Removed.
13316         (MonoDebugSymbolTable): Removed `current_data_table',
13317         `current_data_table_size', `current_data_table_offset'.
13318         (MonoDebugDataItemType): Moved into mono-debug.c.
13319         (MonoDebugMethodJitInfo): Remove `address'.
13320         (mono_debug_data_table): New global variable.
13321         (mono_debug_lookup_method_addresses): New public function.
13322         (mono_debug_find_method): Take a `MonoMethod *', not a
13323         `MonoDebugMethodInfo *'.
13324
13325         * mono-debug.c: Drop support for the old symbol tables.
13326
13327 2007-06-28  Martin Baulig  <martin@ximian.com>
13328
13329         * mono-debug.c (mono_debug_debugger_version): New public variable.
13330
13331 2007-07-31  William Holmes  <billholmes54@gmail.com>
13332
13333         * metadata.c Changed mono_type_create_from_typespec to not insert
13334           the type into the hash map until after
13335           do_mono_metadata_parse_type has completed.
13336         Fixes Bug #82194
13337         Code is contributed under MIT/X11 license.
13338
13339 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13340
13341         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13342         generic parameter. Fixes #82211.
13343
13344 2007-07-27  Jb Evain  <jbevain@novell.com>
13345
13346         * pedump.c (dump_metadata, dump_metadata_header): dump
13347         versions contained in the metadata header.
13348
13349 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13350
13351         * threads.c: register small_id_table with the GC.
13352
13353 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13354
13355         * threads.c, threads.h, class-internals.h, object-internals.h:
13356         Hazard pointers, to be used by lock-free parallel algorithms.
13357
13358 2007-07-26  Dick Porter  <dick@ximian.com>
13359
13360         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13361         routine on non-windows platforms, as I've not managed to think of
13362         a non-kludgy way of doing this.  Finishes off bug 78739.
13363
13364 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13365
13366         * object.c: properly setup interface_bitmap in proxy vtables.
13367
13368 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13369
13370         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13371         to create unique shadow copy target directories, use the domain's
13372         serial number instead. Each domain gets a unique target directory
13373         that way.
13374
13375         * domain.c (mono_domain_create): added code to increment domain
13376         shadow copy serial number and cache the value in the current
13377         domain structure.
13378
13379         * domain-internals.h (struct _MonoDomain): added a new field -
13380         shadow_serial to hold the serial number used in generation of
13381         shadow-copy directories. This is to make sure that the directory
13382         name is unique for each and every domain created. We avoid a race
13383         condition with overriding assemblies already in use by other app
13384         domains.
13385
13386 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13387
13388         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13389         binding generic parameters.
13390
13391 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13392
13393         * metadata.c (do_mono_metadata_parse_generic_class): Use
13394         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13395         error.
13396
13397 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13398
13399         * loader.c, class-internals.h, reflection.c: removed the per-method
13400         generics hashtable: we use the global one through the call of
13401         mono_class_inflate_generic_method ().
13402
13403 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13404
13405         * class.c, metadata.c, class-internals.h: introduce yet another
13406         generics global cache for inflated methods (fixes 98% of the perf
13407         issue in bug #81806).
13408
13409 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13410
13411         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13412         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13413         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13414         return a MonoGenericInst containing (a copy) of those types.
13415         (mono_metadata_inflate_generic_inst): Update to changes.
13416         (mono_metadata_parse_generic_inst): Likewise.
13417         (mono_get_shared_generic_inst): Likewise.
13418         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13419         (mono_reflection_bind_generic_method_parameters): Likewise.
13420         * metadata-internals.h: Likewise.
13421         * icall.c (free_generic_context): Kill.
13422         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13423
13424         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13425         mono_metadata_type_dup.
13426         * marshal.c (mono_mb_create_method): Likewise.
13427
13428         * metadata.c (mono_metadata_type_dup): Rename from
13429         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13430         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13431         * marshal.c, metadata-internals.h: Update to changes.
13432
13433 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13434
13435         * class.c: fixed a small leak for array classes and removed warning.
13436
13437 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13438
13439         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13440         Return 0x8000000 for return parameters. Fixes #82161.
13441
13442 2007-07-21  Marek Habersack  <grendello@gmail.com>
13443
13444         * appdomain.c (get_shadow_assembly_location): append the current
13445         ticks value to the path. Avoids overwriting the same assemblies by
13446         several threads at the same time.
13447
13448 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13449         and Raja R Harinath  <rharinath@novell.com>
13450
13451         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13452         Simplify slightly.
13453         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13454         property for testing if a method is a generic method definition.
13455
13456 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13457
13458         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13459
13460 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13461
13462         * verify.c: used function from private branch, reverted to the one in class.h 
13463
13464 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13465
13466         * verify.c: a typo slipped in and the code wont compile
13467
13468 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13469
13470         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13471         disabled box instruction as it is doing the wrong thing
13472         improved stack dump messages, now it is easier to debug type related issues
13473
13474
13475 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
13476
13477         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
13478
13479 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13480
13481         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
13482         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
13483         grouped with class and valuetype. This change will simply 
13484         the code as it should be handled just like unmanaged pointers.
13485
13486 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13487
13488         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
13489
13490 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13491
13492         * verify.c: several stack merge issues fixed, reference comparisons now
13493         check the type size. strict type check now works correctly.
13494         added more uses of IS_MANAGED_POINTER macro.
13495         fixed issues pointed by running the test suite against .net.
13496         
13497
13498 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13499
13500         * class.c, loader.c, class-internals.h: Removed the
13501         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
13502         defines.
13503
13504         * icall.c: Better error checking in some internal reflection
13505         methods.
13506
13507 2007-07-18  William Holmes  <billholmes54@gmail.com>
13508
13509         * filewatcher.c : removed unused variable 'filename' in 
13510           ves_icall_System_IO_FSW_SupportsFSW
13511
13512 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13513
13514         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13515         obsolete, removed.
13516
13517 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13518
13519         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
13520         
13521         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
13522
13523 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13524
13525         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13526         Implement generics support.
13527         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13528
13529         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
13530         type_args and method_args arguments.
13531         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13532         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13533         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
13534
13535 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
13536
13537         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
13538           It adds a rootimage parameter to mono_reflection_get_type_internal,
13539           adds new function mono_reflection_get_type_with_rootimage and use
13540           the rootimage to resolve the types instead of the current image
13541
13542 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13543
13544         * culture-info-table.h: Forgot to update after r78304.
13545
13546 2007-07-13  Raja R Harinath  <rharinath@novell.com>
13547
13548         * class.c (mono_class_is_open_constructed_type)
13549         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
13550
13551 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
13552
13553         * class.c (mono_bounded_array_class_get):  method fails if used with
13554         an incomplete TypeBuilder enum (no basetype field), fixed it by 
13555         avoiding calculating the size for such array as it cannot be instantiated.
13556         Fix bug #82015
13557
13558 2007-07-12  Raja R Harinath  <rharinath@novell.com>
13559
13560         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
13561         field.
13562         * metadata.c, reflection.c: Update to changes.
13563
13564 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
13565
13566         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
13567         mono_class_is_valid_enum, they are used to valide a enum when loading.
13568         * reflection.c: used new functions to throw TypeLoadException when and
13569         invalid enum is build with TypeBuilder. Fixes #82018
13570   
13571 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13572
13573         * object.c: forgot commit of mono_class_setup_methods () to access
13574         iface->methods.
13575         * object-internals.h: added a few more handy fields to
13576         MonoIMTCheckItem.
13577
13578 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13579
13580         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
13581         iface->methods.
13582
13583 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13584
13585         * class-internals.h, object-internals.h, object.c: IMT-based
13586         interface invocation core from Massimiliano Mantione
13587         (massi@ximian.com) with a reworked arch-specific interface,
13588         bsearch implementation and a few bugfixes and memory savings by me.
13589
13590 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
13591
13592         * class.c (mono_class_create_from_typedef): mono would segfault if 
13593         an enum did not have a __value field. It now throws a TypeLoadException
13594         for such cases. Fix bug #82022
13595
13596 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13597
13598         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
13599
13600 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13601
13602         * class.c (mono_class_init): If a class is already inited but has
13603         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
13604
13605 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13606
13607         * class.c: Properly handle the case of an unimplemented interface
13608         method.  Fixes: 81673.
13609
13610 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13611
13612         * class-internals.h, object.c: cleanup patch from massi: use
13613         MonoVTable->interface_bitmap since the vtable interfaces offset array
13614         is going away.
13615
13616 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13617
13618         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
13619         GetMDStreamVersion icall instead.
13620
13621 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
13622
13623         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
13624         not use mono_dl_build_path() with a full library name: makes
13625         fallbacks to libgaim and libfam work.
13626
13627 2007-07-06  William Holmes  <billholmes54@gmail.com>
13628
13629         * assembly.c: Added a continue statement in probe_for_partial_name when
13630          parse_assembly_directory_name fails.  Fixes : 82002
13631
13632 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
13633
13634         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
13635         and added a verification  for TYPEDBYREF.
13636         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
13637         make native int interchangeable with int32 and some small cleanup and formating.
13638         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
13639         handle byref of byref.
13640         * verify.c (push_local): handle byref of byref.
13641         * verify.c (do_binop): invalid mix of values is unverifiable
13642         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
13643         added visibility checks
13644         * verify.c (field related method): added visibility checks
13645         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
13646
13647 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
13648
13649         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
13650         string.
13651
13652 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13653
13654         * profiler.c (mono_profiler_load): Fix an off-by-one error.
13655
13656         * marshal.c (emit_marshal_string): When returning a string from managed code,
13657         allways make a copy even for unicode strings. Fixes #81990.
13658
13659 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
13660
13661         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
13662         of byref generic inst types (bug #81997).
13663
13664 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13665
13666         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
13667         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
13668
13669 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
13670
13671         * marshal.c (emit_marshal_string): Add support for unicode strings in
13672         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
13673
13674 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
13675
13676         * verify.c: field load/store are now verified, missing only access checks now
13677
13678 2007-06-28  Martin Baulig  <martin@ximian.com>
13679
13680         * mono-debug.c (mono_debug_debugger_version): New public variable.
13681
13682 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
13683
13684         * locales.c: When constructing DateTimeFormat or NumberFormat for
13685         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
13686         MonoCultureInfo contructed from the current locale is always
13687         read-only and has UseUserOverride set to true. All MonoCultureInfo
13688         instances returned for GetCultures have both IsReadOnly and
13689         UseUserOverride set to true. Fixes part of bug #81930.
13690
13691 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
13692
13693        * icall-def.h: Update System.__ComObject icalls
13694        * marshal.c: Avoid managed transition (and object creation)
13695        when looking up COM interface in RCW.
13696        * marshal.h: Ditto.
13697        
13698        Code is contributed under MIT/X11 license.
13699
13700 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13701
13702         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13703         to avoid crashes during assembly unloading.
13704
13705 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13706
13707         Fix MethodInfo.IsGenericMethodDefinition
13708         * reflection.c (mono_reflection_bind_generic_method_parameters):
13709         Rearrange code to ensure we always uses a generic method definition.
13710         * class.c (mono_class_inflate_generic_method_full): Set
13711         'generic_container' field only for generic method definitions.
13712         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13713         Use presense of 'generic_container' field as indication of being a
13714         generic method definition.
13715
13716 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13717
13718         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13719
13720         * object-internals.h: Reflect changes in the layout of the managed Delegate
13721         class.
13722         
13723         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13724         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13725         runtime memory used by the dynamic method. Fixes #77146.
13726
13727 2007-06-21  Dick Porter  <dick@ximian.com>
13728
13729         * file-io.h: 
13730         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13731         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13732         81767.
13733
13734 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13735
13736         * reflection.c (method_encode_methodspec): Add a tripwire.
13737         * class.c (inflate_generic_type): The fully open generic type is
13738         not the same as the generic type definition.
13739
13740 2007-06-21  Martin Baulig  <martin@ximian.com>
13741
13742         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13743
13744         * mono-debug-debugger.h
13745         (MonoDebuggerBreakpointInfo): Removed.
13746         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13747         (mono_debugger_remove_breakpoint): Likewise.
13748         (mono_debugger_breakpoint_callback): Likewise.
13749         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13750
13751 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13752
13753         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13754         generic type is not the same as the generic type definition.
13755         * class.c (mono_generic_class_get_class): Likewise.
13756
13757 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13758
13759         * icall.c: The second argument to 
13760         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13761         is a MonoType not a MonoClass.
13762
13763 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13764
13765         * verify.c: support for function pointers in the verifier
13766
13767 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13768
13769         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13770
13771 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13772
13773         * assembly.c: removed Mono.Data.SqliteClient from the list of
13774         forward-compatible assemblies as it breaks the ABI (bug #81899).
13775
13776 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13777
13778         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13779         lookup/update with the loader lock.
13780         * reflection.c (mono_class_bind_generic_parameters): No need to
13781         protect mono_metadata_lookup_* with the loader lock.
13782         * class.c (inflate_generic_type): Likewise.
13783         
13784         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13785         on a generic instantiated type.
13786
13787 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13788
13789         *verify.c: produce meanfull error messages on verification error
13790         *verify.c: fixed some cases of verification errors reported as validation errors
13791         *pedump.c: fixed the error name array, now it shows validation errors properly
13792         *verify.h: fixed the contant that should be used for verification errors
13793
13794 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13795
13796         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13797         for bug #77596, 81858 and 80743 (generics data structures on domain
13798         unload).
13799
13800 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13801
13802         Avoid allocating 'MonoGenericContext' on the heap.
13803         * class-internals (_MonoMethodInflated::context): Make field
13804         inline, not a pointer.
13805         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13806         stack.  Use the context embedded within the inflated method as the
13807         hash key, rather than 'new_context'.
13808         * class.c (inflate_generic_context): Simplify.  Return a struct
13809         rather than allocating on the heap.
13810         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13811         doesn't salt away a copy of the context -- simplifying the
13812         lifetime rules of a 'MonoGenericContext *'.
13813         (mono_method_get_context): Return pointer to embedded context.
13814         (setup_generic_array_ifaces): Allocate temporary context on stack.
13815         * reflection.c (inflate_mono_method): Likewise.
13816         (mono_reflection_bind_generic_method_parameters): Likewise.
13817         Use the context embedded within the inflated method as the hash key.
13818
13819         Avoid a source of allocation of 'MonoGenericContext'.
13820         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13821         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13822         * class.c: Update to changes.
13823         (mono_generic_class_get_context): Simplify drastically.  Now just
13824         returns a pointer to the field.
13825         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13826         argument as a const pointer.
13827         (mono_metadata_generic_context_equal): Likewise.
13828         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13829         Update to changes.
13830
13831 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13832
13833         * verify.c improved the handling of brtrue/brfalse, factored out common code
13834
13835 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13836
13837         Kill MonoGenericMethod.
13838         * class-internals.h (MonoGenericContext::method_inst): Rename from
13839         'gmethod' and convert to a MonoGenericInst.
13840         (MonoGenericMethod): Remove.
13841         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13842         * loader.c (method_from_methodspec): Update to changes.  Use a
13843         MonoGenericContext as the key to the hashtable.
13844         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13845         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13846         (mono_metadata_generic_context_hash): Likewise from
13847         'mono_metadata_generic_method_hash'.  Change hash function.
13848         (mono_metadata_load_generic_params): Update to changes.
13849         (mono_get_shared_generic_method): Remove.
13850         * metadata-internals.h (mono_get_shared_generic_method): Remove.
13851         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
13852         (inflate_generic_context): Likewise.
13853         (mono_class_inflate_generic_method_full): Likewise.
13854         (setup_generic_array_ifaces): Likewise.
13855         (mono_class_create_from_typespec): Likewise.
13856         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
13857         (method_encode_methodspec): Update callsite.
13858         (reflection_methodbuilder_to_mono_method): Update to changes.
13859         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
13860         MonoGenericContext as the key to the hashtable.
13861         (inflate_mono_method): Update to changes.
13862
13863         * class-internals.h (MonoGenericMethod::container): Remove.
13864         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13865
13866 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13867
13868         * profiler-private.h, profiler.c, profiler.h: added API to profile
13869         exception events.
13870
13871 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13872
13873         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
13874
13875 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13876
13877         * verify.c: method invocation is now validated, now we verify parameter types on stack.
13878         Fixed overflow and underflow not aborting the verification process.
13879
13880 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13881
13882         * class-internals.h (MonoStats): Added stats entries for dynamic
13883         code allocations.
13884
13885 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13886
13887         * loader.c (mono_free_method): Free header->locals and header->clauses.
13888
13889         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13890         dynamic case.
13891
13892         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13893
13894         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13895
13896 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13897
13898         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13899         the tables.
13900
13901 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13902
13903         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13904
13905 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13906
13907         MonoGenericMethod on a diet
13908         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13909         here ...
13910         (_MonoGenericMethod::reflection_info): ... from here.
13911         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13912         Update to changes.
13913         * reflection.c (inflate_mono_method): Likewise.
13914         (mono_reflection_bind_generic_method_parameters): Likewise.
13915
13916 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13917
13918         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13919         *verify.c: factored long ldarg forms to share code with short forms
13920
13921 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13922
13923         *verify.c: fixed code formating factored some duplicate code
13924         into a new function
13925
13926         *verify.h: fixed binary incompatibility introduced earlier
13927
13928         *pedump.c: fixed formating
13929
13930 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13931
13932         Fix assertion when disassembling Mono.C5.dll
13933         * loader.c (method_from_methodspec): Avoid inflating a method
13934         twice with the same context.  If the methodref is inflated, use
13935         the declaring method instead.
13936
13937         * class.c (mono_class_from_generic_parameter): Fix case similar to
13938         bug #81830 handled below, but for method containers.
13939
13940 2007-06-10  Raja R Harinath  <harinath@gmail.com>
13941
13942         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
13943         get_shared_generic_class.  Directly inflate the instance.
13944         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
13945         (inflate_generic_class): Delete.
13946         (get_shared_generic_class): Delete.  Move setting of
13947         'cached_class' and 'cached_context' ...
13948         * metadata.c (mono_metadata_lookup_generic_class): ... here.
13949
13950         * metadata.c (mono_metadata_lookup_generic_class): Change
13951         signature to take the components of a MonoGenericClass rather than
13952         an allocated MonoGenericClass.  Change semantics to be intern-like.
13953         * reflection.c (mono_class_bind_generic_parameters): Update to
13954         changes.  Make locking region tighter.
13955         * class.c (inflate_generic_class): Update to changes.
13956         (get_shared_generic_class): Likewise.
13957         * metadata-internals.h: Likewise.
13958
13959         * reflection.c (mono_class_bind_generic_parameters): Take and
13960         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
13961         (mono_reflection_bind_generic_parameters): Use
13962         'mono_class_bind_generic_parameters' rather than duplicate the code.
13963         * class.c (mono_bounded_array_class_get): Update to changes.
13964         * object-internals.h: Likewise.
13965
13966         * reflection.c (mono_class_bind_generic_parameters): Only support
13967         parameterizing generic type definitions.  Remove support for other
13968         open types.
13969
13970 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
13971
13972         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
13973
13974         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
13975         in the dynamic case.
13976
13977 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
13978
13979         * threads.c: When cleaning up thread, reset the Background bit.
13980         Fixes bug #81720.
13981
13982 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
13983
13984        * metadata.c: Move variable declarations to top of scope.
13985        * verify.c: Move variable declarations to top of scope.
13986
13987        Code is contributed under MIT/X11 license.
13988
13989 2007-06-08  Raja R Harinath  <rharinath@novell.com>
13990
13991         * reflection.c (mono_class_bind_generic_parameters): Replace
13992         open-coded loop with mono_metadata_inflate_generic_inst.
13993
13994         * class.c (get_shared_generic_class): Don't call
13995         mono_get_shared_generic_inst.  Use the container's own
13996         'class_inst'.
13997
13998         * metadata.c (mono_metadata_load_generic_params): Move
13999         initialization of 'context' field here from ...
14000         * class.c (mono_class_create_from_typedef): ... here, and ...
14001         * loader.c (mono_get_method_from_token): ... here.
14002
14003         * class.c (get_shared_generic_class): Rename from
14004         mono_get_shared_generic_class and make static.
14005         (mono_get_shared_generic_inst): Move to metadata.c.
14006         * loader.c (mono_get_shared_generic_method): Likewise.
14007         * class-internals.h, metadata-internals.h: Update to changes.
14008
14009         Fix #81830
14010         * class.c (mono_class_from_generic_parameter): Don't assume a
14011         generic container owner exists.  Generic containers from monodis
14012         don't have any.
14013
14014 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
14015
14016         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
14017         * verify.h: new typedefs to returns the non-verifiable status
14018         * verify.c: initial implementation of generics, stack merging and object compatibility check
14019
14020 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14021
14022         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14023         a MonoInternalHashTable again (fixed bug in internal hash table
14024         code).
14025
14026 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14027
14028         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14029         MonoInternalHashTable again (fixed bug in internal hash table
14030         code).
14031
14032 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14033
14034         * class.c, image.c, class-internals.h, domain.c,
14035         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
14036         changes.  Have to figure out what makes them break the SWF
14037         regression.
14038
14039 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14040
14041         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14042         a MonoInternalHashTable now.
14043
14044 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14045
14046         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14047         MonoInternalHashTable now.
14048
14049 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14050
14051         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14052         invoke_impl code.
14053
14054         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14055
14056         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14057         dependent trampoline.
14058
14059         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14060
14061         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14062
14063 2007-05-29  Robert Jordan  <robertj@gmx.net>
14064
14065         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14066
14067 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14068
14069         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14070
14071 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14072
14073        * marshal.c: Fix interface lookup loops for
14074        cominterop_get_com_slot_for_method and 
14075        cominterop_get_method_interface. Only need to lookup
14076        if type is a class, else use interface type method is on.
14077
14078        Code is contributed under MIT/X11 license.
14079
14080 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14081
14082         * reflection.c: HasSecurity can be present even if no specially 
14083         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14084         SecurityAttribute). Fix CAS regression tests on buildbot.
14085
14086 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14087
14088        * appdomain.c: Add configure checks for header files.
14089        * image.c: Add configure checks for header files.
14090        * file-io.c: Add configure checks for header files.
14091        * debug-mono-symfile.c: Add configure checks for header files.
14092        * threadpool.c: Add configure checks for header files.
14093        * console-io.c: Add configure checks for header files.
14094        * profiler.c: Add configure checks for header files.
14095        * rawbuffer.c: Add configure checks for header files.
14096        * icall.c: Add configure checks for header files.
14097        * rand.c: Add configure checks for header files.
14098        * socket-io.c: Add configure checks for header files.
14099
14100        Code is contributed under MIT/X11 license.
14101
14102 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14103
14104         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14105         assertion as it breaks the build.
14106         
14107         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14108
14109         * reflection.c (lookup_custom_attr): Make a copy here too.
14110
14111         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14112         dynamic images.
14113
14114         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14115         images.
14116
14117         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14118         info.
14119
14120 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14121
14122         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14123         (load_cattr_value): Ditto.
14124
14125 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14126
14127         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14128
14129 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14130
14131         * threads.c: In "start_wrapper", set apartment_state to MTA if
14132         apartment_state is Unknown and we're running on 2.0 profile or
14133         higher.
14134         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14135         to main method, then set apartment_state to Unknown on 1.0 profile,
14136         and MTA on 2.0 profile.
14137
14138 2007-05-16  Jb Evain  <jb@nurv.fr>
14139
14140         * class-internals.h (MonoDefaults): Add an attribute_class and
14141           customattribute_data_class.
14142         * domain.c (mono_init_internal): Populate them.
14143         * reflection.c: Use them to remove duplicates. Make a vew
14144         MonoClass variables `static'.
14145
14146 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14147
14148         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14149         step in implementing IMT, so that all isinst checks now can go
14150         through the bitmap.
14151         This was needed because vtables for TransparentProxy need to look
14152         like the vtable of the "target" class, so they need to point to
14153         its interface bitmap directly.
14154
14155         * object.c: inside "mono_class_create_runtime_vtable" and
14156         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14157
14158 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14159
14160         * object-internals.h
14161           culture-info.h : added territory field in MonoCulture and
14162           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14163         * locales.c : fill territory field above too.
14164         * culture-info-table.h : regenerated.
14165
14166 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14167
14168         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14169         Fixes #81599.
14170
14171 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14172
14173         * object.c: Always initialize apartment, even if 
14174         there is no custom attributes on entry point.
14175         
14176         Code is contributed under MIT/X11 license.
14177
14178 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14179
14180         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14181         * metadata.c: If no encoding is set, check for unicode
14182         on class.
14183         
14184         Code is contributed under MIT/X11 license.
14185
14186 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14187
14188         * threads.c: Handle if mono_thread_current returns NULL 
14189         
14190         Code is contributed under MIT/X11 license.
14191
14192 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14193
14194         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14195         in start_wrapper. Added mono_thread_init_apartment_state and
14196         mono_thread_cleanup_apartment_state.
14197         * object.c: Initialize thread apartment state on main thread
14198         by checking for STAThreadAttribute on entry point.
14199         * object-internals.h: Add apartment_state field to MonoThread.
14200         * threads-types.h: Add unmanaged definition of 
14201         System.Threading.ApartmentState, MonoThreadApartmentState.
14202         
14203         Code is contributed under MIT/X11 license.
14204         
14205 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14206
14207         * class.c: Fix windows build.
14208         * class-internals.h: Fix windows build.
14209         
14210         Code is contributed under MIT/X11 license.
14211
14212 2007-05-08  Robert Jordan  <robertj@gmx.net>
14213
14214         * process.c (CreateProcess_internal):
14215         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14216         .CreateNoWindow was specified. Fixes #81496.
14217
14218 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14219
14220         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14221         step in implementing IMT, replaced it with two compact arrays
14222         (interfaces_packed and interface_offsets_packed) and a bitmap that
14223         is used for isinst checks (interface_bitmap).
14224
14225         * class.c: (compare_interface_ids): compare function to pass to
14226         bsearch when looking for an interface with a given id.
14227         (mono_class_interface_offset): reimplemented using bsearch on
14228         interfaces_packed, getting the offset from interface_offsets_packed.
14229         (print_implemented_interfaces): utility debugging function.
14230         (setup_interface_offsets): reworked to initialize interfaces_packed,
14231         interface_offsets_packed and interface_bitmap.
14232
14233         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14234         with uses of interfaces_packed and interface_offsets_packed.
14235
14236 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14237
14238         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14239         mono_class_interface_offset prototype to wrap all accesses to
14240         "MonoClass.interface_offsets".
14241
14242         * class.c: Implemented mono_class_interface_offset, and wrapped all
14243         accesses to "MonoClass.interface_offsets".
14244
14245         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14246         "MonoClass.interface_offsets".
14247
14248 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14249
14250         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14251         GetMethodFromHandle overloads (bug #78637).
14252
14253 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14254
14255         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14256         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14257
14258 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14259
14260         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14261         #81498.
14262
14263         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14264         gracefully.
14265         (mono_custom_attrs_from_index): Ditto.
14266
14267         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14268         Fixes #81501.
14269
14270 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14271
14272         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14273         is now allocated from a mempool.
14274
14275 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14276
14277         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14278         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14279
14280 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14281
14282         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14283         mono_loader_clear_error () too late. Fixes #81463.
14284
14285 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14286
14287         * culture-info-table.h : regenerated.
14288
14289 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14290
14291         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14292         is missing.
14293
14294 2007-04-25  Dick Porter  <dick@ximian.com>
14295
14296         * Makefile.am: Put the mingw enforced-optimisation back into the
14297         PLATFORM_WIN32 section.
14298
14299 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14300
14301         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14302         patch.
14303
14304         * image.c (mono_image_load_module): New API function to load a module reference.
14305
14306         * image.c (load_modules): Load modules lazily. Fixes #80812.
14307
14308         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14309         
14310         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14311
14312         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14313         to mono_image_load_module_dynamic.
14314
14315 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14316
14317         * marshal.c: Fix calling convention for CCW on non-windows
14318         platforms. STDCALL on windows, CDECL everywhere else to work 
14319         with XPCOM and MainWin COM.
14320         
14321         Code is contributed under MIT/X11 license.
14322
14323 2007-04-23  Martin Baulig  <martin@ximian.com>
14324
14325         Fix #80969.
14326
14327         * loader.c
14328         (method_from_memberref): Added `gboolean *used_context' argument.
14329         (mono_get_method_from_token): Likewise.
14330         (mono_get_method_full): Don't insert the method in the cache when
14331         `used_context' is true.
14332
14333 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14334
14335         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14336
14337         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14338         create new MonoTypes for returned types.
14339         * class.c (mono_generic_class_get_class): Export mono-internal.
14340         * class-internals.h: Update to changes.
14341
14342 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14343
14344         * threadpool.c, threadpool.h, icall-def.h: patch from
14345         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14346
14347 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14348
14349         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14350         
14351         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14352
14353         * threads.c (mono_thread_get_stack_bounds): New helper function.
14354
14355         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14356         Correctly compute stack bounds when attaching. Fixes #81394.
14357
14358 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14359
14360         * reflection.c: fix handling of doubles in custom attributes
14361         for the arm-fpa format (bug #81368).
14362
14363 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14364
14365         * reflection.c (assembly_add_win32_resources): Mildly relax an
14366         bounds check to let the end pointer point just past the end of the
14367         allocated buffer.  (may fix #81384)
14368
14369 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14370
14371         * culture-info-table.h : regenerated.
14372
14373 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14374
14375         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14376         the thread is aborted early.
14377
14378 2007-04-05  Dick Porter  <dick@ximian.com>
14379
14380         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14381         FindFirstFile()/FindNextFile() to find entries.  This lets the
14382         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14383         81038.
14384
14385         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14386         the parameters of
14387         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14388
14389 2007-04-04  Martin Baulig  <martin@ximian.com>
14390
14391         * debug-helpers.c
14392         (mono_method_desc_full_match): Add support for nested classes.
14393
14394 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14395
14396         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14397
14398 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14399
14400         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14401         waiting for too many threads.
14402
14403 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14404
14405         * environment.c: Fix return value check on uname so we can get the 
14406         executing version on Solaris operating systems.
14407
14408 2007-03-28  Jb Evain  <jbevain@gmail.com>
14409
14410         * class.c (mono_type_get_name_recurse): Complete the
14411         fix for the creation of assembly qualified names for
14412         pointer types. Fixes #81208.
14413
14414 2007-03-27  Dick Porter  <dick@ximian.com>
14415
14416         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14417         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14418         changed.
14419
14420         * threads.c
14421         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14422         the value of ReleaseMutex().
14423
14424 2007-03-27  Dick Porter  <dick@ximian.com>
14425
14426         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14427         in little-endian order, not network endian, so must be converted
14428         to host endian here.  Fixes bug 80593.
14429
14430 2007-03-22  Jb Evain  <jbevain@gmail.com>
14431
14432         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14433         qualified names for pointer types. Fixes #81208.
14434
14435 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14436
14437         * marshal.c: Add support for PreserveSigAttribute. 
14438         
14439         Code is contributed under MIT/X11 license.
14440
14441 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14442
14443         * process.c: Fix endianness issues. Fixes #81126.
14444
14445         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14446         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14447
14448         * image.c (mono_image_lookup_resource): Make this work on big-endian
14449         machines.Change API contract so the caller needs to free the return value.
14450         
14451         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14452         API change.
14453         
14454 2007-03-14  Martin Baulig  <martin@ximian.com>
14455
14456         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14457         mono_type_get_desc() as well.
14458
14459 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14460
14461         * icall.c:  Fix environ access in VS.  
14462         
14463 2007-03-13  Alp Toker  <alp@atoker.com>
14464
14465         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14466         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14467         #63841.
14468
14469 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14470
14471         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14472         circular references among dynamic methods. Fixes #81091.
14473
14474         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
14475
14476 2007-03-09  Martin Baulig  <martin@ximian.com>
14477
14478         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
14479
14480 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
14481
14482         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
14483         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
14484         
14485         Code is contributed under MIT/X11 license.
14486         
14487 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
14488
14489         * loader.c: Reapply patch for bug #79424.
14490
14491 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14492
14493         * metadata.c (mono_type_to_unmanaged): Only convert object to
14494         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
14495
14496 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
14497
14498         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
14499         (and incorrectly set) is_reference field from MonoGenericInst.
14500
14501 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14502
14503         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
14504         a little earlier.
14505
14506         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
14507
14508         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14509
14510 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14511
14512         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14513         FileOptions.1 value to mean "temporary", map that to
14514         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14515
14516         Fixes 80688
14517
14518 2007-03-03  Marek Habersack  <mhabersack@novell.com>
14519
14520         * appdomain.c: implement MS .Net style shadow copying. Copies of
14521         the assemblies are made in a subdirectory of the dynamic base
14522         directory, the assembly names are preserved.
14523         Copy .mdb and .config files along with the assemblies being shadowed.
14524
14525 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14526
14527         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
14528         (emit_marshal_handleref): Ditto.
14529
14530         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
14531         on Visual C++. Fixes #80671.
14532
14533 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14534
14535         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
14536         for clone operations.
14537
14538 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14539
14540         * marshal.c: Fix warnings.
14541
14542 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
14543
14544         * loader.c: allow case-insensitive matching of the dll name
14545         in dllmap handling when prefixed with "i:".
14546
14547 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
14548
14549         * threads.c: Fix #ifdef for dummy_apc function for VS.
14550
14551 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14552
14553         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
14554
14555 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
14556         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
14557         giving precedence to the methods with a fully qualified name
14558         (InterfaceName.MethodName) when building the interface sections
14559         of the vtable.
14560
14561 2007-02-16  Dick Porter  <dick@ximian.com>
14562
14563         * threadpool.c (append_job): Fix fast-path array handling, so it's
14564         less likely the array will grow exponentially when the load is
14565         heavy.
14566
14567 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14568
14569         * metadata-internals.h, loader.c: fix dllmap lookup order
14570         for non-function maps, too, and prepare for fallback code.
14571
14572 2007-02-12  Robert Jordan  <robertj@gmx.net>
14573
14574         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
14575         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
14576         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
14577         GlobalFree. Fixes a part of bug #77075.
14578
14579 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
14580
14581         * loader.c: implemented typedef parent in field memberref.
14582
14583 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
14584
14585         * marshal.c: Fix warnings and remember to call Release on
14586         IUnknown of RCW.
14587         
14588         Code is contributed under MIT/X11 license.
14589
14590 2007-02-10  Miguel de Icaza  <miguel@novell.com>
14591
14592         * class-internals.h: Add MonoHandleRef definition, and
14593         handleref_class to mono_defaults. 
14594
14595         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
14596         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
14597
14598         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
14599         (do nothing on this stage)
14600         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
14601         (emit_marshal_handleref): New method, used for argument handling
14602         of HandleRefs. 
14603
14604 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
14605
14606         * class.c (mono_class_setup_parent): Lazily init com types.
14607         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
14608         init com types.
14609         * object.c (mono_remote_class_vtable): Lazily init com types.
14610         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
14611         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
14612         * domain-internals.h: Expose mono_init_com_types.
14613         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
14614         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
14615         Add support for COM Callable Wrapper marshalling.
14616         * marshal.h: Add icall definitions.
14617         * gc.c: Handle freeing of CCWs in finalizer code.
14618         
14619         Code is contributed under MIT/X11 license.
14620
14621 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
14622
14623         * reflection.c: changed all the signature encoding code to use
14624         a variable-sized buffer.
14625
14626 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14627
14628         * marshal.c: locking fixes: never take the loader lock
14629         or other runtime locks when holding the marshal lock
14630         (fixes bug#80664).
14631
14632 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
14633
14634         * marshal.c: make the delegate function pointer mapping
14635         work for the moving GC.
14636
14637 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
14638
14639         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
14640         for bug #80618.
14641
14642 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14643
14644         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
14645         gmodule.
14646
14647 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14648
14649         * threadpool.c: made the code moving-GC safe.
14650
14651 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14652
14653         * assembly.c, boehm-gc.c, class-internals.h, class.c,
14654         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
14655         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
14656         warning cleanup.
14657         * reflection.c: warning cleanup, some threading and moving GC fixes.
14658
14659 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
14660
14661         * class.c, loader.c: create the needed Set/Get/Address array methods
14662         as well as the .ctors in mono_class_init (), fixes bug #80567.
14663
14664 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14665
14666         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
14667         we doesn't decrease its alignment. Should fix the sparc build.
14668
14669 2007-01-24  Dick Porter  <dick@ximian.com>
14670
14671         * socket-io.c
14672         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14673         Create the returned object if we need to ignore an unsupported
14674         socket option.  Fixes a segfault reported by Atsushi.
14675
14676 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14677
14678         * class.c, object.c: restrict GC-tracked fields to
14679         UIntPtr fields used inside corlib, so we provide better
14680         type info to the GC and also allow broken packing as in
14681         bug #80580.
14682
14683 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
14684
14685         * sgen-gc.c: removed duplicated function.
14686
14687 2007-01-19  Miguel de Icaza  <miguel@novell.com>
14688
14689         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
14690         value that means that the value is not supported, but that we
14691         should not return a failure, but instead report this as a
14692         successful operation.
14693
14694 2007-01-19  Raja R Harinath  <rharinath@novell.com>
14695
14696         Fix tests/bug79956.2.il
14697         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
14698         (mono_generic_class_get_class): If the generic definition in an
14699         enum, copy over other fields related to it.
14700
14701 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14702
14703         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14704         genericinst enums (bug #79215).
14705
14706 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14707         * class.c: Fix bug 80307.
14708
14709 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14710
14711         * image.c: if the file table is not present, try to load
14712         all the modules, since we don't have info about them
14713         having or not metadata (bug #80517).
14714         * assembly.c: allow mono_assembly_load_references () to
14715         work for netmodules.
14716
14717 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14718
14719         * image.c, metadata-internals.h, object.c: execute module
14720         cctors when running on the 2 runtime if present (bug #80487).
14721
14722 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14723
14724         * icall.c: optimized InitializeArray() on bigendian.
14725
14726 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14727
14728         * icall.c: fix for the broken ARM FPA double format.
14729
14730 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14731
14732         * icall.c: handle endian issues for r4 and r8 types, too, in
14733         the InitializeArray() icall.
14734
14735 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14736
14737         * loader.c (mono_loader_error_prepare_exception): Clear the error
14738         once we have extracted the information from it, do this before we
14739         call into the JIT's class loading mechanisms.
14740
14741         * object.c (mono_class_create_runtime_vtable): Do not clear the
14742         loader error before calling mono_class_get_exception_for_failure
14743         as the loader error is needed inside
14744         mono_class_get_exception_for_failure to throw the error (thinko).
14745
14746         Fixes #80521
14747         
14748 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14749
14750         * reflection.c: align fields rva data so it's faster to load at
14751         runtime.
14752
14753 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14754
14755         Prepare to simplify GenericMethod handling.
14756         * class-internals.h (mono_method_get_context): New accessor function.
14757         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14758         rather than directly accessing '->context' field.
14759
14760         * class-internals.h (_MonoGenericParam.method): Move ...
14761         (_MonoGenericContainer): ... here.  Add into union with klass field.
14762         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14763         Update to changes.
14764
14765 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14766
14767         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14768         the wrapper type enum and reduce relocations.
14769
14770 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14771
14772         * reflection.c (inflate_mono_method): Reuse method instantiation
14773         from the generic method, if available.
14774
14775 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14776
14777         * marshal.c (emit_marshal_variant): Fix conv_arg
14778         type in last commit, based on whether parameter is byref.
14779         
14780 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14781
14782         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14783         marshalling.
14784         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14785         MONO_TYPE_OBJECT back for VARIANT support.
14786
14787 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14788
14789         * marshal.c, marshal.h, icall-def.h: Implement 
14790         Marshal.ReAllocCoTaskMem.
14791
14792 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14793
14794         * marshal.c: memory retention fixes: use the proper
14795         image cache for runtime_invoke method lookups.
14796
14797 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14798
14799         * mempool.c: added code to help debug mempool allocations.
14800
14801 2007-01-11  Dick Porter  <dick@ximian.com>
14802
14803         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14804         support (experimenting with faking it with IP_MTU_DISCOVER for
14805         systems that don't have IP_DONTFRAGMENT.)
14806         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14807         icall.
14808
14809         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14810
14811         * socket-io.h: Add new fields to MonoSocketAsyncResult
14812         corresponding to the new ones in Socket.cs.
14813
14814 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14815
14816         Fix IronPython regression mentioned in #80249
14817         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14818         'cached_context' field, since it may have been initialized as a
14819         side-effect of metadata parsing.
14820
14821         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14822         (_MonoGenericClass.cached_class): Move here and rename from lone
14823         remaining field of ...
14824         (_MonoInflatedGenericClass): ... this.  Remove.
14825         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14826         to changes.
14827
14828         Fix mcs/tests/test-128.cs regression.
14829         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14830         2007-01-10 change below.
14831         [MONO_TYPE_OBJECT]: Recurse into array case.
14832
14833 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14834
14835         * class-internals.h (mono_get_inflated_generic_class): Remove.
14836         * class.c (mono_get_inflated_generic_class): Remove.
14837         (mono_generic_class_get_class): Rename from
14838         mono_class_create_generic.
14839         (mono_class_from_mono_type) [GENERICINST]: Use it.
14840         * reflection.c, metadata.c: Update to changes.  Use
14841         'mono_class_from_mono_type'.
14842
14843 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14844
14845         * reflection.c: use passed type when encoding an array element
14846         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
14847
14848 2007-01-09  Robert Jordan  <robertj@gmx.net>
14849
14850         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
14851         result arguments (someDelegate.EndInvoke (unrelatedAres)).
14852         Fixes bug #80392.
14853
14854 2007-01-09  Raja R Harinath  <rharinath@novell.com>
14855
14856         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
14857
14858         * object.c (set_value): Avoid aliasing between type->data.klass
14859         and type->data.generic_class.
14860
14861         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
14862
14863 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14864
14865         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
14866         between type->data.klass and type->data.generic_class.
14867
14868 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
14869
14870         * marshal.c: In MS.NET, StringBuilder objects are not copied by
14871         value in out parameters.
14872
14873 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14874
14875         Simplify invariant for MonoGenericClass::klass field.
14876         * class.c (mono_class_create_generic): Verify 'klass' is null.
14877         * metadata.c (do_mono_metadata_parse_generic_class): Don't
14878         initialize 'klass' field.
14879
14880 2007-01-05  Raja R Harinath  <rharinath@novell.com>
14881
14882         Ongoing work to avoid redundant data and simplify invariants.
14883         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
14884         'generic_class', and change type to a GenericInst.
14885         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14886         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14887
14888 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14889
14890         * class.c : skip io-layer under PLATFORM_WIN32.
14891
14892 2007-01-03  Tor Lillqvist  <tml@novell.com>
14893
14894         Fix #80305: In a bundled executable, look in the bundled exe
14895         assembly to determine the runtime version. Add the possibility to
14896         bundle also the machine.config file.
14897         
14898         * assembly.c (mono_assembly_open_from_bundle): Make
14899         non-static. Allow being called even if we have no bundled
14900         assemblies, and return NULL right away in that case.
14901
14902         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14903         here.
14904
14905         * domain.c (app_config_parse): Take an assembly exe file name as
14906         parameter instead of a config file name. Check for a bundled
14907         config file for that assembly by calling
14908         mono_config_string_for_assembly_file() (see below) before looking
14909         for one in the file system.
14910         (get_runtimes_from_exe): Corrsponding change to call of
14911         app_config_parse().
14912         (get_runtimes_from_exe): Check for bundled assembly exe file first
14913         by calling mono_assembly_open_from_bundle(). If no bundled
14914         assembly exe file is found, call mono_image_open() as before to
14915         look it up in the file system.
14916
14917         * mono-config.c: Add variable bundled_machinec_onfig.
14918         (mono_config_string_for_assembly_file): New function.
14919         (mono_config_for_assembly): Move code snippet that looks for a
14920         bundled assembly .config file into the above new function. Call
14921         it.
14922         (mono_register_machine_config, mono_get_machine_config): New
14923         functions to set and retrieve
14924
14925         * assembly.h: Declare mono_register_machine_config().
14926
14927         * mono-config.h: Declare mono_get_machine_config() and
14928         mono_config_string_for_assembly_file().
14929
14930         * icall.c: No declaration of environ necessary on Win32. It is
14931         declared (as a macro expanding to a function call) in stdlib.h.
14932         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
14933         New internal mono function. Returns the value of
14934         mono_get_machine_config() as a Mono string.
14935
14936         * icall-def.h: Add get_bundled_machine_config().
14937
14938 2007-01-04  Raja R Harinath  <rharinath@novell.com>
14939
14940         Remove redundant field
14941         * class-internals.h (_MonoGenericContext.container): Remove field.
14942         * loader.c (mono_method_get_signature_full): Don't parse a
14943         "container" for a signature parse when the signature is inflated
14944         immediately.
14945         (method_from_methodspec): Likewise, for a generic_inst.
14946         * class.c, metadata.c, reflection.c: Update to changes.
14947
14948 2006-01-04  Raja R Harinath  <rharinath@novell.com>
14949
14950         * class-internals.h (_MonoGenericClass): Rename 'context' field to
14951         'cached_context', and change semantics -- it starts off NULL, and
14952         is initialized on demand.
14953         * class.c (mono_generic_class_get_context): New accessor to
14954         replace 'context' field accesses.
14955         (mono_class_get_context): New helper.
14956         (*): Update to changes.
14957         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
14958
14959 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14960
14961         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
14962         before the memcpy.   Fixes Marshal2 regression.
14963
14964 2007-01-02  Jb Evain  <jbevain@gmail.com>
14965
14966         * blob.h: add a MONO_TYPE_ENUM definition
14967         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
14968         fix the encoding of arrays of enums in custom attributes.
14969
14970         Fixes #79666.
14971
14972 2007-01-01  Miguel de Icaza  <miguel@novell.com>
14973
14974         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
14975         string is null terminated, but only cut the string short if it
14976         overflows the buffer.   
14977         
14978         (mono_string_to_byvalstr): Also fix this routine.   The code here
14979         was not properly terminating a string (it was only terminated
14980         because of the previous catch-all memset). 
14981
14982         I left the memset, because I do not know if applications expect
14983         the runtime to clear this region. 
14984
14985         Fixes #79944.
14986
14987         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
14988         Clear the error before returning to unmanaged code to prevent the
14989         runtime from being confused later on (fixes  80420).
14990         (ves_icall_type_from_name): Always call mono_loader_clear_error
14991         after parsing a type that could have failed.
14992         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
14993
14994         * loader.c (mono_loader_clear_error): Fix indentation.
14995
14996 2006-12-28  Martin Baulig  <martin@ximian.com>
14997
14998         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
14999
15000 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15001
15002         * reflection.c: patch from Rolf Bjarne Kvinge to fix
15003         getting a token for an EnumBuilder.
15004
15005 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15006
15007         * reflection.c: be more careful in case resource generation
15008         fails to create the data array.
15009
15010 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15011
15012         * sgen-gc.c: write barrier for clone and fix unregister handles.
15013
15014 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15015
15016         * reflection.c: some fixes needed in the generics code for the moving GC.
15017
15018 2006-12-22  Robert Jordan  <robertj@gmx.net>
15019
15020         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
15021         account. Fixes bug #80299.
15022
15023 2006-12-21  Raja R Harinath  <rharinath@novell.com>
15024
15025         Fix WaitHandle usage in delegates.
15026         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
15027         * object.c (mono_wait_handle_new): Use the property set method to
15028         initialize the handle.
15029         (mono_wait_handle_get_handle): New.
15030         * threadpool.c (mono_async_invoke): Use it.
15031         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
15032         Likewise.
15033         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
15034
15035 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
15036
15037         * marshal.c (emit_marshal): Call emit_marshal_variant and
15038         emit_marshal_com_interface when applicable.
15039         (emit_marshal_variant, emit_marshal_com_interface): Add
15040         methods for this case and remove if's from emit_marshal_object.
15041         
15042 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15043
15044         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15045
15046 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15047
15048         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15049         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15050         and GlobalFree on Windows. Remove FIXME.
15051
15052 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15053
15054         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15055         implementation for managed objects.
15056
15057 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15058
15059         * object.c: implemented code to be used for checking
15060         that no reference field overlaps with non-references.
15061
15062 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15063
15064         * threadpool.c: fix queue code to be compatible with the
15065         moving GC.
15066
15067 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15068
15069         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15070         in structures by throwing ArgumentNullException.
15071
15072         (emit_marshal_safehandle): Also when they are null parameters.
15073
15074         (emit_marshal_safehandle): Add support for ref
15075         SafeHandles parameters
15076
15077 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15078
15079         * profiler.c: updated to use the mono-dl API instead of
15080         gmodule.
15081
15082 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15083
15084         * profiler.c: updated to use the mono-dl dynamic loading
15085         API instead of gmodule.
15086
15087 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15088
15089         * profiler.c: use readlink, older versions of glib don't have
15090         g_file_read_link ().
15091
15092 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15093
15094         * profiler.c: try to detect the path to mono if libc fails to provide
15095         a useful name (bug #80286).
15096
15097 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15098
15099         Fix #80242
15100         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15101         instance, use the generic type definition instead.
15102         (ves_icall_Type_GetNestedTypes): Likewise.
15103         * class.c (mono_class_create_generic): Always set the
15104         nested_classes of a generic instance to NULL, even if the generic
15105         type definition has nested types.
15106
15107 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15108
15109         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15110         and fix on Linux.
15111         
15112 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15113
15114         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15115         my arguments were in the wrong order.   I also fixed the Windows
15116         version which seems to have had the same issue.
15117
15118         (mono_free_bstr): On Unix, this is g_free.
15119         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15120         conversions (for the tests in corlib to pass).
15121
15122 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15123
15124         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15125         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15126         exception if a ref SafeHandle in a struct has changed).
15127         
15128         (emit_struct_conv): Do not perform layout checks for classes
15129         derived from SafeHandle, as those are specially handled. 
15130
15131         (emit_object_to_ptr_conv): Add support for
15132         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15133
15134         (emit_marshal_safehandle): Implement conversion of return values
15135         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15136         
15137         * threads.c: WaitHandle now is compiled with two different handles
15138         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15139         for 2.0.
15140         
15141         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15142         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15143         these routines to cope with both kinds of fields.
15144
15145 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15146
15147         * metadata.c (mono_type_to_unmanaged): Handle the case where
15148         type->data.klass is a SafeHandle, and in that case, return the
15149         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15150         MONO_MARSHAL_CONV_SAFEHANDLE. 
15151
15152 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15153
15154         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15155         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15156         calling emit_marshal_object.
15157
15158         (emit_marshal_safehandle): Implement marshalling of
15159         SafeHandle parameters (no ref support yet).
15160
15161         (MarshalAction): Document the defines as I implement
15162         them for SafeHandle.
15163
15164         (emit_marshal_object): indentation police.
15165
15166         * class-internals.h: Define MonoSafeHandle.
15167         Add safehandle_class to MonoDefaults type.
15168
15169         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15170         list of classes to check for fields. 
15171
15172         * domain.c (mono_init_internal): Add SafeHandle to the list of
15173         mono_defaults loaded.
15174
15175 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15176
15177         Fix #80253
15178         * reflection.c (mono_reflection_bind_generic_parameters): If the
15179         generic type definition is a type builder, ensure that it is fully
15180         initialized before instantiating it.  Kill some dead code.
15181
15182 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15183
15184         * object.c: clear the loader_error () before loading
15185         more metadata stuff (bug #80258).
15186
15187 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15188
15189         * icall.c, icall-defs.h: type modifiers icalls for
15190         parameters and properties.
15191
15192 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15193
15194         * object.c, icall.c: fixed warnings.
15195
15196 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15197
15198         * marshal.c: fixed a couple of leaks and coding style in a few places.
15199
15200 2006-12-08  Dick Porter  <dick@ximian.com>
15201
15202         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15203         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15204         80173.
15205
15206 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15207
15208         * process.c: ProcessStartInfo may have only filename set and
15209         arguments can be NULL.
15210
15211 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15212
15213         * icall.c: fix leak found by Robert Jordan.
15214
15215 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15216
15217         * marshal.c, marshal.h: generate managed method to access an element
15218         of a multi-dimensional array.
15219
15220 2006-11-30  Paolo Molaro (lupus@ximian.com)
15221
15222         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15223
15224 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15225
15226         * icall.c: back out GetFields () fix until the serialization code is
15227         fixed to not depend on the incorrect behaviour.
15228
15229 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15230
15231         * profiler.c: provide defaults if none are set.
15232
15233 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15234
15235         * Makefile.am, attrdefs.h: new public header file with
15236         constants for attributes for use by embedders.
15237
15238 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15239
15240         * icall.c: GetFields () fix for bug #80064.
15241
15242 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15243
15244         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15245         removed long unused icalls.
15246
15247 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15248   
15249         * marshal.c: 
15250                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15251                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15252                 can be generated without a delegate class.
15253                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15254         
15255         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15256
15257 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15258
15259         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15260         #80069.
15261
15262 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15263
15264         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15265         icall-def.h: added icalls needed by System.GC.
15266
15267 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15268
15269         * loader.c: ensure the class in catch clauses is handled
15270         correctly for generics methods (fixes bug#79980).
15271
15272 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15273
15274         * monitor.h, monitor.c: added mono_locks_dump () function
15275         to help debug deadlocks involving managed locks.
15276
15277 2006-11-13  Dick Porter  <dick@ximian.com>
15278
15279         * file-io.c (get_file_attributes): If the file is a symlink try
15280         and get the stat data for the target, but also add the
15281         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15282         the specs for the windows symlink support, but will probably have
15283         to be reworked when I have test data from a vista machine.  Fixes
15284         bug 79887.
15285
15286 2006-11-13  Dick Porter  <dick@ximian.com>
15287
15288         * gc.c (mono_domain_finalize): 
15289         * marshal.c (mono_delegate_begin_invoke): 
15290         * threadpool.c (socket_io_init, mono_thread_pool_init)
15291         (mono_thread_pool_finish): 
15292         * monitor.c (mono_monitor_try_enter_internal): 
15293         * threads.c (mono_thread_resume, mono_thread_init)
15294         (mono_thread_suspend_all_other_threads)
15295         (mono_thread_execute_interruption): 
15296         * appdomain.c (mono_domain_unload): Check for NULL error returns
15297         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15298         75733.
15299
15300 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15301
15302         * process.c
15303         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15304         Only close the handle if the value of the handle is not
15305         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15306         robust.
15307
15308         Improvement for #75733, so that we do not run into this problem. 
15309
15310         
15311         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15312         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15313         internal variables.  Fixes #79462 
15314         
15315
15316 2006-11-09  Dick Porter  <dick@ximian.com>
15317
15318         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15319         Use poll() not select().  Fixes bug 79397.
15320
15321 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15322
15323         Fix #79872
15324         * assembly.c (mono_assembly_load_from_full): Check that the given
15325         image has an assembly manifest.
15326
15327 2006-11-09  Ankit Jain  <jankit@novell.com>
15328
15329         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15330         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15331         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15332
15333 2006-11-07  Dick Porter  <dick@ximian.com>
15334
15335         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15336         Put the old resolver behaviour back for pre-2.0 profiles.
15337
15338 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15339
15340         * threadpool.c: precise GC and locking fixes.
15341
15342 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15343
15344         * class.c: don't load types that have an explicit unaligned
15345         managed reference. Provide better info in the TypeLoad exception.
15346         Part of the fix for bug #79744.
15347         * object.c: use the correct check for class type load issues.
15348
15349 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15350
15351         * class.c: enforce alignment of fields with managed references
15352         even when Pack=1 is forced by the user (bug #77788).
15353
15354 2006-11-03  Dick Porter  <dick@ximian.com>
15355
15356         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15357         If the address reverse lookup fails, return it as the hostname
15358         anyway.  Fixes bug 79721.
15359
15360 2006-11-03  Dick Porter  <dick@ximian.com>
15361
15362         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15363         Fix build on Windows.
15364
15365 2006-11-02  Dick Porter  <dick@ximian.com>
15366
15367         * icall-def.h: 
15368         * object-internals.h: 
15369         * exception.c (mono_get_exception_thread_interrupted): 
15370         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15371         Fixes bug 74525.
15372
15373         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15374         Check for pending Thread.Interrupt.
15375
15376 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15377         * loader.c: Fixed bug 79684.
15378
15379 2006-10-27  Dick Porter  <dick@ximian.com>
15380
15381         * file-io.c (get_file_attributes): Force symlinks to directories
15382         to be returned as a regular file.  Fixes bug 79733.
15383 2006-10-26  Dick Porter  <dick@ximian.com>
15384
15385         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15386         CreateFile to open a directory then we need to set the
15387         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15388
15389 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15390
15391         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15392         friends.
15393
15394 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15395
15396         * sgengc.c: small cleanup of timer code.
15397
15398 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15399
15400         * sgen-gc.c: fix some warnings and start adding support for
15401         complete object removal on domain unload.
15402
15403 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15404
15405         * assembly.c: build_assembly_name should not consider a version
15406         number without build or revision number invalid. Fixes bug #79715.
15407
15408 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15409
15410         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15411         call kernel32 function OutputDebugString directly.
15412         
15413         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15414         
15415 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15416
15417         * reflection.c: small cleanup, using a function to insert a MonoString
15418         in the string heap.
15419
15420 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15421
15422         * reflection.c: moving GC fixes.
15423
15424 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15425
15426         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15427         all the objects with finalizers belonging to an unloading appdomain.
15428
15429 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15430
15431         * sgen-gc.c: added ability to allocate even when the nursery is fully
15432         pinned and fixed a couple of bugs.
15433
15434 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15435
15436         * threads.h: Revert the last change for now.
15437
15438         * threads.h (mono_thread_get_pending_exception): Rename this to
15439         mono_thread_get_undeniable_exception ().
15440
15441 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15442
15443         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15444         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15445         when fname does not refer to valid assembly. This result in a more
15446         meaningful error message.
15447         * exception.c: added mono_get_exception_bad_image_format2 which 
15448         constructs a BadImageFormatException using the ctor taking a custom
15449         message and the file name. Passing in a NULL msg results in a default
15450         message.
15451         * exception.h: define mono_get_exception_bad_image_format2 function.
15452         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15453         when file name pointed to an invalid IL image. Use 
15454         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15455         as this results in a more meaningful error message.
15456
15457 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15458
15459         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15460         #79465.
15461
15462 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15463
15464         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15465         consistency with the other _size functions.
15466         (mono_type_stack_size): Ditto.
15467
15468         * class.c object.c icall.c: Fix warnings caused by the above change.
15469
15470         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15471
15472         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
15473
15474         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
15475
15476 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15477
15478         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
15479         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
15480         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
15481         threadpool.h, threads-types.h: mark more internal functions.
15482
15483 2006-10-11  Dick Porter  <dick@ximian.com>
15484
15485         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15486         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
15487         reproduce the bug even before applying the fix.)
15488
15489 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
15490
15491         * reflection.c: allow retrieving attributes for arguments in generic
15492         methods (bug #79241).
15493
15494 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
15495
15496         * debug-mono-symfile.c: properly check fopen () result (found by
15497         coverity).
15498
15499 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
15500
15501         * reflection.c: make error message clearer and fixed two
15502         issuelets found by Coverity.
15503
15504 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
15505
15506         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
15507
15508 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15509
15510         * object-internals.h, gc-internal.h, profiler-private.h:
15511         mark internal functions.
15512
15513 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15514
15515         * reflection.c: put data in the text section.
15516         * icall.c: recognize more types in type_from_typename ().
15517         * process.c, marshal.c: added some GC FIXMEs.
15518
15519 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15520
15521         * loader.c: check for NULL before initializing.
15522
15523 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
15524
15525         * gc.c (finalizer_thread): Use a non-alertable wait here.
15526
15527         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
15528         until the correct solution is found.
15529
15530 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15531
15532         * reflection.c (mono_module_get_object): Avoid an assert when operating on
15533         modules with no metadata. Fixes #79596.
15534
15535         * image.c (load_metadata_ptrs): Put back the error message when
15536         the #- heap is encountered since the support is not complete yet.
15537
15538 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15539
15540         * gc.c: do not allow the user to SuppressFinalize () a
15541         delegate because it would leak the trampoline if present.
15542
15543 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15544
15545         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
15546         PropertyPtr table.
15547
15548 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15549
15550         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
15551
15552         * metadata.c (mono_metadata_get_param_attrs): Ditto.
15553
15554         * row-indexes.h: Add definitions for *Ptr tables.
15555
15556         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
15557
15558         * metadata.c (mono_metadata_translate_token_index): New helper function to
15559         translate table indexes used in uncompressed metadata.
15560         (mono_metadata_decode_table_row): Ditto.
15561         (mono_metadata_decode_table_row_col): Ditto.
15562
15563         * metadata.c: Add table schema for *Ptr tables.
15564
15565         * class.c loader.c: Use the new helper function to access the affected metadata
15566         tables.
15567         
15568         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
15569         #38532.
15570         
15571 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
15572
15573         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
15574         sequences which can be unbounded in size. Fixes #79583.
15575
15576 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
15577
15578         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
15579         static initialization.
15580
15581         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
15582
15583         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
15584
15585         * domain.c (mono_domain_free): Free up type_init_exception_hash.
15586
15587         * object.c (mono_runtime_class_init): Implement correct semantics when a static
15588         ctor fails, i.e. throw the same exception on subsequent accesses.
15589         
15590 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
15591
15592         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
15593         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
15594         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
15595         Handle marshalling of interfaces and VARIANTs contained in structs.
15596         
15597         Code is contributed under MIT/X11 license.
15598         
15599 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
15600
15601         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
15602         
15603         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
15604         mempool.
15605
15606 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15607
15608         * console-io.c: ignore previous SIGINT handler.
15609
15610 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
15611
15612         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
15613         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
15614         #79460, #79461, #79485.
15615
15616         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
15617
15618         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
15619         #79217.
15620
15621 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15622
15623         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
15624         could be generated from it.
15625
15626 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
15627
15628         * rand.c: fix read loop to correctly handle EINTR.
15629
15630 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15631
15632         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
15633         internal calls are defined to keep methods closer to the declaring
15634         type and allow a significant reduction in runtime relocations and
15635         memory usage.
15636
15637 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
15638
15639         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
15640         exception message to have FileNotFoundException use the default
15641         assembly load error message. Fixes bug #79426.
15642         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
15643
15644 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15645
15646         * threadpool.c: (start_thread_or_queue) use the root domain when
15647         creating the thread instead of the async object one.
15648
15649 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
15650
15651         * class.c, object.c, class-internals.h, reflection.c:
15652         for arrays, store element_size inside MonoClass (speedup
15653         for array object creation).
15654
15655 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
15656
15657         * icall.c: fixed CodeBase to use the file name and not the module
15658         name (bug #79365).
15659
15660 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15661
15662         * mono-debug.c, mono-debug.h: export find_method as
15663         mono_debug_find_method ().
15664
15665 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15666
15667         * debug-helpers.c, class-internals.h: added a few functions useful
15668         when debugging under gdb.
15669
15670 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15671
15672         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
15673         characters that need special handling.
15674
15675 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15676
15677         * mono-config.c: make the os/cpu specification more flexible,
15678         allowing lists and negation.
15679
15680 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
15681
15682         * marshal.c: COM Interop fixes. Handle case where method->klass.
15683         is interface. Handle BSTR/MonoString when null. Use CDECL as 
15684         calling convention on non-windows platforms. This is for
15685         compatibility with XPCOM and MainWin COM.
15686         
15687         Code is contributed under MIT/X11 license.
15688         
15689
15690 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
15691
15692         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
15693         correctly. Fixes #79217.
15694
15695         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
15696
15697 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
15698
15699         * mono-config.c: allow both an os and cpu attribute for dllmap
15700         and dllentry elemnets to enable a single config file to be used
15701         for multiple architectures.
15702
15703 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15704
15705         * loader.c: MonoLoaderError was cleared too soon on load failure.
15706         Fixes bug #79424.
15707
15708 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15709
15710         * icall.c: use the defining class vtable when accessing a
15711         static field, not a pobblibly derived class.
15712
15713 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15714
15715         * icall.c string-icalls.c: Remove references to unicode.h.
15716
15717         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15718
15719         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15720
15721         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15722         indicating the image where custom marshaller types should be looked up.
15723         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15724         custom marshallers, instead of corlib. Fixes #79425.
15725
15726 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15727
15728         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15729
15730 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15731
15732         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15733         Implement Environment.ProcessorCount.
15734         
15735         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15736         Implement Environment.ProcessorCount.
15737         
15738         * icall.c: 
15739         Add Environment.ProcessorCount icall.
15740         
15741         Patch by Jason McFall.
15742
15743 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15744
15745         * assembly.c: don't append .exe/.dll when the filename already contains
15746         one of those extensions.
15747
15748 2006-09-12  Martin Baulig  <martin@ximian.com>
15749
15750         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15751         to array interfaces.
15752
15753 2006-09-11  Martin Baulig  <martin@ximian.com>
15754
15755         * reflection.c (mono_image_build_metadata): Create the
15756         MethodImpl's after emitting all types and methods, so we don't
15757         need another fixup pass for them.
15758
15759 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15760
15761         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15762         change.
15763
15764 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15765
15766         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15767         unload.
15768
15769 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15770
15771         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15772         args is not set. Fixes #78926.
15773
15774 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15775
15776         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15777
15778         * image.c (load_class_names): Move this to class.c, and rename it to 
15779         'mono_image_init_name_cache'.
15780         (load_modules): Fix a warning.
15781
15782         * class.c icall.c image.c: Initialize image->name_cache lazily.
15783
15784         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15785         on its name using information in the AOT file.
15786
15787         * class.c (mono_class_from_name): Use the new hook function.
15788
15789 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15790
15791         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15792         correctly.
15793
15794         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15795         Fixes #79289.
15796         
15797 2006-09-06  Martin Baulig  <martin@ximian.com>
15798
15799         * icall.c (mono_lookup_internal_call): Small fix.
15800
15801 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15802
15803         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15804         double g_free.
15805
15806 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15807
15808         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15809         when --debug is specified.
15810
15811 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15812
15813         * class.c (setup_generic_array_ifaces): Fix a warning.
15814
15815 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15816
15817         * Temporarily remove the patch to assemly.c that checks the
15818         assembly versions as it breaks our gacutil.
15819
15820 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15821
15822         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15823
15824         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15825         a net 1.0 runtime.
15826
15827         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15828         created using the default ctor. Fixes #79152.
15829         (mono_string_builder_to_utf16): Ditto.
15830
15831 2006-09-01  Martin Baulig  <martin@ximian.com>
15832
15833         Fix handling of the generic array interfaces.
15834
15835         * class-internals.h
15836         (MonoDefaults): Removed `generic_array_class' and added
15837         `generic_ilist' class.
15838
15839         * class.c
15840         (mono_bounded_array_class_get): Add the new generic array interfaces.
15841         (setup_generic_array_ifaces): New static method; create vtable
15842         entries for each method in the generic array interfaces.
15843
15844         * metadata.c
15845         (select_container): Allow "parent-less" generic methods.
15846
15847         * marshal.c
15848         (mono_marshal_get_generic_array_helper): New public method.
15849
15850         * icall.c
15851         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
15852         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
15853         moved the interncall into System.Array.
15854
15855 2006-09-01  Raja R Harinath  <rharinath@novell.com>
15856
15857         A few more cases of avoiding work on types with ->byref set.
15858         Has the real fix for #79238
15859         * icall.c (is_generic_parameter): New helper.
15860         (ves_icall_Type_GetGenericParameterPosition): Use it.
15861         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
15862         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15863         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
15864         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
15865         reference types.
15866         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
15867         reference types.
15868         (ves_icall_Type_get_IsGenericInstance): Likewise.
15869         (ves_icall_Type_get_IsGenericType): Likewise.
15870
15871 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
15872
15873         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
15874         class if possible.
15875
15876         * mempool.h (mono_mempool_get_allocated): New helper function.
15877
15878         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
15879         change.
15880
15881         * mempool.c: Fix warnings and the calculation of stats.
15882
15883         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
15884
15885         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15886
15887         * loader.c (mono_get_method_from_token): Update method_count stat.
15888
15889         * class-internals.h (MonoStats): Add some stats.
15890
15891 2006-08-31 Robert Jordan  <robertj@gmx.net>
15892
15893         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15894         with managed variants.
15895         All code is contributed under the MIT/X11 license.
15896         
15897 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15898
15899         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15900         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15901
15902         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15903
15904         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15905         with cycles in classes.
15906
15907         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15908
15909         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15910         missing a [MarshalAs] directive. Fixes #79203.
15911
15912         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15913         klass->marshal_info. Fixes #79217.
15914
15915 2006-08-30  Martin Baulig  <martin@ximian.com>
15916
15917         Committing a patch from Joachim Ante <joe@otee.dk>:
15918         Add support for binary data symbol stores.
15919
15920         * debug-mono-symfile.c
15921         (mono_debug_open_mono_symbol_file): Renamed into
15922         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15923         arguments.
15924
15925         * mono-debug.c
15926         (mono_debug_open_image): Added `raw_contents' and `size' args.
15927         (mono_debug_init_2_memory): New public function.
15928
15929 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
15930
15931         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
15932
15933 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15934
15935         * appdomain.c: implement support for ShadowCopyFiles.
15936
15937 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
15938
15939         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
15940         when value is NULL (and should remove CID #51).
15941
15942 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15943
15944         * image.c: moved 2 functions to ../utils.
15945
15946 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15947
15948         * gc.c: cope with the target object of a GC handle being NULL
15949         (bug #78877).
15950
15951 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15952
15953         * class.c: recursively check parent's explicit implementations
15954         of interface methods (fixes bug #79125).
15955
15956 2006-08-19  Miguel de Icaza  <miguel@novell.com>
15957
15958         * filewatcher.c: Avoid warnings when building, do not redefine
15959         constants that are defined.
15960
15961         Remove warnings.
15962
15963 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15964
15965         * image.c: don't fail when the link points to an absolute path.
15966
15967 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
15968
15969         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
15970         Fix CID #3.
15971
15972 2006-08-17  Miguel de Icaza  <miguel@novell.com>
15973
15974         * image.c (full_path): A new method used to obtain the actual path
15975         of an assembly even in the presence of symbolic links.  
15976
15977         This is necessary for the case where we are running a binary that
15978         has been GACed, but we are using the "published" path name
15979         ($prefix/mono/1.0/blah.exe) which happens to point to the real
15980         file in the GAC.
15981
15982         This was the source of the failure for the `xsp' command with the
15983         recent AppDomain changes, as far as the runtime was concerned,
15984         there were two different assemblies: $prefix/mono/1.0/blah.exe and
15985         $prefix/mono/gac/blah/version/blah.exe.
15986
15987         (do_mono_image_open): use full path
15988
15989 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15990
15991         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
15992
15993 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
15994
15995         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
15996         domain_id is supplied. Fix CID #241 and corlib's unit tests.
15997
15998 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15999
16000         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
16001         small structures. Fixes #78990.
16002
16003 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16004
16005         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
16006
16007         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
16008
16009 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16010
16011         * appdomain.c:
16012         * marshal.c: don't load all the assemblies from a domain into newly
16013         created ones. The new domains might have different rules and load
16014         assemblies from different locations. Fixes bug #76757.
16015
16016         Patch by Lluis. Conflicts resolved by Brian Crowell.
16017
16018 2006-08-16  Alp Toker  <alp@atoker.com>
16019
16020         * socket-io.c: First half of the fix for #79084.
16021         Set sa_size to the length of the content, not that of the struct.
16022         Don't add NULL suffix to the content, this should be done in
16023         managed code if needed.
16024
16025 2006-08-14  Raja R Harinath  <rharinath@novell.com>
16026
16027         Fix part of #79012
16028         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
16029         mono_metadata_parse_type returns NULL.
16030
16031 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
16032
16033         * normalization-tables.h : new file for string normalization data.
16034         * locales.c, locales.h, icall.c :
16035           added load_normalization_resource() for string normalization,
16036           and icall as well.
16037         * Makefile.am : added normalization-tables.h to the sources.
16038
16039 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
16040
16041         * marshal.c: Add more helper functions to reduce code duplication and use them
16042         everywhere.
16043
16044 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16045
16046         * marshal.c: Fix non-x86 stdcall warnings.
16047         
16048         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16049         them everywhere.
16050
16051 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16052
16053         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16054         type check on multi-dimensional arrays. Fixes #79000.
16055
16056 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16057
16058         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16059         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16060         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16061         * class-internals.h: add is_com_object to class structure.
16062         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16063         null checks to COM object marshalling. Fix .ctor call on RCW.
16064         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16065         
16066         All code is contributed under the MIT/X11 license.
16067
16068 2006-08-09  Dick Porter  <dick@ximian.com>
16069
16070         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16071         racing mono_monitor_allocator_lock() somewhere, so don't delete
16072         the critical section for now.  Found by running and exiting
16073         monodevelop.
16074
16075 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16076
16077         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16078         (ves_icall_System_ComObject_FindInterface): Ditto.
16079         (ves_icall_System_ComObject_CacheInterface): Ditto.
16080
16081         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16082         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16083
16084 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16085
16086         * threadpool.c: treat pipes from process asynchronous reads as sockets
16087         when reading from them, so we get select/poll or epoll to wait for
16088         data.
16089
16090 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16091
16092         * loader.c: Fix a typo (CID #233) in the null check.
16093
16094 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16095
16096         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16097         Hopefully fixes #78949.
16098         
16099         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16100         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16101         bytes. Fixes #78972.
16102
16103 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16104
16105         * filewatcher.c: we need to set errno here.
16106
16107 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16108
16109         * filewatcher.c: let Win32Exception get the error value.
16110
16111 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16112
16113         * filewatcher.c: translate errno into win32 errors for Win32Exception
16114         to know what happened.
16115
16116 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16117
16118         * threadpool.c: Fix more warnings.
16119
16120         * assembly.c (search_loaded): Fix warnings.
16121
16122         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16123         (mono_async_invoke): Ditto.
16124
16125 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16126
16127         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16128         entries for __ComObject type in addition to ComImport types.
16129         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16130         about hash table.
16131         
16132         All code is contributed under the MIT/X11 license.
16133
16134 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16135
16136         * image.c: avoid tentative loading of modulerefs that contain
16137         no metadata (P/Invoke library names).
16138
16139 2006-07-28  Dick Porter  <dick@ximian.com>
16140
16141         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16142         mono_loader_lock() somewhere, so don't delete the critical section
16143         for now.  Found by running and exiting monodevelop.
16144
16145 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16146
16147         * filewatcher.c: define the inotify syscalls when we're building on
16148         linux and have sys/syscall.h. The build system might not have support
16149         for inotify but the target system might have it.
16150
16151 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16152
16153         * domain.c: Documentation updates.
16154
16155         * loader.c (mono_free_method): Do not release the method
16156         information if we are being profiled, as profilers will use this
16157         information at shut down to present some data to the user.
16158
16159         This is needed so that the profiler does not crash, as the
16160         profiler tends to keep MonoMethods around, and they might become
16161         invalid if we free these.
16162
16163         (mono_get_method_constrained): Return the original CIL stream
16164         method as well, so verification can be performed against it.
16165
16166 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16167
16168         * filewatcher.[ch]: support for inotify file system watcher.
16169         * icall.c: add new internal calls for the inotify file system watcher.
16170
16171 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16172
16173         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16174         #78888.
16175
16176 2006-07-20  Dick Porter  <dick@ximian.com>
16177
16178         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16179         warning.
16180
16181 2006-07-20  Dick Porter  <dick@ximian.com>
16182
16183         * threads.c (start_wrapper): Do the thread cleanup while we still
16184         hold a reference to its object.  Fixes bug 78123.
16185
16186 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16187
16188         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16189         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16190           "managed-to-managed".
16191         * icall.c: Redirect string constructors that take sbyte* to
16192           ves_icall_System_String_ctor_RedirectToCreateString.
16193         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16194           to CreateString () methods with matching signature.
16195         * reflection.c: Use original security informations for
16196           MONO_WRAPPER_MANAGED_TO_MANAGED.
16197         * security-manager.c: Use original security informations for
16198           MONO_WRAPPER_MANAGED_TO_MANAGED.
16199         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16200           that is a placeholder and only its address should be used.
16201         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16202           that is a placeholder and only its address should be used.
16203
16204 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16205
16206         Begin implementing COM Interop.
16207         * appdomain.c: Increment corlib version.
16208         * class.c: Set ComImport classes' parent to __ComObject.
16209         * loader.c: Mark cominterop methods as such.
16210         * domain.c: Add __ComObject class to MonoDefaults structure.
16211         * image.c: Add 2 hashtables to the image for COM Interop related methods
16212         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16213         using the mempool allocator
16214         
16215         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16216         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16217         declaration for mono_metadata_type_dup_mp.
16218         
16219         * debug-helpers.c: Added strings for two additional wrapper types
16220         * object.c: Create proxy objects for ComImport classes
16221         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16222         and added __ComObject class to MonoDefaults structure.
16223         
16224         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16225         MonoComInteropProxy and MonoComObject.
16226         
16227         * marshal.c: Added support for COM Interop
16228         (signature_cominterop): Converts managed signature to corresponding
16229         unmanaged COM signature.
16230         (cominterop_get_function_pointer): gets unmanaged function pointer via
16231         COM object vtable
16232         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16233         (cominterop_get_method_interface): returns interface type that method is defined on
16234         (mono_mb_emit_cominterop_call): emits native call to function pointer
16235         gotten from vtable
16236         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16237         that matches signature of unmanaged function.
16238         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16239         (cominterop_get_invoke): forwards call from proxy to __ComObject
16240         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16241         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16242         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16243         
16244         * marshal.h: Added Marshal icall declarations.
16245         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16246         so we can access them in finalizer
16247         
16248 2006-07-14  Dick Porter  <dick@ximian.com>
16249
16250         * object.c (mono_type_initialization_cleanup): Fix a race
16251         condition by temporarily commenting out the critical section
16252         deletion.
16253
16254 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16255
16256         * reflection.c (create_custom_attr): Fix some warnings.
16257         (create_custom_attr_data): Ditto.
16258         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16259         types. Fixes #78855.
16260
16261 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16262
16263         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16264
16265         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16266
16267 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16268
16269         * reflection.c (resolve_object): Add support for DynamicMethod.
16270
16271         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16272         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16273
16274 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16275
16276         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16277         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16278
16279 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16280
16281         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16282         Fixes #77888.
16283
16284 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16285
16286         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16287         slightly: remove a shadow local variable.
16288
16289 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16290
16291         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16292         definition that introduces the virtual function slot.
16293         Also fix Coverity #105.
16294
16295 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16296
16297         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16298         for dynamic assemblies. Fixes #78724.
16299
16300 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16301
16302         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16303         Fixes #78722.
16304
16305 2006-06-21  Martin Baulig  <martin@ximian.com>
16306
16307         * reflection.c
16308         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16309         fixes #76484.
16310
16311 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16312
16313         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16314
16315 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16316
16317         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16318         nor TYPEREFs.
16319         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16320         Inflate result if necessary.
16321         (mono_class_get_full): Remove old version.  Rename from
16322         'mono_class_get' and add 'context' argument.  Pass it to
16323         ..._create_from_typespec.
16324         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16325         (mono_ldtoken): Revert change below.
16326
16327 2006-06-20  Martin Baulig  <martin@ximian.com>
16328
16329         * class.c (mono_ldtoken): Don't pass the generic context to
16330         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16331
16332 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16333
16334         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16335         and later freeing it. Fixes #78638.
16336
16337 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16338
16339         * icall.c (mono_class_get_throw): Revert over-zealous error
16340         throwing, the caller for mono_class_get_throw will cope with
16341         errors when classes are not properly initialized already.
16342
16343         The code still copes with loader exceptions though.
16344
16345         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16346         
16347 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16348
16349         Fixes the `make run1' version of RuntimeAbort (to be commited,
16350         source is in Bugzilla).
16351         
16352         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16353         FALSE on class loading failure instead of returning true.
16354
16355         * class.c (mono_class_create_from_typedef): It is possible for
16356         mono_metadata_interfaces_from_typedef_full to fail if a class is
16357         not found, cope with this.
16358         
16359
16360 2006-06-14  Dick Porter  <dick@ximian.com>
16361
16362         * socket-io.c: 
16363         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16364         4.1.1
16365
16366 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16367
16368         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16369
16370 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16371
16372         * icall.c: Another fix for building mono in Visual Studio.
16373
16374 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16375
16376         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16377         
16378 2006-06-09  Martin Baulig  <martin@ximian.com>
16379
16380         * debug-mono-symfile.c: Put this back and really fix it this
16381         time. Sorry for all the trouble.
16382
16383 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16384
16385         * icall.c (mono_class_get_throw): Fix a warning.
16386         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16387         ReflectionTypeLoadException if needed. Fixes #78606.
16388
16389         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16390         (mono_class_init): Ditto.
16391
16392         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16393         ref_only exceptions.
16394         (mono_loader_clear_error): Make this work even if there is no error.
16395
16396 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16397
16398         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16399         Marshal.GetComSlotForMethodInfo using internal call.
16400
16401 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16402
16403         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16404         a function for signalling it.
16405
16406         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16407         a referenced assembly is not found.
16408
16409         * loader.c (mono_loader_error_prepare_exception): Add support for 
16410         LOADER_ERROR_ASSEMBLY. Fix formatting.
16411
16412 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16413
16414         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16415         for VARIANT marshalling on windows and increment corlib version
16416         since Variant struct was added.
16417
16418 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16419
16420         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16421         stack trace line information:
16422
16423         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16424         (Martin) when looking up B which is between A and C, return A not C.
16425
16426         Bug is #78573.
16427
16428         Thanks to Alexander Olk for tracking this down.
16429
16430 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16431
16432         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16433         
16434         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16435         avoid clobbering its value.
16436         (mono_string_to_lpstr): Fix a warning on windows.
16437
16438 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16439
16440         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16441
16442         * reflection.c loader.c: Removed references to 'dummy' flag.
16443
16444         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16445
16446         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16447         it gets GC tracking.
16448
16449         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16450         GC tracking.
16451         
16452         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16453
16454         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16455
16456         * appdomain.c: Bump corlib version.
16457
16458 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16459
16460         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16461         CEE_STIND_REF when working with object references.
16462
16463 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16464
16465         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16466         Fixes #78539.
16467
16468 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16469
16470         * loader.c (method_from_memberref): Fix argument value for
16471         mono_loader_set_error_method_load (I was passing the MonoClass
16472         instead of the class name char *).
16473
16474 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16475
16476         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16477         CEE_STIND_REF when working with object references.
16478
16479 2006-05-30  Martin Baulig  <martin@ximian.com>
16480
16481         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
16482         mono_method_full_name() change and replace the ':' with a '.'
16483         here.
16484
16485 2006-05-30  Martin Baulig  <martin@ximian.com>
16486
16487         * debug-mono-symfile.c
16488         (mono_debug_symfile_lookup_location): Fix the algorithm:
16489         when looking up B which is between A and C, return A not C.
16490
16491 2006-05-29  Martin Baulig  <martin@ximian.com>
16492
16493         * mono-debug.h
16494         (MonoDebugMethodInfo): Make the typedef public.
16495         (MonoDebugSourceLocation): New public struct.
16496
16497         * mono-debug.c
16498         (mono_debug_source_location_from_address): Removed.
16499         (mono_debug_source_location_from_il_offset): Removed.
16500         (mono_debug_il_offset_from_address): Removed.
16501         (mono_debug_address_from_il_offset): Removed.
16502         (mono_debug_lookup_method): New public function.
16503         (mono_debug_lookup_source_location): New public function; replaces
16504         the old mono_debug_source_location_from_*() functions; see the
16505         inline documentation.
16506         (mono_debug_free_source_location): New public function.
16507         (mono_debug_print_stack_frame): New public function; see the
16508         inline documentation.
16509
16510         * debug-mono-symfile.c
16511         (mono_debug_find_source_location): Renamed into
16512         mono_debug_symfile_lookup_location(); only take a
16513         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16514         documentation.
16515         (mono_debug_find_method): Renamed into
16516         mono_debug_symfile_lookup_method().
16517
16518 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16519
16520         * assembly.c (mono_assembly_open_full): Dont overwrite the status
16521         returned by mono_image_open_full ().
16522
16523         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
16524         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
16525         #78517.
16526
16527         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
16528         #78518.
16529
16530 2006-05-27  Miguel de Icaza  <miguel@novell.com>
16531
16532         * class.c (mono_class_from_typeref): handle missing images
16533         earlier, deals with bug #78418.   Refactor code; 
16534
16535         Fix a warning introduced in my previous commit (some stale code
16536         from before I revisited my patch).
16537
16538         * class.c (mono_class_create_from_typedef): On failure, remove the
16539         class from the MonoImage->class_cache as the class is not
16540         initialized;   Fixes the leak pointed out by Paolo.
16541
16542 2006-05-25  Dick Porter  <dick@ximian.com>
16543
16544         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
16545         DeleteCriticalSections until I figure out which one may still be
16546         sometimes locked when mono_thread_cleanup is called.
16547
16548 2006-05-24  Dick Porter  <dick@ximian.com>
16549
16550         * threads.c (mono_thread_cleanup): Move the threading cleanup out
16551         of mono_thread_manage and back into its own function, so it can be
16552         called after the finalizer thread has finished.
16553
16554         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
16555
16556 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
16557
16558         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
16559         Fixes #78495.
16560
16561         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
16562         with non-blittable elements.
16563         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
16564
16565 2006-05-24  Martin Baulig  <martin@ximian.com>
16566
16567         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16568         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
16569
16570         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
16571         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
16572         `mono_debugger_event_handler' to NULL.
16573
16574 2006-05-24  Martin Baulig  <martin@ximian.com>
16575
16576         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
16577
16578 2006-05-24  Martin Baulig  <martin@ximian.com>
16579
16580         * mono-debug-debugger.h
16581         (mono_debugger_create_notification_function): Added
16582         `MonoCodeManager *' argument.
16583
16584 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
16585
16586         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
16587
16588 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
16589
16590         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
16591         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
16592         implementation.
16593
16594 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
16595
16596         * icall.c: precise GC support: objects can't be stored in unmanaged
16597         memory anymore, even if they are kept alive by other references: since
16598         they can move the GC needs to be able to always find them.
16599
16600 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16601
16602         * object.c: precise GC support for static fields. Support
16603         for moving GCs: write barriers and pinned allocation for interned
16604         strings.
16605
16606 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16607
16608         * domain.c, domain-internals.h: precise GC support for the MonoDomain
16609         structure.
16610
16611 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16612
16613         * class.c, gc.c: sgen and precise GC updates.
16614
16615 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16616
16617         * marshal.h, marshal.c: added write barrier wrapper and precise type
16618         fixes.
16619
16620 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
16621
16622         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
16623         support.
16624
16625 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
16626
16627         * reflection.c: precise and sgen GC updates.
16628
16629 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16630
16631         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
16632
16633 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
16634
16635         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
16636
16637 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
16638
16639         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
16640         MONO_TYPE_OBJECT. Fixes #78462.
16641
16642 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16643
16644         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
16645         and blittable types.
16646
16647 2006-05-17  Miguel de Icaza  <miguel@novell.com>
16648
16649         * class.c (mono_class_get_exception_for_failure): Implement parts
16650         of a TODO: if the loader error is set (instead of the class
16651         error), we return a Loader exception that can be properly thrown
16652         elsewhere.
16653
16654         This was exposed by some Winforms 2.0 code that I tried to run
16655         (Atsushi pointed me to it).
16656
16657 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
16658
16659         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
16660         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
16661         
16662         * marshal.c (emit_marshal_vtype): Add limited support for 
16663         UnmanagedType.LPStruct. Fixes #78427.
16664
16665         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
16666         Applied a patch from kangaroo to fix #77523.
16667
16668 2006-05-17  Martin Baulig  <martin@ximian.com>
16669
16670         * threads.c
16671         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
16672         (debugger_thread_created): Removed.
16673         (debugger_thread_exited): Removed.
16674
16675 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
16676
16677         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16678
16679         * object-internals.h (MonoReflectionResource): Sync with managed version.
16680
16681 2006-05-12  Wade Berrier <wberrier@novell.com>
16682
16683         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
16684
16685 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
16686
16687         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
16688         functions try to allocate from the image mempool.
16689
16690 2006-05-12  Dick Porter  <dick@ximian.com>
16691
16692         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
16693
16694 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
16695
16696         * object.c: The FieldGetter and FieldSetter methods require the full
16697         name of the class, not only the name. Fixes bug #78277.
16698
16699 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16700
16701         * loader.c (method_from_memberref): Do not pass the NULL klass to
16702         mono_loader_set_error_() methods.  Pass the non-NULL value
16703         (class). 
16704
16705 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16706
16707         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16708         (mono_assembly_close): Null out assembly->image->references after freeing it.
16709
16710         * image.c (mono_image_close): Free image->references.
16711         
16712         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16713
16714 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16715
16716         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16717         before checking if it's NULL (g_assert).
16718
16719 2006-05-10  Martin Baulig  <martin@ximian.com>
16720
16721         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16722         I thought I already killed that two months ago, but now it somehow reappeared.
16723
16724 2006-05-10  Martin Baulig  <martin@ximian.com>
16725
16726         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16727
16728 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16729
16730         * reflection.c: Allocate memory for dynamically created methods in the image
16731         mempools.
16732
16733 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16734
16735         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16736         don't use the ad pointer before checking if it's NULL (g_assert).
16737
16738 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16739
16740         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16741         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16742
16743         * marshal.c: Allocate all signatures from mempools.
16744
16745         * marshal.c: Allocate some more signatures from mempools.
16746
16747 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16748
16749         * object.c (mono_load_remote_field): The code used to provide a
16750         temporary variable for returning results if the user did not
16751         provide a result pointer.  But our temporary variable was allocted
16752         on the satck.
16753
16754         Fix calling code to always pass a result area.   Coverity ID 103.
16755
16756 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16757
16758         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16759         value, not the old. Fixes #78312.
16760         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16761
16762         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16763         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16764         per-image cache.
16765
16766         * assembly.c (mono_assembly_close): Free image->references.
16767
16768         * assembly.c (mono_assembly_names_equal): Fix a warning.
16769         (mono_assemblies_cleanup): Cleanup more global data.
16770
16771         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16772
16773         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16774         ptr_cache and image->modules.
16775
16776         * image.c (mono_image_init): Allocate array_cache lazily.
16777         
16778 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16779
16780         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16781         behavior was changed recently and has bad side effects.
16782
16783 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16784
16785         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16786         
16787         * assembly.c (mono_assembly_close): Remove a debug printf.
16788
16789         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16790
16791         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16792         to also allow for temporary references between mono_image_open ()/close ().
16793
16794         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16795
16796 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16797
16798         * marshal.c: Fix support for dynamic methods.
16799
16800         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16801
16802         * marshal.c (mono_marshal_cleanup): New cleanup function.
16803
16804         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16805         image mempools.
16806
16807         * class.c (mono_class_init): Fix leaking class->nested_classes.
16808
16809         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16810
16811         * image.c (mono_image_init): Initialize the new cashes.
16812
16813         * image.c (mono_image_close): Destroy the new cashes.
16814
16815         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16816
16817         * mempool.c (mono_mempool_strdup): New helper function.
16818
16819         * class-internals.h: Add prototype for mono_loader_unlock ().
16820
16821         * domain.c (mono_jit_info_table_find): Fix a warning.
16822         (mono_debugger_check_runtime_version): Ditto.
16823
16824         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16825         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16826         functions to these modules.
16827
16828         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16829         metadata modules.
16830         
16831         * marshal.c (mono_free_bstr): Fix a warning.
16832
16833         * assembly.c (mono_assembly_open_full): Fix another small leak.
16834
16835         * object.c: Fix some unload leaks in the remoting code.
16836
16837         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16838         function.
16839
16840         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16841
16842         * reflection.c: Fix some unload leaks in dynamic assemblies.
16843
16844 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16845
16846         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16847         * marshal.h: Add BSTR support on Win32
16848         * icall.c: Add BSTR icalls
16849         * metadata.h: Add BSTR enums
16850
16851 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16852
16853         Work to catch the crash from #76795 and turn it into an
16854         exception.   As I stubbed out pieces of the VisualBasic support,
16855         I found a number of places where the code was failing and I added
16856         checks to those places. 
16857         
16858         * metadata.c (do_mono_metadata_parse_generic_class): Make this
16859         function return a status code.  If we fail to parse the signature
16860         from mono_metadata_parse_generic_inst, return FALSE.
16861
16862         * loader.c (mono_get_method_from_token): If we fail to load the
16863         method (mono_class_get) return NULL.   
16864
16865         * (method_from_memberref): Return NULL if we are unable to parse
16866         the method signature
16867
16868         (mono_loader_error_prepare_exception): Since we now use the
16869         loader_error flag internally to stop processing, and obtaining
16870         exceptions that might be thrown will walk this code path the
16871         proper way of going from a MonoLoaderError into a
16872         MonoException was convoluted.   This new routine encapsulates the
16873         process of turning the error into an exception and *clearing* the
16874         error afterwards.
16875         
16876 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16877
16878         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
16879         with missing assemblies), and to cope with:
16880
16881                 * Missing fieldref from a non-existing assembly.
16882                 * Missing methodref from a non-existing assembly.
16883
16884         The first batch of work to address *some* of the issues from 76661.
16885         
16886         * object.c (mono_class_create_runtime_vtable): If we fail to
16887         initialize the class raise the exception here. 
16888
16889         * metadata.c (mono_class_get_overrides_full): If any methods fail
16890         to load return the failure to the caller.
16891
16892         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16893         flagging assemblies that failed to load.   
16894
16895         Do not crash if we are unable to load the assembly.
16896
16897         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16898         assemblies. 
16899
16900         * loader.c (mono_loader_set_error_type_load): Change the
16901         convention to always pass unallocated strings, so we make our own
16902         copies (I know our own code had duplicated strings before, but
16903         this keeps the normal conventions).
16904         (method_from_memberref): Call mono_loader_set_error_method_load
16905         for all possible failures of loading the class. 
16906         Remove assert, turn into a loader error.
16907
16908         (mono_loader_error_to_exception): Move this routine from mini
16909         (mini_loader_error_to_exception) there was no need to have that in
16910         mini. 
16911
16912         * class.c (mono_class_from_typeref): If we were not able to load
16913         the assembly with mono_assembly_load_reference, call the
16914         mono_loader_set_error_type_load to register the problem.
16915
16916         (mono_class_setup_fields): If we fail to load the type from
16917         mono_metadata_parse_type_full, call mono_class_set_failure and
16918         break from the loop.
16919
16920         If class->exception_type is set, we do not layout the fields as
16921         that might crash the runtime, and instead return (from breaking
16922         from the previous loop).
16923
16924         (mono_class_setup_vtable): This now returns a boolean indicating
16925         whether the table was properly setup.   The decision is driven by
16926         mono_class_get_overrides_full which might run into non-existing
16927         methods. 
16928         
16929         (mono_class_init): Returns TRUE on success or FALSE if there was a
16930         problem in loading the type (incorrect assemblies, missing
16931         assemblies, methods, etc).
16932
16933         When we call mono_class_setup_fields we also check for a potential
16934         error inside this call (either a class exception or a general
16935         loader exception).
16936
16937         (mono_class_create_from_typedef): If the parent fails to load
16938         (calling mono_class_get_full) return NULL.
16939         
16940         ** Important **
16941
16942         calls to mono_metadata_parse_type_full should be checked
16943         everywhere and set the mono_class_set_failure
16944         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
16945
16946         The current patch checks the places where my manually constructed
16947         tests show the errors are showing up, but we should do it
16948         everywhere. 
16949
16950         ** Important2 **
16951
16952         mono_class_init return values should be tested everywhere, like
16953         the previous case this is something that we should audit
16954         everywhere and not only on the cases exposed by the tests I
16955         created. 
16956
16957 2006-04-26  Miguel de Icaza  <miguel@novell.com>
16958
16959         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
16960         boolean parameter and instead pass the information on `options'
16961         parameter (FileOptions).
16962
16963         * icall.c: Register the new signature for MonoIO.Open.
16964
16965         * debug-helpers.c (dis_one): Trying to understand how coverity
16966         works.  Fix Run 5, item 78.
16967
16968 2006-04-26  Dick Porter  <dick@ximian.com>
16969
16970         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
16971         dereference.
16972
16973 2006-04-25  Martin Baulig  <martin@ximian.com>
16974
16975         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
16976
16977         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
16978         debugger_thread_created().
16979         (debugger_gc_push_all_stacks): Don't handle the main thread in any
16980         special way.
16981         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
16982         (mono_debugger_finalize_threads): New function; undo the effects
16983         of mono_debugger_init_threads().
16984         (mono_debugger_create_all_threads): Removed.
16985
16986 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16987
16988         * image.c (mono_image_close): Tidy up trace messages.
16989
16990         * assembly.c (mono_assembly_close): Ditto.
16991
16992         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
16993         no longer references an already freed assembly. Fixes #78168.
16994
16995 2006-04-21  Dick Porter  <dick@ximian.com>
16996
16997         * threads.c (mono_thread_detach): Fix reference counting when
16998         detaching threads.
16999
17000 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
17001
17002         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
17003         #78155.
17004
17005 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17006
17007         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
17008         (mono_type_to_stind): Ditto.
17009
17010         * marshal.c: Use the new helper functions to simplify code.
17011
17012         * image.c (mono_image_close): Add some code for help debug assembly unloading
17013         problems.
17014
17015         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
17016         image mempool.
17017
17018         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
17019         assembly was already loaded in another appdomain. Fixes #78083.
17020
17021 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
17022
17023         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
17024         referenced assemblies.
17025         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
17026
17027         * domain.c (mono_domain_free): Add a trace message.
17028
17029         * appdomain.c (add_assemblies_to_domain): Ditto.        
17030
17031         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
17032         field.  
17033
17034 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17035
17036         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
17037
17038 2006-04-12  Martin Baulig  <martin@ximian.com>
17039
17040         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
17041         `USE_INCLUDED_LIBGC'.   
17042
17043 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17044
17045         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17046         the patch contains ../ and a small directory name later. Hopefully fixes
17047         #78035.
17048
17049 2006-04-10  Martin Baulig  <martin@ximian.com>
17050
17051         Clean up the debugger's thread-handling code.
17052
17053         The debugger's thread-handling code has been moved from
17054         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17055         over the `threads' hash, keep track of exiting threads and also
17056         use proper locking.
17057
17058         We can now debug XSP and XSP based applications with the debugger.
17059
17060         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17061
17062         * threads.h
17063         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17064         (mono_install_thread_callbacks): Likewise.      
17065
17066         * threads.c (mono_thread_callbacks): Removed.
17067         (debugger_thread_created, debugger_thread_exited): New static functions.
17068         (start_wrapper): Call debugger_thread_created().
17069         (thread_cleanup): Call debugger_thread_exited().
17070         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17071         (mono_debugger_init_threads): New public function.
17072         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17073         iterate directly over the `threads' hash and also use proper locking.
17074
17075         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17076
17077         * mono-debug-debugger.h
17078         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17079
17080 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17081
17082         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17083         argument type=array. Fixes #78057.
17084
17085 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17086
17087         * culture-info-table.h : regenerated. Fixed bug #69652.
17088
17089 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17090
17091         * loader.c metadata.c: Reapply a variant r59116.
17092         
17093         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17094
17095         * class.c (mono_class_setup_interface_offsets): New internal function.
17096
17097         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17098         interfaces too. Fixes #77398.
17099
17100         * reflection.c (encode_cattr_value): Add support for 
17101         parameter type=object, argument type=array.
17102         (load_cattr_value): Ditto. Fixes #77916.
17103
17104         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17105         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17106
17107         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17108         a byval char array and CharSet is Ansi.
17109
17110         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17111
17112 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17113
17114         * metadata.c: Add some locking comments.
17115         
17116         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17117         mempool.
17118         (mono_metadata_free_method_signature): Don't free the signature itself.
17119
17120         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17121
17122         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17123         reference the same MonoImage.
17124         (mono_assembly_load_from_full): Add an assert.
17125
17126 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17127
17128         * image.c (mono_image_close): Don't put the image we are about to free into the
17129         loaded_images_guid_hash.
17130
17131         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17132         to reduce code duplication.
17133
17134         * marshal.c: Register the native functions called by this module as icalls, to
17135         somewhat centralize the creation of MonoMethodSignature's.
17136
17137         * loader.c (mono_method_signature): Add a cache for method signatures.
17138
17139         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17140         the parameter attributes of a method.
17141         (mono_metadata_parse_method_signature_full): Refactored the computation of
17142         parameter attributes into a separate function. Also avoid one allocation in
17143         most cases.
17144
17145         * assembly.c (mono_assembly_close): Ditto.
17146
17147         * image.c (mono_image_close): Log trace messages with INFO level.
17148
17149         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17150
17151         * image.c reflection.c: Correct reference counting of image modules.
17152         
17153         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17154         of this function from the image mempool.
17155         
17156         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17157         to allow more cached types to be used.
17158
17159         * mono-debug.c (mono_debug_add_method): Appled patch from
17160         David S. Miller  <davem@sunset.davemloft.net>: Access 
17161         minfo->lexical_blocks[] entry elements using read32().
17162
17163 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17164
17165         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17166         methods as it is allocated from the mempool.
17167
17168         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17169         image mempool.
17170
17171         * metadata-internals.h: Add comments describing the reference counting scheme
17172         used for MonoImage and MonoAssembly.
17173
17174         * image.c assembly.c reflection.c: Rework reference counting of images and 
17175         assemblies so they are freed when the runtime is shut down. Free some 
17176         additional memory structures when an image is unloaded.
17177         
17178 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17179
17180         * class.c loader.c reflection.c: Allocate more data structures in
17181         the image mempool.
17182
17183 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17184
17185         * icall.c
17186         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17187         build on pre glib 2.4 systems.
17188
17189 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17190
17191         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17192
17193         * icall.c: Fix some warnings.
17194
17195 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17196
17197         * culture-info-table.h : regenerated.
17198
17199 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17200
17201         * threads.c, object-internals.h, verify.c: changed the culture caching
17202         code to use a normal MonoArray for storage so the GC can keep track of
17203         them easily. Fixed bits of the cache logic, too and simplified the
17204         code.
17205
17206 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17207
17208         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17209         thread for non-Boehm GCs.
17210
17211 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17212
17213         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17214         needed to keep track of the data for static fields.
17215
17216 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17217
17218         Fix #75172
17219         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17220         for interface classes.  Use 'num_methods' instead.
17221         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17222         before using '->vtable_size' field.
17223
17224 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17225
17226         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17227         doesn't contain managed pointers, so use a normal hashtable.
17228
17229 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17230
17231         * reflection.c, class-internals.h, domain.c: fixed handling of types
17232         used as values for objects in custom attributes (bug #77915):
17233
17234 2006-03-24  Martin Baulig  <martin@ximian.com>
17235
17236         * class.c (mono_class_setup_fields): Added support for generic
17237         instances; fixes #77580.
17238
17239 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17240
17241         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17242
17243 2006-03-24  Dick Porter  <dick@ximian.com>
17244
17245         * file-io.c (get_file_attributes): More stat macro breakage.
17246         Fixes bug 77759.
17247
17248 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17249
17250         * profiler.c: added the file=filename option in the default profiler
17251         to output the profile data to filename.
17252
17253 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17254
17255         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17256         bug #77877.
17257
17258 2006-03-22  Martin Baulig  <martin@ximian.com>
17259
17260         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17261         allocated `MonoClassField *' in `fb->handle'.
17262
17263 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17264
17265         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17266         allocate interface ID to save memory and allow better ID reuse on
17267         appdomain unload. setup_generic_vtable () removal from Martin.
17268
17269 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17270
17271         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17272         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17273         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17274         write barriers for reference stores with managed objects accessed with
17275         C structures in the runtime and in embedding programs.
17276
17277 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17278
17279         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17280         'interface_id' and 'max_interface_id' fields of MonoClasses
17281         representing open generic types.
17282
17283 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17284
17285         * object.h, object.c, icall.c: added functions to deal with
17286         storing valuetypes that contain references in managed objects.
17287         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17288         fixes and comments around uses of mono_array_addr ().
17289
17290 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17291
17292         * object.h, icall.c, monitor.c: object.GetHashCode ()
17293         implementation that supports the moving garbage collector.
17294
17295 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17296
17297         * icall.c, threads-types.h, threads.c: implemented finalizer for
17298         LocalDataStoreSlot.
17299
17300 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17301
17302         * metadata.c (mono_type_size): Add a fixme.
17303         (mono_type_stack_size): Ditto.
17304
17305         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17306         'type_forwarders' field.
17307
17308         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17309         attribute from net 2.0.
17310
17311         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17312         from class.c.
17313
17314         * class.c (mono_class_setup_fields): Fix a warning.
17315         
17316         * class.c (mono_class_from_name): Add support for assemblyref entries
17317         in the EXPORTEDTYPE table.
17318
17319         * reflection.c: Add support for handling type forwarders under net 2.0.
17320
17321         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17322         
17323 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17324
17325         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17326         overwriting entries in ModuleBuild->types, also clean up the code
17327         a little. Fixes #77774.
17328
17329 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17330
17331         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17332         load friend assembly info when present.
17333
17334 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17335
17336         Fix crasher on gtest-158.cs.
17337         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17338         the return value if the MonoClass we want is yet in an
17339         inconsistent state.
17340         * class.c (mono_class_create_from_typedef): Add an comment
17341         explaining an order dependency between mono_class_setup_parent and
17342         mono_class_setup_mono_type.
17343
17344 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17345
17346         * class.c: documentation updates and events bug fix.
17347
17348 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17349
17350         * class.c: some cleanup, locking fixes.
17351
17352 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17353
17354         * class.c: fix the generics code to setup nested
17355         type info to the instantiated type (bug #77770).
17356
17357 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17358
17359         * marshal.c: fixed a few type correctness issues.
17360
17361 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17362
17363         * loader.c: the Set/Get/Addrtess array methods should be public.
17364
17365 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17366
17367         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17368         
17369         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17370         info->wrapper.
17371
17372 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17373
17374         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17375
17376         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17377
17378         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17379         (mono_mempool_alloc0): Ditto.
17380
17381 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17382
17383         * socket-io.c:
17384         (create_object_from_sockaddr): it was allocating 4 extra bytes
17385         for the AF_UNIX data. Fixes bug #77747.
17386
17387 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17388
17389         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17390
17391 2006-03-09  Dick Porter  <dick@ximian.com>
17392
17393         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17394         Fixes bug 76966 again.
17395
17396 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17397
17398         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17399         names from r57532
17400         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17401
17402 2006-03-07  Martin Baulig  <martin@ximian.com>
17403
17404         * object.c
17405         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17406
17407 2006-03-07  Martin Baulig  <martin@ximian.com>
17408
17409         * class.c
17410         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17411         regression introduced in r56970; see gtest-252.cs.
17412
17413         * loader.c (mono_get_method_constrained): Correctly handle generic
17414         methods; see gtest-253.cs.
17415
17416 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17417
17418         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17419
17420 2006-03-04  Martin Baulig  <martin@ximian.com>
17421
17422         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17423         compute the parent type at runtime, just like we're already doing
17424         it for interfaces.
17425
17426         * reflection.c
17427         (mono_reflection_bind_generic_parameters): Don't compute the
17428         parent type anymore.
17429
17430         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17431
17432 2006-03-04  Martin Baulig  <martin@ximian.com>
17433
17434         * mono-debug-debugger.h
17435         (mono_debugger_create_notification_function): Allocate memory at
17436         runtime and return a pointer to it.
17437
17438 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17439
17440         * assembly.c: Fix windows build.
17441         
17442         * assembly.c: Fix build.
17443
17444         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17445
17446         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17447         
17448 2006-03-03  Dick Porter  <dick@ximian.com>
17449
17450         * process.c
17451         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17452         Check parameters before dereferencing them.  Fixes Aaron's part of
17453         bug 77393.
17454
17455 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17456
17457         Fix performance regression.
17458         * loader.c (find_method_in_class): Add 'from_class' argument.
17459         Rename 'klass' argument to 'in_class'.  The signature is compared
17460         against the method in 'in_class', and the corresponding method is
17461         returned from 'from_class'.
17462         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17463         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17464         type definition and generic instantiation in parallel.
17465         (mono_get_method_constrained): Update to changes.
17466
17467 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17468
17469         * threads.c: make sure the domain is correct, too when doing
17470         mono_thread_attach ().
17471
17472 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
17473
17474         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
17475         windows. Fixes #77683.
17476
17477 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17478
17479         * object.h, *: introduced specific way to set elements of an array
17480         of references to be used as write barrier. Still need to audit the
17481         uses of mono_array_addr.
17482
17483 2006-03-01  Miguel de Icaza  <miguel@novell.com>
17484
17485         * object-internals.h: New field to cache the assmebly name, patch
17486         from Tambet Ingo (tambet@ximian.com)
17487
17488 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17489
17490         * decimal.h, class-internals.h, metadata-internals.h,
17491         file-io.h: mark a few function declarations as internal, to
17492         reduce the number of PLT entries.
17493
17494 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17495
17496         * file-io.c: fix typo in warning message.
17497
17498 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
17499
17500         * loader.c: on unix, lookup the "*A" version of a function
17501         if charset is auto as a second option before failing.
17502
17503 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17504
17505         * class.h (mono_class_inflate_generic_method): Revert to two
17506         argument version.
17507         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17508         (mono_class_inflate_generic_method_full): Add.
17509         * class.c (mono_class_inflate_generic_method_full): Rename from
17510         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17511         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17512         * loader.c, reflection.c: Update to changes.
17513
17514 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17515
17516         * icall.c: const fixes and small improvements.
17517
17518 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17519
17520         * threadpool.c: for asynchronous connect(), enable the same workaround
17521         for BSD 6 as for the Mac. Fixes bug #77637.
17522
17523 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17524
17525         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
17526         formatted classes. Fixes #77524.
17527
17528 2006-02-24  Raja R Harinath  <rharinath@novell.com>
17529
17530         * class.c (inflate_generic_type): Add a couple more
17531         micro-optimizations.
17532         (inflate_generic_context): Don't use the 'gmethod' from
17533         'inflate_with'.
17534         (mono_class_inflate_generic_method): If the method has generic
17535         parameters, but the passed-in context doesn't have a 'gmethod',
17536         create one.  Use the possibly simplified generic instantiation
17537         from the declaring class instead of the one passed in.
17538
17539 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17540
17541         Make generic method signature and method header handling lazy.
17542         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
17543         (inflate_generic_header): Likewise.
17544         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
17545         parameter to avoid inflating types.
17546         (mono_get_inflated_method): Empty out.
17547         * class.h (mono_class_inflate_generic_method): Update to changes.
17548         * loader.c (mono_get_method_from_token): Don't parse signature for
17549         generic methods, nor methods of generic classes.
17550         (mono_method_signature): Rename from 'mono_method_signature'.
17551         Inflate signature on demand.
17552         (mono_method_get_header): Inflate method header on demand.
17553         * reflection.c: Update to changes.
17554
17555 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17556
17557         * metadata.c (mono_metadata_inflate_generic_inst): If the
17558         instantiation is closed, don't bother expanding it in the new
17559         context.
17560         * class.c (inflate_generic_class): If the generic instantiation
17561         doesn't change after inflation, return the argument itself.
17562         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
17563         Add bounds checks.
17564         (inflate_generic_context): If neither the generic class nor the
17565         generic method instantiations change, return the original context.
17566         * reflection.c (mono_method_get_object): Do
17567         'mono_get_inflated_method' before accessing the ->klass field.
17568         (inflate_mono_method): Don't create a MonoGenericMethod unless
17569         necessary.
17570         (inflate_method): Don't pass a constructed type as the declaring
17571         type of a methodbuilder.
17572
17573 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
17574
17575         * object.c: fix memory overwrite.
17576
17577 2006-02-22  Dick Porter  <dick@ximian.com>
17578
17579         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
17580         it doesn't work any more.
17581         (mono_threads_request_thread_dump): Fix unused variable warnings.
17582
17583 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17584
17585         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
17586         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
17587         the public header file.
17588
17589 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
17590
17591         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
17592
17593 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17594
17595         * class-internals.h, object.c: reduce the size of MonoVTable
17596         and store the interface_offsets array at negative offsets.
17597
17598 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
17599
17600         * metadata.c: tweak table descriptors data structures to reduce
17601         size and runtime relocations.
17602
17603 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17604
17605         * marshal.c: fix some types and opcodes to be type-safe
17606         in marshaling wrappers.
17607
17608 2006-02-21  Ankit Jain  <jankit@novell.com>
17609
17610         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
17611
17612 2006-02-21  Raja R Harinath  <rharinath@novell.com>
17613
17614         * metadata.c (get_constraints): Relax debugging checks for monodis.
17615
17616 2006-02-21  Ankit Jain  <jankit@novell.com>
17617
17618         * metadata.c (mono_metadata_load_generic_params): Move the code
17619         checking for ambiguous generic params from here to mono/dis/get.c
17620         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
17621
17622 2006-02-21  Raja R Harinath  <harinath@gmail.com>
17623
17624         Fix assertion triggered when compiling nemerle.
17625         * class.c (mono_get_shared_generic_inst): Rename from
17626         get_shared_inst and make non-static.
17627         * loader.c (mono_get_shared_generic_method): New.  Used to create
17628         the MonoGenericContext-equivalent of a MonoGenericContainer.
17629         (mono_get_method_from_token): Initialize the 'context' field of
17630         the created MonoGenericContainer.
17631         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
17632         * metadata.c (get_constraints): Add sanity check.
17633         * class-internals.h: Add new internal methods.
17634
17635         * reflection.c (verify_safe_for_managed_space): New sanity check.
17636         Currently checks that owner-less generic parameters aren't allowed
17637         in managed space.
17638         (mono_type_get_object): Use it.
17639         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
17640         that are now in mono_type_get_object.
17641         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
17642
17643 2006-02-19  Raja R Harinath  <harinath@gmail.com>
17644
17645         * metadata.c (mono_type_create_from_typespec): Rename from
17646         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
17647         argument and caching of types in the generic container.
17648         (unwrap_arrays, find_generic_param): Remove.
17649         * metadata-internals.h: Update.
17650         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
17651
17652 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
17653
17654         * class.c (mono_class_get_exception_for_failure): Fix a warning.
17655
17656         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
17657         return values. Fixes #77581.
17658
17659         * class.c (mono_fnptr_class_get): Switch name and name_space.
17660
17661         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
17662         classes and add support for [In, Out] attributes.
17663         (mono_marshal_free_asany): Ditto. Fixes #77524.
17664
17665 2006-02-18  Raja R Harinath  <harinath@gmail.com>
17666
17667         * class.c (mono_class_from_generic_parameter): Make more robust to
17668         incomplete MonoGenericContainers from monodis.
17669
17670 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17671
17672         * class-internals.h: added some more exception types.
17673         * class.c, metadata.c: added a few checks to handle missing
17674         types.
17675
17676 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17677
17678         Use owner-less generic-params some more.
17679         * class.c (my_mono_class_from_generic_parameter): Remove.
17680         (mono_class_from_generic_parameter): Handle null image,
17681         param->name and param->owner.
17682         (mono_class_from_mono_type): Update.
17683         (mono_class_create_from_typespec): Remove 'container' parameter.
17684         If that parameter is non-null, the result is always inflated by
17685         'mono_class_get_full' anyway.
17686         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
17687         parameter.
17688         (mono_class_get_full): Update.
17689
17690         * class.c (inflate_generic_type) [GENERICINST]: If the generic
17691         instance is not open, don't bother inflating.
17692         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
17693         parse metadata for inflated classes.
17694         (_mono_class_get): Change GenericContext* parameter to
17695         GenericContainer*.
17696         (mono_class_create_from_typespec): Likewise.  Simplify, and
17697         implement trivially.  All the cases are handled in
17698         mono_class_from_mono_type.  Don't inflate returned class.
17699         (mono_class_get_full): Delegate GENERICINST optimization to
17700         inflate_generic_type.
17701         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17702
17703 2006-02-16  Dick Porter  <dick@ximian.com>
17704
17705         * socket-io.c (create_object_from_sockaddr): Fix typo.
17706         (create_sockaddr_from_object): Check array lengths before
17707         potentially accessing items off the end.
17708         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17709         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17710         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17711         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17712         length checks to avoid wraparound overflows.
17713         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17714         contents of the array of sockets
17715         (hostent_to_IPHostEntry2)
17716         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17717         Check return value of inet_ntop ().
17718         (addrinfo_to_IPHostEntry): Fix typo
17719
17720 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17721
17722         Type metadata parsing doesn't use generic-instantiation information.
17723         * metadata.c (mono_metadata_parse_array_full): Change
17724         MonoGenericContext* parameter to MonoGenericContainer*.
17725         (mono_metadata_parse_type_full): Likewise.
17726         (mono_type_create_from_typespec_full): Likewise.
17727         (mono_metadata_parse_mh_full): Likewise.
17728         (mono_metadata_parse_generic_inst): Likewise.
17729         (do_mono_metadata_parse_generic_class): Likewise.
17730         (do_mono_metadata_parse_type): Likewise.
17731         * metadata-internals.h: Update to changes.
17732         * class.c (mono_class_find_enum_basetype): Likewise.
17733         (mono_class_setup_fields): Likewise.
17734         (mono_class_create_from_typespec): Likewise.
17735         * loader.c (method_from_methodspec): Likewise.
17736         (mono_get_method_from_token): Likewise.
17737         (mono_method_get_header): Likewise.
17738
17739 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17740
17741         * marshal.c: handle additional GENERICINST case (patch from
17742         Thong Nguyen <tum@veridicus.com>).
17743         Fix a few cases where LDIND_I/STIND_I was used for references.
17744
17745 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17746
17747         * reflection.c (mono_reflection_get_token): Remove unused variable.
17748
17749 2006-02-16  Martin Baulig  <martin@ximian.com>
17750
17751         * reflection.c (mono_reflection_get_token): Add support for fields
17752         in instantiated generic types.
17753
17754         * icall.c
17755         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17756
17757 2006-02-15  Martin Baulig  <martin@ximian.com>
17758
17759         * icall.c
17760         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17761         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17762         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17763         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17764
17765 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17766
17767         * class.c, metadata.c, metadata.h, object.c, icall.c,
17768         marshal.c: changed mono_type_get_underlying_type () to do
17769         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17770         Fixed handling of instantiated generic valuetypes (bug #75479).
17771
17772 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17773
17774         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17775         Delegate to mono_metadata_decode_value, and work on the returned value.
17776
17777         * icall.c (ves_icall_MonoType_GetGenericArguments):
17778         Add consistency check here too.
17779         
17780 2006-02-15  Ankit Jain  <jankit@novell.com>
17781
17782         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17783         char/short etc.
17784
17785 2006-02-15  Ankit Jain  <jankit@novell.com>
17786
17787         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17788         signed values, used only for representing lower bounds of arrays.
17789         (mono_metadata_parse_array_full): Use new
17790         mono_metadata_decode_signed_value to decode lower bounds.
17791
17792 2006-02-14  Martin Baulig  <martin@ximian.com>
17793
17794         * reflection.c
17795         (mono_reflection_get_token): Support "MonoGenericMethod" and
17796         "MonoGenericCMethod" and allow generic instances / methods.
17797
17798 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17799
17800         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17801         to obtain the terminal size using an ioctl.
17802
17803         * object.c (mono_nullable_init): Revert this as nullable reference
17804         types are not valid.
17805         (mono_nullable_box): Ditto.
17806
17807 2006-02-09  Dick Porter  <dick@ximian.com>
17808
17809         * threads.c (mono_thread_detach): Drop a reference to the thread
17810         we're detaching.
17811
17812 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17813
17814         * object.c (mono_nullable_init): Handle nullable reference types.
17815         (mono_nullable_box): Ditto. Fixes #77446.
17816
17817 2006-02-07  Martin Baulig  <martin@ximian.com>
17818
17819         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17820
17821 2006-02-07  Ankit Jain  <jankit@novell.com>
17822
17823         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17824         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17825         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17826         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17827         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17828         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17829
17830 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17831
17832         * class.c (mono_class_create_generic): Set type_token as well.
17833
17834         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17835         compatible with MS.
17836
17837 2006-02-02  Martin Baulig  <martin@ximian.com>
17838
17839         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17840         has never been used so far.
17841
17842 2006-02-02  Martin Baulig  <martin@ximian.com>
17843
17844         * mono-debug-debugger.h: Changed comment at the top of this file;
17845         the header is not installed, but it's safe to #include it from
17846         within the JIT.
17847
17848         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
17849         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
17850
17851 2006-02-02  Martin Baulig  <martin@ximian.com>
17852
17853         * mono-debug.h
17854         (MonoSymbolTable): Removed the `metadata_info' field.
17855
17856         * mono-debug.c
17857         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
17858
17859         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17860         (mono_debugger_add_builtin_types): Removed.
17861         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
17862         (mono_debugger_create_notification_function): We now operate on a
17863         pre-allocated area; take a `gpointer' and return `void'.
17864
17865         * mono-debug-debugger.c
17866         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
17867         (mono_debugger_add_builtin_types): Removed.
17868
17869 2006-02-02  Martin Baulig  <martin@ximian.com>
17870
17871         * threads.c (mono_debugger_create_all_threads): New public method.
17872
17873 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17874
17875         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
17876         breaks on several platforms.
17877
17878 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
17879
17880         * assembly.c: the VS.NET build doesn't supply default values for
17881         MONO_ASSEMBLIES and MONO_CFG_DIR.
17882
17883 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17884
17885         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17886         helper function.
17887
17888         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17889
17890         * loader.c (method_from_memberref): Fix a warning.
17891
17892         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17893
17894         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17895         with explicit layout. Fixes #77433.
17896
17897 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17898
17899         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17900         max_interface_id is initialized before using it. Fixes #77398.
17901         (ves_icall_Type_GetInterfaces): Ditto.
17902
17903 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17904
17905         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17906         allocate memory for parameter attributes when parsing memberref
17907         signatures.
17908         * loader.c (mono_loader_set_error_method_load): Don't warn.
17909         (method_from_memberref): Ensure MissingMethodException gets thrown
17910         if method is not found.  Make warning more informative.
17911
17912 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17913
17914         Fix #77397
17915         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17916         return true if is byref.
17917         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17918         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17919         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17920
17921 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17922
17923         Fix tests/find-method.2.il
17924         * loader.c (find_method, find_method_in_class): Remove is_inflated
17925         argument.  Revert 2006-01-18 change.
17926         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17927         is generic, search for method in its generic definition.
17928         * class.c (mono_class_setup_vtable_general): Print generic
17929         arguments of generic types in debugging printf.
17930
17931 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17932
17933         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
17934
17935         * threads.c (mono_threads_request_thread_dump): New helper function.
17936
17937 2006-01-25  Raja R Harinath  <rharinath@novell.com>
17938
17939         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
17940
17941 2006-01-25  Ankit Jain  <jankit@novell.com>
17942
17943         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
17944         move definition to ..
17945         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
17946         
17947 2006-01-25  Ankit Jain  <jankit@novell.com>
17948             Raja R Harinath  <rharinath@novell.com>
17949
17950         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
17951         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
17952         as necessary.
17953
17954 2006-01-25  Martin Baulig  <martin@ximian.com>
17955
17956         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
17957         `MonoDebuggerThread' into debug-debugger.c.
17958
17959 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17960
17961         * profiler.c: fix printing of data.
17962
17963 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
17964
17965         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
17966           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
17967
17968 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17969
17970         * object.c: fix deadlock related to string interning.
17971
17972 2006-01-23  Martin Baulig  <martin@ximian.com>
17973
17974         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17975
17976         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
17977
17978 2006-01-23  Martin Baulig  <martin@ximian.com>
17979
17980         * mono-debug.h: Moved the prototypes of some functions which are
17981         used by the JIT here from mono-debug-debugger.h.
17982
17983 2006-01-21  Martin Baulig  <martin@ximian.com>
17984
17985         * Makefile.am: Don't install mono-debug-debugger.h.
17986
17987 2006-01-21  Martin Baulig  <martin@ximian.com>
17988
17989         * mono-debug-debugger.h: Enforce the private status of this header
17990         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
17991         Moved some stuff from mono-debugger-jit-wrapper.h here.
17992
17993 2006-01-20  Raja R Harinath  <rharinath@novell.com>
17994
17995         * class.c (mono_class_from_typeref): Add a sanity test to help
17996         catch lack of assembly load/search hooks.
17997
17998 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
17999
18000         * marshal.c (emit_struct_conv): Relax the fields with same offset
18001         check even more. Fixes #77230.
18002
18003 2006-01-18  Martin Baulig  <martin@ximian.com>
18004
18005         * loader.c (find_method_in_class): Added `gboolean is_inflated'
18006         argument; if false, we compare the uninstantiated signatures.
18007         (method_from_memberref): Compare the uninstantiated signatures;
18008         fixes #76417.
18009
18010 2006-01-18  Robert Jordan  <robertj@gmx.net>
18011
18012         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
18013         Clear the weak link. Fixes bug #77170.
18014
18015         * gc.c (mono_gchandle_free):
18016         Reflect *-gc.c changes (tiny optimization).
18017
18018 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
18019
18020         * metadata.c (mono_metadata_signature_dup): Applied patch from
18021         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
18022         Fixes #77288.
18023
18024 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18025
18026         * marshal.c (emit_struct_conv): Allow fields with the same offset when
18027         marshalling from native to managed code. Fixes #77230.
18028
18029 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18030
18031         * threadpool.c: fix problem (Mac only) when more than one asynchronous
18032         connect. Fixes bug #77020.
18033
18034 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18035
18036         * class.c: fixed id assignement for nested interfaces (bug #77275).
18037         Added also better info for --print-vtable debugging.
18038
18039 2006-01-12  Martin Baulig  <martin@ximian.com>
18040
18041         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
18042         interfaces on-the-fly; fixes #76625.
18043
18044         * class-internals.h
18045         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18046         don't need that anymore.
18047
18048 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18049
18050         * socket-io.c
18051         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18052         To avoid initing the nested_classes when not needed I turned the
18053         PeerCredData as a toplevel internal class, as it has to be shared
18054         anyways. 
18055
18056         Fixes the CASA issue.
18057
18058 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18059
18060         * domain.c: Accessors for MonoJitInfo
18061
18062         * profiler-private.h: Add jitinfo to the end jit hook
18063
18064         * profiler.[ch]: Define new hooks, called after jitting which give
18065         the MonoJitInfo that was compiled
18066
18067 2006-01-10  Martin Baulig  <martin@ximian.com>
18068
18069         * class.c (mono_class_setup_events): Add support for generic
18070         classes; fixes #76440.
18071
18072 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18073
18074         Fix #77160.
18075         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18076         on passed-in method.
18077
18078 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18079
18080         * object.c (mono_runtime_invoke_array): Add Nullable support.
18081
18082         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18083
18084 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18085
18086         * file-io.c: Don't consider sockets as directory and avoid an endless
18087         loop. Fix bug #76966.
18088
18089 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18090
18091         * object.c (mono_nullable_init): New helper function.
18092         (mono_nullable_box): Ditto.
18093
18094         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18095
18096         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18097
18098         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18099         
18100 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18101
18102         * class.c (mono_class_is_assignable_from): Make T assignable to 
18103         Nullable<T>.
18104
18105 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18106
18107         * appdomain.c: Bump corlib version to 46.
18108         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18109         serialization purpose) and changed ves_icall_System_Reflection_
18110         Assembly_get_code_base signature to accept a boolean (to escape, or 
18111         not, the assembly code base).
18112
18113 2005-12-23  Dick Porter  <dick@ximian.com>
18114
18115         * icall.c: 
18116         * threads-types.h: 
18117         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18118         CreateEvent icall now returns "created" boolean parameter.
18119
18120 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18121
18122         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18123         #76967.
18124
18125         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18126         when attr_klass is an interface. Fixes #77045.
18127
18128 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18129
18130         * marshal.c (emit_struct_conv): Fix previous patch.
18131         
18132         * marshal.c (emit_struct_conv): Add a check for fields with the same
18133         offset.
18134
18135 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18136
18137         Fix regression in Mono.C5.
18138         * class.c (mono_class_create_generic): If 'klass' is an interface
18139         set up the interface offsets.
18140         (mono_class_is_assignable_from): Don't throw away generic arguments.
18141
18142 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18143
18144         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18145         type parameters.
18146
18147 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18148
18149         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18150         dead store.
18151         (do_mono_metadata_parse_generic_class): Don't pass the current
18152         generic context when parsing the type being instantiated: it
18153         cannot use it, anyway.
18154
18155         * loader.c (method_from_memberref): Don't inflate a signature if
18156         it doesn't contain any type parameters.
18157
18158 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18159
18160         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18161
18162 2005-12-14  Martin Baulig  <martin@ximian.com>
18163
18164         * class.c
18165         (mono_type_get_name_recurse): Don't return null for type
18166         parameters and open generic classes.
18167         (mono_class_setup_methods): Don't exclude generic instances.
18168         (mono_get_unique_iid): Use different IDs for different
18169         instantiations of the same generic type.
18170         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18171         open generic instances; create a normal vtable for closed generic
18172         instances.
18173         (mono_class_setup_vtable_general): We're now also called for
18174         closed generic instances.
18175
18176         * reflection.c
18177         (mono_reflection_bind_generic_parameters): Correctly use
18178         mono_metadata_lookup_generic_inst() everywhere.
18179
18180 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18181
18182         * object.c (mono_class_create_runtime_vtable): Call 
18183         mono_class_setup_vtable ().
18184
18185         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18186         function.
18187         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18188         #76959.
18189
18190         * loader.c (mono_loader_set_error_type_load): Print the type load
18191         warnings to the console so they are more visible to the user.
18192         (mono_loader_set_error_method_load): Ditto.
18193
18194         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18195         is still broken.
18196         
18197         * reflection.c (ensure_runtime_vtable): Fix build.
18198
18199         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18200         doesn't work in all cases.
18201
18202 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18203
18204         * object.c (mono_array_new_full): Treat a single dimensional array
18205         with 0 lower bounds as an szarray. Fixes #76973.
18206
18207         * reflection.c (custom_attr_visible): Really fix this.
18208
18209 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18210
18211         * reflection.c (custom_attr_visible): Allow nested public attributes
18212         as well.
18213
18214         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18215         interface check.
18216
18217 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18218
18219         * class.c (set_generic_param_owner): Delete.
18220         (mono_class_create_from_typedef): Don't set ->owner field of
18221         generic parameters to "param containers" of enclosing classes.
18222         * reflection.c (mono_reflection_initialize_generic_parameter):
18223         Likewise.
18224
18225 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18226
18227         * reflection.c (custom_attr_visible): Fix build.
18228
18229 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18230
18231         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18232         private attributes.
18233         
18234         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18235         handling of null parameter defaults.
18236
18237 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18238
18239         * class.c (mono_class_from_generic_parameter): Don't set
18240         klass->generic_container.
18241         (my_mono_class_from_generic_parameter): Likewise.
18242
18243 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18244
18245         * reflection.c (load_public_key): Fix a warning.
18246         (method_encode_code): Fix unaligned accesses.
18247
18248 2005-12-07  Martin Baulig  <martin@ximian.com>
18249
18250         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18251
18252         * reflection.c
18253         (write_generic_param_entry): Encode our custom attrs.
18254
18255         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18256
18257 2005-12-07  Martin Baulig  <martin@ximian.com>
18258
18259         * reflection.c (encode_new_constraint): Removed; we don't use the
18260         `NewConstraintAttribute' anymore.
18261
18262 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18263
18264         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18265         not fire a TypeResolve event when Assembly.GetType () is called.
18266
18267 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18268
18269         Beginning of support for nullable types in the runtime. Parts of
18270         this patch are from Martin.
18271
18272         * appdomain.c (MONO_CORLIB_VERSION): Bump
18273
18274         * domain.c (mono_init_internal): get the nullable type
18275
18276         * class.c (mono_class_is_nullable): New method
18277         (mono_class_get_nullable_param): New mehod
18278         (mono_class_create_generic): In types T? set cast_class to T
18279
18280         * class-internals.h (MonoDefaults): new nullable default class
18281         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18282         new methods.
18283
18284 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18285
18286         * metadata.c (select_container): New.  Refactor code to select the
18287         appropriate GenericContainer given the type of generic parameter
18288         we are looking for.
18289         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18290         not a MonoGenericContext.  Use select_container.  Update parameters.
18291         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18292         and MONO_TYPE_MVAR.
18293         (unwrap_arrays): Remove duplicate tests.
18294         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18295         generic instantiated class to find any arguments that are generic
18296         parameters.
18297         (mono_type_create_from_typespec_full): Use find_generic_param to
18298         avoid evicting some generic instantiations from the typespec
18299         cache.
18300
18301 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18302
18303         * reflection.c: fixed writing of doubles on ARM FPA.
18304
18305 2005-12-02  Robert Jordan  <robertj@gmx.net>
18306
18307         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18308
18309 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18310
18311         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18312         least on SUSE 10 they are not the same (on debian, they are just the
18313         same thing).
18314
18315 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18316
18317         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18318         DeclaringType for VARs and MVARs.
18319         * class.c (set_generic_param_owner): Fix initialization of owner
18320         fields.
18321
18322 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18323
18324         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18325
18326 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18327
18328         * threadpool.c: workaround for a bug that shows up on the Mac:
18329         select()+connect() on a blocking socket is not like it should
18330         be, so we proceed to connect() in that case, wasting the I/O
18331         threadpool thread until connect succeedes. Fixes bug #75436.
18332
18333 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18334
18335         * threadpool.c: fix typo when setting file descriptor states.
18336
18337 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18338
18339         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18340         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18341         create a temporary signature container.
18342         (mono_metadata_parse_generic_param): Update to changes.
18343         (mono_type_create_from_typespec_full): Update to changes.
18344         * loader.c (method_from_memberref): Don't use a
18345         MonoGenericContainer while parsing a memberref signature.
18346         (method_from_methodspec): Remove dead-store of the 'container'
18347         variable.  It's overwritten before use.
18348
18349         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18350         checks tighter.
18351         (mono_metadata_parse_generic_param): Likewise.
18352         * loader.c (find_method_in_class): Does not need a
18353         MonoGenericContainer.  Use 'mono_method_signature' rather than
18354         'mono_method_signature_full'.
18355         (find_method, mono_get_method_constrained, method_from_memberref):
18356         Update to changes.
18357
18358         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18359         owner-less generic-parameters are never evicted from the typespec
18360         cache.
18361
18362         * loader.c (method_from_memberref): Don't use the current context
18363         when parsing signatures.
18364         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18365
18366         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18367         side-effects in g_assert.
18368         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18369         that we don't potentially lose information.
18370
18371 2005-11-26  Dick Porter  <dick@ximian.com>
18372
18373         * icall.c:
18374         * threads.c: icalls to implement basic (ie, not named)
18375         System.Threading.Semaphore.
18376
18377 2005-11-24  Dick Porter  <dick@ximian.com>
18378
18379         * process.c
18380         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18381         Use GetProcessId() if it's available.
18382
18383 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18384
18385         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18386
18387 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18388             Ankit Jain  <jankit@novell.com>
18389
18390         * loader.c (mono_get_method_from_token): Initialize 'method' field
18391         of all generic parameters before parsing the signature.  Remove
18392         code that "fixed"-up MVAR references.
18393
18394 2005-11-23  Ankit Jain  <jankit@novell.com>
18395
18396         * metadata.c (mono_metadata_has_generic_params):
18397         (mono_metadata_load_generic_param_constraints):
18398         (mono_metadata_load_generic_params): Move duplicate code ...
18399         (mono_metadata_get_generic_param_row): ... here. Returns the
18400         first row-id in GenericParam table for a given owner (token).
18401         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18402         prototype.
18403
18404 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18405             Ankit Jain  <jankit@novell.com>
18406
18407         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18408         comparing VARs too.
18409         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18410         type->data.generic_param only if the type is an MVAR.
18411         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18412         leak owner-less VARs and MVARs into managed space.
18413
18414 2005-11-21  Martin Baulig  <martin@ximian.com>
18415
18416         * class-internals.h
18417         (MonoMethod): Moved the `generic_container' here from
18418         `MonoMethodNormal' since we now also need it for
18419         `MonoMethodPInvoke';
18420         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18421         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18422         an union containing both `MonoMethodNormal' and
18423         `MonoMethodPInvoke'.
18424
18425         * loader.c
18426         (mono_get_method_from_token): Allow implementing generic methods
18427         as interncalls.
18428
18429         * threads.c
18430         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18431         icall.
18432
18433 2005-11-17  Dick Porter  <dick@ximian.com>
18434
18435         * icall.c: 
18436         * process.h: 
18437         * process.c: Split the Process Start_internal icall into
18438         ShellExecuteEx_internal and CreateProcess_internal, which are
18439         called depending on whether UseShellExecute is true.  Fixes bug
18440         76670.
18441
18442         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18443
18444 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18445
18446         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18447         'msize' parameters, use the information in 'mspec' instead.
18448         (emit_object_to_ptr_conv): Ditto.
18449
18450         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18451         fields out of order. Fixes #76733.
18452
18453 2005-11-17  Ankit Jain  <jankit@novell.com>
18454
18455         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18456
18457 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18458
18459         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18460           bug #76575.
18461
18462 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18463
18464         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18465         for types with non-auto layout. Fixes #76717.
18466
18467 2005-11-16  Ankit Jain  <jankit@novell.com>
18468
18469         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18470         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18471         if generic_context is null.
18472           (mono_metadata_generic_param_equal): param->owner can be null.
18473           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
18474         null.
18475
18476 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18477
18478         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
18479         the correct value.
18480
18481 2005-11-15  Martin Baulig  <martin@ximian.com>
18482
18483         * object.c (set_value): Use mono_class_from_mono_type() instead of
18484         the hack for generic instances; fixes #76136.
18485
18486 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
18487
18488         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
18489         fields.
18490
18491         * image.c (load_metadata_ptrs): Initialize the new fields.
18492
18493         * reflection.c (create_dynamic_mono_image): Ditto.
18494
18495         * reflection.c (build_compressed_metadata): Use the new fields.
18496
18497         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
18498         icall.
18499
18500         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
18501         icall.
18502         
18503 2005-11-15  Ankit Jain  <jankit@novell.com>
18504             Raja R Harinath  <harinath@gmail.com>
18505
18506         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
18507         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18508         new per-generic_container cache if the cached MonoType's context matches
18509         the current context.
18510           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18511         to the expected context.
18512           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18513
18514 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18515
18516         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
18517         we changed the signature of an icall.
18518         * icall.c: Modify to mono_double_ParseImpl return true/false 
18519         depending on the success, instead of throwing the exception. This will
18520         help us in Double.TryParse methods.
18521         
18522 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
18523
18524         * marshal.c (emit_marshal_object): Throw an exception when
18525         marshalling 'object' instead of crashing. Fixes #76696.
18526
18527 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18528
18529         * class-internals.h: Add prototype for mono_type_get_full_name ().
18530
18531 2005-11-11  Dick Porter  <dick@ximian.com>
18532
18533         * threads.c (mono_thread_manage): Make sure the main thread has
18534         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
18535
18536 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18537
18538         * loader.c (mono_loader_set_error_type_load): Log a warning to the
18539         console about the missing type.
18540         (mono_loader_set_error_method_load): Ditto.
18541
18542 2005-11-09  Miguel de Icaza  <miguel@novell.com>
18543
18544         * mono-config.c (mono_get_config_dir): Set the system defaults if
18545         none is specified.
18546
18547         * assembly.c (mono_set_dirs): New API entry point to set the
18548         assembly and the config directory in one call
18549
18550 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
18551
18552         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
18553         the ftnptr was created from a delegate in a domain other than the
18554         current domain. Fixes #75377.
18555
18556         * exception.h exception.c: Add mono_get_exception_not_supported ().
18557
18558 2005-11-08  Martin Baulig  <martin@ximian.com>
18559
18560         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
18561
18562 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
18563
18564         * security-manager.h: Added definitions to deal with strongname key 
18565         pairs bigger (and smaller) than 1024 bits.
18566         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
18567         adjust wrt the public key length being used.
18568
18569 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
18570
18571         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
18572           Windows build (r51396-51397).
18573
18574 2005-11-03  Martin Baulig  <martin@ximian.com>
18575
18576         * class.c (mono_class_setup_vtable_general): Also add generic
18577         methods to the vtable; fixes #76581.
18578
18579 2005-11-01  Miguel de Icaza  <miguel@novell.com>
18580
18581         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
18582         sure that we lookup GetString method from the System.Text.Encoding
18583         class, not the derived class or we get an empty method.
18584
18585         Fixed class #76612.
18586
18587 2005-10-25  Miguel de Icaza  <miguel@novell.com>
18588
18589         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
18590         if it has been previously set (embedders). 
18591
18592         Make mono_set_rootdir available also on Unix.
18593
18594 005-10-24  Robert Jordan  <robertj@gmx.net>
18595
18596         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
18597
18598 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18599
18600         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
18601         only calls which are made to native code use this flag.
18602
18603         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
18604
18605 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18606
18607         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
18608         Add support for FieldBuilders.
18609
18610 2005-10-29  Martin Baulig  <martin@ximian.com>
18611
18612         * mono-debug.c
18613         (mono_debug_using_mono_debugger): New public method; returns
18614         whether we're running inside the debugger.
18615
18616 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
18617
18618         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
18619         for Method/Constructor/FieldBuilders.
18620
18621 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18622
18623         * reflection.c (module_add_cattrs): Save custom attributes for global methods
18624         and fields as well.
18625
18626 2005-10-26  Martin Baulig  <martin@ximian.com>
18627
18628         * mono-debug-debugger.c
18629         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
18630
18631 2005-10-24  Raja R Harinath  <harinath@gmail.com>
18632
18633         * icall.c (base64_to_byte_array): Don't pass an out-of-range
18634         integer to isspace.
18635
18636 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18637
18638         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
18639         when passing valuetypes byref. Fixes #76502.
18640
18641 2005-10-19  Jackson Harper  <jackson@ximian.com>
18642
18643         * profiler.c: Don't put a . in front of types that are not in a
18644         namespace.
18645
18646 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18647
18648         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
18649
18650 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
18651
18652         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
18653         #76436.
18654         (mono_marshal_get_ldflda_wrapper): Fix a warning.
18655
18656 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18657
18658         * assembly.c metadata-internals.h icall.c: Define an additional
18659         parameter for mono_assembly_name_parse_full, so we can avoid creating
18660         S.R.AssemblyName.Version when no version info wasn't passed.
18661         
18662 2005-10-09  Miguel de Icaza  <miguel@novell.com>
18663
18664         * class.c (mono_type_get_full_name): Reimplement method that was
18665         removed. 
18666
18667         * image.c: Some docs
18668
18669 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18670
18671         * profiler.c (output_newobj_profile): Fix printing of Total memory
18672         on x86.
18673
18674 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18675
18676         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
18677
18678 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
18679
18680         * threads.c: remove debug output.
18681
18682 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18683
18684         * threads.c (mono_thread_manage): Fix crashes if more than 64
18685         threads need to be aborted. Hopefully fixes #75899.
18686
18687         * assembly.c (mono_stringify_assembly_name): New helper function.
18688
18689         * class.c: Use mono_stringify_assembly_name instead of the similar
18690         static function.
18691
18692         * assembly.h assembly.c: Add support for calling a postload search 
18693         hook if an assembly cannot be loaded.
18694
18695         * appdomain.c: Register new search hooks which call the AssemblyResolve
18696         events in AppDomain. Fixes #75231
18697
18698 2005-10-07  Martin Baulig  <martin@ximian.com>
18699
18700         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18701         methods without debug info.
18702
18703 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18704
18705         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18706         wrappers.
18707
18708 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18709
18710         * file-io.c: now that we return symlinks, use lstat and, when the file
18711         is a symbolic link, stat, to get the file attributes. Also avoid the
18712         conversion to/from utf16/external.
18713
18714 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18715
18716         * class.c (mono_class_layout_fields): Compute klass->has_references
18717         correctly if an embedded valuetype is not yet initialized. Fixes
18718         #76331.
18719
18720 2005-10-04  Martin Baulig  <martin@ximian.com>
18721
18722         * metadata.c
18723         (mono_metadata_load_generic_param_constraints): New public
18724         function; splitted the constraints loading out from
18725         mono_metadata_load_generic_params().
18726
18727         * class.c (mono_class_create_from_typedef): Call
18728         mono_metadata_load_generic_param_constraints() after setting up
18729         the type and creating our parent; fixes #75329.
18730
18731 2005-10-04  Martin Baulig  <martin@ximian.com>
18732
18733         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18734         non-dynamic parent classes.
18735
18736 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18737
18738         * file-io.c : win32 build fix (ETXTBSY seems not found).
18739
18740 2005-10-04  Martin Baulig  <martin@ximian.com>
18741
18742         * reflection.c
18743         (mono_image_get_methodspec_token): Make the cache actually work;
18744         fixes #75974.
18745
18746 2005-10-04  Martin Baulig  <martin@ximian.com>
18747
18748         * class.c (mono_class_name_from_token): Removed the unneccessary
18749         `MonoGenericContext *' argument.
18750
18751 2005-10-04  Martin Baulig  <martin@ximian.com>
18752
18753         * loader.c
18754         (method_from_methodspec): Make the caching work again; fixes the
18755         performance regression from #76262.
18756
18757 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18758
18759         * file-io.c:
18760         * file-io.h:
18761         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18762         GetFileSystemEntries that performs the same work but without going
18763         into io-layer, locking, etc.
18764
18765 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18766
18767         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18768         ThreadState_Stopped as well. Fixes #76047.
18769
18770 2005-09-29  Martin Baulig  <martin@ximian.com>
18771
18772         * class.c
18773         (inflate_generic_context): If the new context has a `gmethod', set
18774         its `container' that that gmethod's `container'.
18775
18776         * metadata.c
18777         (mono_metadata_parse_generic_param): Simplify things;
18778         `generic_container = generic_context->container;' is just fine.
18779
18780         * loader.c (method_from_methodspec): Code cleanups.
18781
18782 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18783
18784         * decimal.c: fix warning (and let gcc generate correct
18785         code on ARM with optimizations).
18786
18787 2005-09-28  Martin Baulig  <martin@ximian.com>
18788
18789         * loader.c
18790         (method_from_memberref): Added `MonoGenericContext *class_context'
18791         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18792         (method_from_methodspec): If we're a memberref, use the enclosing
18793         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18794
18795 2005-09-28  Martin Baulig  <martin@ximian.com>
18796
18797         * object.c (mono_runtime_invoke_array): Added support for
18798         MONO_TYPE_GENERICINST; fixes #75917.
18799
18800 2005-09-27  Martin Baulig  <martin@ximian.com>
18801
18802         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18803         `k->byval_arg.type' to determine the actual type.
18804
18805         * loader.c (method_from_methodspec): Removed some hacks.
18806
18807 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18808
18809         * class-internals.h (mono_field_is_deleted): Do the test for
18810         rtspecialname before we check the actual name of the field. This
18811         prevents us from dereferencing a pointer into the string table,
18812         saving us from accessing a few pages
18813
18814         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18815         macros. This will allow a deadlock debugger to easily be plugged
18816         in.
18817
18818 2005-09-27  Martin Baulig  <martin@ximian.com>
18819
18820         * loader.c (method_from_methodspec): Create a "signature"
18821         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18822
18823 2005-09-27  Martin Baulig  <martin@ximian.com>
18824
18825         * class.c
18826         (inflate_generic_class): Correctly set the new context's
18827         container.
18828
18829         * loader.c
18830         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18831         instead of a `MonoGenericContext *'.
18832         (mono_method_signature_full): Take a `MonoGenericContainer *'
18833         instead of a `MonoGenericContext *'.
18834
18835         * metadata.c
18836         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18837         instead of a `MonoGenericContext *'.
18838         (mono_metadata_parse_method_signature_full): Likewise.
18839
18840 2005-09-26  Martin Baulig  <martin@ximian.com>
18841
18842         * class.c
18843         (mono_class_from_generic_parameter): Set `klass->generic_container'
18844         (mono_class_from_generic_parameter): Likewise.
18845         (mono_bounded_array_class_get): We inherit the generic container
18846         from the element class.
18847
18848         * loader.c
18849         (find_method, find_method_in_class): Take a `MonoGenericContext *'
18850         argument rather than computing it here.
18851         (method_from_memberref): Correctly set the generic context before
18852         parsing the signature.  Fixes #75681.
18853
18854 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18855
18856         * object.c (mono_class_has_special_static_fields): Fix warnings.
18857
18858 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18859
18860         * assembly.c: Add parse_public_key function, to
18861         par the public keys. Also added mono_assembly_name_parse_full,
18862         to define it the parsed key should be freed or not.
18863         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
18864         to parse a long format assembly name.
18865         * metadata-internals.h: Keep mono_assembly_name_parse_full as
18866         private, since calling it to preserve the key requires
18867         freeing it manually.
18868         
18869 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
18870
18871         * locales.c : removed HAVE_ICU part.
18872
18873 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18874
18875         * object.c (mono_class_create_runtime_vtable): Avoid calling 
18876         field_is_special_static if the klass has no special static fields.
18877
18878         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
18879         (MonoCachedClassInfo): Likewise.
18880
18881         * object.c (mono_class_has_special_static_fields): New helper function.
18882
18883 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18884
18885         * class.c (mono_class_create_from_typedef): Don't call 
18886         interfaces_from_typedef_full for enums.
18887         (mono_class_create_from_typedef): Compute the base types of enums directly
18888         without calling mono_class_setup_fields ().
18889         (mono_class_find_enum_basetype): New helper function.
18890
18891         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18892         one place inside the string heap.
18893         
18894 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18895
18896         * class.c: locking fixes, code cleanups, some docs added.
18897         Allocate some data structures in the image mempool.
18898
18899 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18900
18901         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18902         the example code.
18903         
18904 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18905
18906         * class-internals.h, class.c, reflection.c: reduce memory taken by
18907         MonoClass.
18908
18909 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18910
18911         * metadata.c, metadata.h, loader.h: documentation updates, code and
18912         API cleanups.
18913
18914 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18915
18916         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18917         the example code.
18918
18919         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18920         page faults caused by the runtime while reading metadata.
18921
18922 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18923
18924         * socket-io.c: the field names were changed 3 months ago and no one
18925         realized until bug #76077 got filed!
18926
18927 2005-09-20  Martin Baulig  <martin@ximian.com>
18928
18929         * icall.c (assembly_icalls): Removed some unused debugger icalls.
18930
18931 2005-09-20  Martin Baulig  <martin@ximian.com>
18932
18933         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
18934         write the rank into the class entry.
18935
18936 2005-09-20  Martin Baulig  <martin@ximian.com>
18937
18938         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
18939
18940 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
18941
18942         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18943
18944         * icall.c (custom_attrs_defined_internal): New icall.
18945
18946         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
18947         function.
18948         (mono_custom_attrs_construct_by_type): New helper function.
18949
18950 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
18951
18952         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
18953         terminate the resulting string. Fixes #76123.
18954
18955 2005-09-16  Martin Baulig  <martin@ximian.com>
18956
18957         * mono-debug.c
18958         (mono_debug_add_method): Ignore inflated methods for the moment.
18959
18960 2005-09-14  Martin Baulig  <martin@ximian.com>
18961
18962         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
18963
18964 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
18965
18966         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
18967         return a success/failure indication.
18968         (mono_metadata_interfaces_from_typedef_full): Ditto.
18969         (get_constraints): Ditto.
18970
18971 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18972
18973         * marshal.c (emit_marshal_array): Fix handling of null arrays.
18974         
18975         * marshal.c (emit_marshal_array): Add support for returning string
18976         arrays from delegates. Fixes #76063.
18977
18978         * marshal.c: Use the emit_ldloc/stloc macros where possible.
18979
18980 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18981
18982         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
18983         icall.
18984
18985 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18986
18987         * reflection.c icall.c: Fix after mono_get_exception_type_load
18988         signature change.
18989
18990         * assembly.c (mono_assembly_get_assemblyref): New helper function.
18991         (mono_assembly_load_reference): Use the new helper.
18992
18993         * class-internals.h (MonoLoaderError): New structure containing 
18994         information about type loading errors.
18995
18996         * class-internals.h loader.c: Add APIs to store per-thread loader
18997         error information.
18998
18999         * loader.c class.c: Set the loader error if needed.
19000
19001         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
19002
19003 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
19004
19005         * decimal.c: fixed to handle the broken ARM fp format.
19006
19007 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
19008
19009         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
19010         broken.
19011
19012 2005-09-06  Martin Baulig  <martin@ximian.com>
19013
19014         * domain.c (supported_runtimes): Added v2.0.50727.
19015
19016 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
19017
19018         * culture-info.h: reduce the size of some structures.
19019
19020 2005-09-05  Martin Baulig  <martin@ximian.com>
19021
19022         Reflect latest API changes in the August CTP.
19023
19024         * icall.c
19025         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
19026         ("MonoType.HasGenericArguments"): Removed.
19027         ("MonoMethod.BindGenericParameters"): Renamed to
19028         "MakeGenericMethod".
19029         ("MethodBuilder.BindGenericParameters"): Renamed to
19030         "MakeGenericMethod".    
19031
19032 2005-09-05  Martin Baulig  <martin@ximian.com>
19033
19034         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
19035
19036 2005-09-05  Martin Baulig  <martin@ximian.com>
19037
19038         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19039
19040         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
19041         generic_container is non-NULL.
19042
19043 2005-09-05  Martin Baulig  <martin@ximian.com>
19044
19045         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19046
19047         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19048
19049 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19050
19051         * reflection.c (encode_locals,
19052         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19053         for large generic types.
19054
19055 2005-09-05  Martin Baulig  <martin@ximian.com>
19056
19057         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19058
19059         * class.c (mono_dup_array_type): New public method.
19060         (mono_metadata_signature_deep_dup): New public method.
19061         (dup_type): Correctly duplicate array and function types.
19062
19063 2005-09-05  Martin Baulig  <martin@ximian.com>
19064
19065         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19066
19067         * reflection.c (get_default_param_value_blobs): Handle generic types
19068         and generic methods.
19069
19070 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19071
19072         * class.c: Fixed error reporting (method/class were inversed) for 
19073         inheritance demands.
19074         * security-manager.c|h: Added the AppDomain when calling the managed
19075         System.Security.SecurityManager.InheritanceDemand method.
19076
19077 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19078
19079         * reflection.c (encode_marshal_blob): 'marshaltype' and
19080         'marshaltyperef' are alternate sources for the custom marshaler
19081         name.
19082
19083 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19084
19085         * class.c: fix creation of array classes with rank == 1
19086         (patch by Ankit Jain <jankit@novell.com>).
19087
19088 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19089
19090         * object.c: fix check for creating the bound data for arrays vs
19091         szarrays.
19092
19093 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19094
19095         * object.c: configuration file name is now based on the executable name,
19096         not the image name. Fixes bug #75931.
19097
19098 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19099
19100         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19101         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19102
19103 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19104
19105         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19106
19107 2005-08-24  Ankit Jain  <jankit@novell.com>
19108             Raja R Harinath  <rharinath@novell.com>
19109
19110         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19111           called by it recursively.
19112           (mono_class_init): Remove special case in pending_init handling, since it's
19113           superseded by the fix to mono_class_from_typeref.
19114
19115 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19116
19117         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19118         BROKEN_THREAD_START stuff.
19119
19120 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19121
19122         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19123         trampoline.
19124
19125         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19126         
19127         * object.c (mono_delegate_ctor): Replace the original function address with
19128         a delegate trampoline.
19129
19130 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19131
19132         * icall.c: add boolean argument to base64_to_byte_array and 
19133         InternalFromBase64String to control whether a whitespace-only string
19134         is allowed (or should casue a FormatException to be thrown). We need
19135         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19136         to match the MS behaviour in both profiles.
19137         * appdomain.c: Bump corlib version.
19138
19139 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19140
19141         This patch implements a big portion of publisher policy
19142         support, used to bind assembly versions and redirect
19143         one assembly from version A to version B.
19144
19145         * assembly.c:
19146         New GSList loaded_assembly_bindings, for storing the cached
19147         assembly bindings.
19148         (assembly_binding_maps_name): New static function for checking if a 
19149         assembly binding information maps an assembly name.
19150         (mono_assembly_binding_info_free): New function for freeing
19151         assembly binding information resources.
19152         (get_publisher_policy_info): New static function for retrieving 
19153         assembly binding information from a MonoImage.
19154         (compare_versions): New static function for comparing an assembly
19155         binding information data and the version of an assembly name.
19156         (check_policy_versions): New static function for checking if an
19157         assembly binding info mapping an assembly name is valid for it.
19158         (mono_assembly_load_publisher_policy): New static function for
19159         loading the 'policy.major.minor.MyAssembly' image for an assembly
19160         with an assembly name 'aname'.
19161         (mono_assembly_bind_version): New static function for updating
19162         assembly redirection.
19163         (mono_assembly_apply_binding): New static function for applying
19164         assembly binding.
19165         (search_binding_loaded): New static function for searching 
19166         loaded assembly binding infos in the cache domain.
19167         (mono_assembly_load_full): Don't apply assembly binding for
19168         reflection only assemblies.
19169
19170         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19171         which contains information about assembly binding. Also
19172         declare signature for mono_config_parse_publisher_policy ()
19173         function, used to retrieve pub policy info.
19174         
19175         * mono-config.c:
19176         (publisher_policy_start): New static function used to parse publisher 
19177         policy config files.
19178         (publisher_policy_parser): New static MonoParseHandler containing 
19179         the functions used when parsing config files.
19180         (mono_config_parse_publisher_policy): New function for parsing
19181         publisher policy files.
19182         
19183 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19184
19185         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19186
19187         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19188
19189         * object.c (mono_get_addr_from_ftnptr): New helper function.
19190
19191         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19192
19193         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19194
19195 2005-08-19  Dick Porter  <dick@ximian.com>
19196
19197         * threads.c, threads.h, appdomain.c, appdomain.h,
19198         profiler-private.h, monitor.c, object.c, object-internals.h,
19199         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19200         store the thread ID, so it can hold a 64 bit value if needed.
19201
19202 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19203
19204         * reflection.c (mono_reflection_create_dynamic_method): Store the
19205         handle class into the method references as well so ldtoken works in
19206         dynamic methods.
19207
19208         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19209         types.
19210
19211 2005-08-19  Ankit Jain <jankit@novell.com>
19212
19213         Fix #75847.
19214         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19215           here rather than using the method signature of a arbitrary function
19216           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19217           two arguments.
19218           Hack done with Harinath.
19219
19220 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19221
19222         * threadpool.c: disable printing stack traces when we get a exception
19223         in a threadpool thread. I need to do more testing to figure out which
19224         cases actually print this. Fixes bug #75828.
19225
19226 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19227
19228         * icall.c: there might be ignored whitespace after the last '='. This
19229         fixes length computation and bug #75840.
19230
19231 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19232
19233         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19234         well. Fixes #75809.
19235
19236         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19237         #75784.
19238         
19239         * reflection.c (create_custom_attr_data): Ditto.
19240
19241 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19242
19243         * locales.c, culture-info.h : removed RegionLCIDMap.
19244         * culture-info-tables.h : regenerated.
19245
19246 2005-08-16  Martin Baulig  <martin@ximian.com>
19247
19248         * class.c (mono_type_get_name_recurse): Small fix.
19249
19250 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19251
19252         * locales.c : indentation fixie.
19253
19254 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19255
19256         * object-internals.h,
19257           locales.h,
19258           locales.c,
19259           culture-info.h,
19260           icall.c : added RegionInfo table support.
19261         * culture-info-table.h : regenerated for region support.
19262
19263 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19264
19265         * reflection.c (resolve_object): handle all kinds of MonoMethod
19266         including generic ones
19267
19268 2005-08-12  Ankit Jain <jankit@novell.com>
19269
19270         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19271           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19272
19273 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19274
19275         * process.c: Don't close a thread handle when it's NULL. This is a
19276         workaround for bug #75733.
19277
19278 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19279
19280         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19281
19282 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19283
19284         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19285
19286 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19287
19288         * threadpool.c: if a work item in the thread pool has a callback that
19289         catches a exception, don't propagate it after invoking the callback.
19290         Fixes bug #75336.
19291
19292 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19293
19294         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19295
19296         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19297
19298         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19299
19300         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19301
19302 2005-08-03  Ankit Jain  <jankit@novell.com>
19303
19304         Fix #75683.
19305         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19306           PInvoke calling convention is 0.
19307
19308 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19309
19310         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19311         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19312
19313 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19314
19315         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19316         to handle threads not started by the GC (patch by Michael Meeks
19317         <michael.meeks@novell.com>).
19318
19319 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19320
19321         * reflection.c: Make buffer used in emitting types larger for some
19322         big generic types (patch by Michal Moskal).
19323
19324 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19325
19326         * mono-debug.c: Fix some (not all) alignment problems.
19327
19328 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19329
19330         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19331         Invoke mono_image_load_from_data_full passing the refonly
19332         parameter.
19333
19334         * assembly.c
19335         (mono_assembly_open_from_bundle): Add the refonly argument, 
19336         in order to pass it to other methods it calls to.
19337         (do_mono_assembly_open): Add the refonly argument, in order 
19338         to pass it to other methods it calls to.
19339         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19340         the refonly parameter to it.
19341
19342         * image.c: Add loaded_images_refonly_hash and
19343         loaded_images_refonly_guid_hash to cache the reflection
19344         only loaded images.
19345         (mono_images_init): Initialize the hash tables used for
19346         caching the reflection only images.
19347         (load_modules): Invoke mono_image_open_full passing the refonly
19348         parameter to load the modules the correct way.
19349         (build_guid_table): Add the refonly argument, to re-build the 
19350         correct hash table.
19351         (do_mono_image_open): Added the refonly argument, in order to
19352         define it for the loaded image.
19353         (mono_image_loaded_full): New function, which receives an
19354         additional parameter to look for the image in the refonly or
19355         non-refonly section.
19356         (mono_image_loaded): Updated, using mono_image_loaded_full.
19357         (mono_image_loaded_by_guid_full): The same case that happens
19358         with mono_image_loaded_full.
19359         (mono_image_loaded_by_guid): Likewise.
19360         (register_image): Use the ref_only variable inside MonoImage
19361         to decide in which hash table store the current image.
19362         (mono_image_open_from_data_full): Rename
19363         mono_image_open_from_data to mono_image_open_from_data_full,
19364         adding the refonly argument, to define the ref_only variable 
19365         inside MonoImage.
19366         (mono_image_open_from_data): Return 
19367         mono_image_open_from_data_full.
19368         (mono_image_open_full): Rename mono_image_open to
19369         mono_image_open_full, receiving the new refonly argument,
19370         to pass it to inner methods.
19371         (mono_pe_file_open): Update this function, to open
19372         a MonoImage as a non-refonly image.
19373         (mono_image_close): Use the refonly variable inside
19374         MonoImage to remove the image from the correct caches.
19375
19376         * image.h: Add the signatures of mono_image_open_full,
19377         mono_image_open_from_data_full, mono_image_loaded_full,
19378         mono_image_loaded_by_guid_full.
19379
19380         * metadata-internals.h: Add the ref_only field to 
19381         MonoImage.
19382         
19383 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19384
19385         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19386         Fix the last behavior, which used to load the assemblies and
19387         extract MonoReflectionAssemblyName information, instead of
19388         extract it from the metadata tables. Needed for Reflection
19389         Only assemblies.
19390         
19391 2005-07-29  Martin Baulig  <martin@ximian.com>
19392
19393         * mono-debug-debugger.c
19394         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19395         not initialized.
19396
19397         * mono-debug.c
19398         (mono_debug_address_from_il_offset): Check whether we have
19399         debugging support before attempting to take the lock.
19400         (mono_debug_source_location_from_address): Likewise.
19401         (mono_debug_source_location_from_il_offset): Likewise.
19402         (mono_debug_il_offset_from_address): Likewise.
19403         (mono_debug_address_from_il_offset): Likewise.
19404
19405 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19406
19407         * class.c (mono_class_from_name_case): Add support for dynamic images.
19408         Fixes #75650.
19409
19410         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19411         for #75479.
19412
19413 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19414         
19415         * reflection.c (mono_method_get_object): Fix warning.
19416
19417 2005-07-28  Martin Baulig  <martin@ximian.com>
19418
19419         * mono-debug.c
19420         (mono_debug_add_wrapper): Also write the wrapper type.
19421
19422 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19423
19424         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19425         
19426         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19427         data indicates the class has none.
19428
19429 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19430
19431         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19432         loader lock with the debugger lock. Prevents deadlocks for beagle.
19433
19434         Beagle can now run on an smp box for a weekend without any
19435         issues. Woohoo!
19436
19437 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19438
19439         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19440         in a module. Fixes #75629.
19441
19442 2005-07-26  Martin Baulig  <martin@ximian.com>
19443
19444         * mono-debug.c (mono_debug_add_wrapper): New static method.
19445         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19446         interncall or a wrapper.
19447
19448         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19449         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19450         (MONO_DEBUGGER_VERSION): Bump to 51.
19451
19452         * mono-debug-debugger.c
19453         (mono_debugger_add_type): Removed this empty function.
19454         (mono_debugger_add_method): Likewise.
19455
19456 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19457
19458         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19459         before accessing method->slot.
19460
19461 2005-07-21  Jb Evain  <jbevain@gmail.com>
19462
19463         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19464         Fixes #75010.
19465
19466 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19467
19468         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19469         #75587.
19470
19471 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19472
19473         * image.h image.c: Add mono_image_get_guid () API function.
19474
19475 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
19476
19477         There were issues when multiple threads tried to load
19478         assemblies. A deadlock was created between assemblies_mutex and
19479         mono_domain_assemblies_lock. This fixes the issue by making the
19480         assembly ref counting be lock free. See bug 75586.
19481         
19482         * image.c (mono_image_close): The add ref function here was using
19483         Interlocked operations while the unref was using a mutex and a
19484         --. I don't think this was ever a bug that would be exposed in a
19485         non-pendantic way (ie, by an embedder doing a ref on one thread
19486         and an unref on another), but for the sake of correctness, this is
19487         now Interlocked.
19488
19489         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
19490         (mono_assembly_load_reference): Call mono_assembly_addref rather
19491         than touching the refcount ourselves.
19492         (mono_assembly_close): Use InterlockedDecrement to unref the
19493         assembly. Don't acquire the lock unless it is actually needed.
19494
19495 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19496
19497         * class.c (mono_class_layout_fields): Fix calculation of has_references
19498         for generic types.
19499
19500 2005-07-12  Martin Baulig  <martin@ximian.com>
19501
19502         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19503
19504         * metadata.c
19505         (mono_type_hash): Provide better hashing for generic instances.
19506         (mono_generic_inst_hash): Improve hashing.
19507         (mono_generic_class_hash): Likewise.
19508
19509         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19510         generic instances.
19511
19512 2005-07-12  Martin Baulig  <martin@ximian.com>
19513
19514         * reflection.c (mono_reflection_create_runtime_class): Remove the
19515         hack for generic type definitions and non-`Run' assemblies.
19516         (mono_reflection_bind_generic_parameters): Also use
19517         `klass->wastypebuilder' to check for TypeBuilders.
19518
19519 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19520
19521         * class.c (mono_class_layout_fields): Fix calculation of has_references
19522         for generic types.
19523
19524         * class.c (inflate_generic_class): Fix a leak.
19525         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
19526         for generic types.
19527
19528 2005-07-11  Martin Baulig  <martin@ximian.com>
19529
19530         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
19531         on error.
19532
19533 2005-07-11  Martin Baulig  <martin@ximian.com>
19534
19535         * loader.c (find_method): Also lookup in
19536         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
19537
19538 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19539
19540         * appdomain.c (mono_domain_unload): Don't free the error message
19541         before passing it to mono_get_exception_...
19542
19543         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
19544         
19545 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
19546
19547         * threads.c: try to better guess an available RT signal (bug #75387).
19548
19549 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19550
19551         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
19552         and CACHE_OBJECT.
19553
19554 2005-07-07  Martin Baulig  <martin@ximian.com>
19555
19556         * class.c (mono_type_get_name_full): Return NULL for
19557         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
19558         fixes #75408.
19559
19560 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19561
19562         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
19563         exit the appdomain as well being aborted.
19564
19565         * threadpool.c: Create all threadpool threads inside the root appdomain, and
19566         change back to the root domain after calling managed code. This enables
19567         appdomains using threadpools to be unloaded.
19568
19569 2005-07-07  Martin Baulig  <martin@ximian.com>
19570
19571         * class-internals.h
19572         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
19573         into `MonoDynamicGenericClass' since we only need it for dynamic
19574         types.
19575
19576         * reflection.c (mono_class_bind_generic_parameters): We don't need
19577         to compute the `parent' here.
19578
19579 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
19580
19581         * culture-info-table.h : regenerated.
19582
19583 2005-07-06  Martin Baulig  <martin@ximian.com>
19584
19585         * icall.c
19586         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
19587
19588         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
19589
19590 2005-07-06  Martin Baulig  <martin@ximian.com>
19591
19592         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
19593         we're doing a signature-only comparision; fixes #74945.
19594
19595 2005-07-06  Martin Baulig  <martin@ximian.com>
19596
19597         * class-internals.h (MonoGenericClass): Moved some things out into
19598         a new `MonoInflatedGenericClass' type.  
19599         (MonoInflatedGenericClass): New type; the `klass' of a
19600         `MonoGenericClass' is now computed lazyly in
19601         mono_get_inflated_generic_class().      
19602
19603         * class.c (mono_get_inflated_generic_class): New public function.
19604         (mono_class_inflate_generic_method): Removed the unused
19605         `MonoClass *' argument.
19606         (setup_generic_vtable): Don't call mono_get_inflated_method() on
19607         all the methods.
19608         (mono_class_create_generic): Make this static and merge it with
19609         mono_class_create_generic_2(); we're now called automatically from
19610         mono_get_inflated_generic_class().
19611
19612         * loader.c (mono_method_signature): Call
19613         mono_get_inflated_method() here.
19614
19615 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
19616
19617         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
19618         type of fields with RVA.
19619
19620         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
19621         for this pseudo class.
19622         (my_mono_class_from_generic_parameter): Likewise.
19623         (mono_class_init): Allow interfaces to have cctors.
19624
19625 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19626
19627         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
19628         lazily for AOT methods.
19629
19630 2005-07-05  Martin Baulig  <martin@ximian.com>
19631
19632         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
19633         returns FALSE for a successful match, not TRUE.
19634
19635 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19636
19637         * loader.c (mono_method_get_index): Optimize this a bit.
19638
19639 2005-07-04  Martin Baulig  <martin@ximian.com>
19640
19641         * class.c
19642         (class_compute_field_layout): Move the check for generic type
19643         definitions into mono_class_layout_fields().  Fixes #74684.
19644         (mono_class_from_generic_parameter): Correctly compute
19645         `klass->parent'; fixes #75457.
19646
19647         * reflection.c (register_assembly, register_module): Make sure
19648         `domain->rejobject_hash' is already created.
19649
19650 2005-07-02  Martin Baulig  <martin@ximian.com>
19651
19652         * class-internals.h
19653         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
19654         `MonoDynamicGenericClass'.      
19655
19656 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
19657
19658         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
19659         returned by a field getter is null, since null is a valid value.
19660
19661 2005-07-01  Martin Baulig  <martin@ximian.com>
19662
19663         * reflection.c (mono_reflection_generic_class_initialize): Update
19664         the `dgclass->fields [i].parent' to the correct class.
19665         (mono_image_get_fieldref_token): Use the declaring type, not the
19666         reflected type.
19667
19668 2005-07-01  Martin Baulig  <martin@ximian.com>
19669
19670         * loader.c (find_method): Also look in the interfaces; fixes #75429.
19671
19672 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
19673
19674         * threads.c (thread_cleanup): assert that thread != NULL
19675         (wait_for_tids_or_state_change): We were using the wrong variable
19676         when accessing wait->threads. `i' was always out of the bounds of
19677         the array.
19678
19679 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19680
19681         * loader.c: map user32 and kernel32 to libMonoSupportW
19682
19683 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19684
19685         * appdomain.c (unload_thread_main): Mark this as WINAPI.
19686
19687 2005-06-28  Martin Baulig  <martin@ximian.com>
19688
19689         * loader.c (method_from_methodspec): Fix #75334.
19690
19691 2005-06-28  Martin Baulig  <martin@ximian.com>
19692
19693         Fix #74953 - Arrays now implement the generic IList<T> interface
19694         on the 2.0 platform.
19695
19696         * class-internals.h (MonoDefaults): Added `generic_array_class'.
19697
19698         * reflection.c (mono_class_bind_generic_parameters): New public
19699         function; similar to mono_reflection_bind_generic_parameters(),
19700         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19701
19702         * domain.c (mono_init_internal): Try to initialize.
19703         `mono_defaults.generic_array_class' here; this'll only succeed if
19704         we're using the 2.0 corlib.
19705
19706         * icall.c
19707         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19708         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19709         (mono_lookup_internal_call): Added support for nested classes.
19710
19711         * loader.c
19712         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19713         we're an interncall and have generic arguments.
19714
19715         * class.c
19716         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19717         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19718         instance of System.Array.InternalArray<T> for arrays, so they
19719         implement the generic IList<T> interface.
19720
19721 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19722
19723         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19724         (chastamar@yahoo.com). Fixes #75374.    
19725
19726 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19727
19728         * culture-info-table.h: regenerated.
19729
19730 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19731
19732         * icall.c: handle spaces correctly for base64 strings.
19733
19734 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19735
19736         * *.c: Kill some warnings.
19737
19738 2005-06-23  Duncan Mak  <duncan@novell.com>
19739
19740         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19741         that this builds on Solaris 10 (x86).
19742
19743 2005-06-23  Martin Baulig  <martin@ximian.com>
19744
19745         * class.c
19746         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19747         generic type definitions.
19748
19749 2005-06-23  Martin Baulig  <martin@ximian.com>
19750
19751         Fix #75331.
19752
19753         * metadata.c (mono_class_get_overrides): Renamed to
19754         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19755         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19756         pass it to mono_get_method_full().
19757
19758 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19759
19760         * reflection.c (mono_reflection_create_runtime_class): take the
19761         mono_domain_lock in this method. Prevents deadlocks
19762
19763 2005-06-22  Martin Baulig  <martin@ximian.com>
19764
19765         * loader.c (method_from_methodspec): Fix #75330.
19766
19767 2005-06-22  Martin Baulig  <martin@ximian.com>
19768
19769         * reflection.c (type_get_qualified_name): Use
19770         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19771         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19772         argument; use it if we don't have an assembly name.
19773
19774 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19775
19776         * object.c: In mono_message_init, set "copy out" flag for in
19777         parameters with the [Out] flag.
19778
19779 2005-06-21  Martin Baulig  <martin@ximian.com>
19780
19781         * class.c
19782         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19783         and MONO_TYPE_PTR.
19784
19785 2005-06-21  Martin Baulig  <martin@ximian.com>
19786
19787         * class.c (mono_class_init): Don't initialize `class->fields' for
19788         generic instances since they're initialized again in
19789         compute_field_layout(). 
19790         (compute_field_layout): Set the field's `generic_info' here; fix
19791         #75320. 
19792
19793 2005-06-21  Martin Baulig  <martin@ximian.com>
19794
19795         * class-internals.h
19796         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19797
19798         * metadata.c (mono_metadata_generic_method_equal): Also
19799         distinguish the `generic_class'; fixes #75334.
19800
19801 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19802
19803         * domain.c:
19804         * appdomain.c:
19805         * domain-internals.h:
19806         * reflection.c: 'domain_assemblies' field is now protected by its own
19807         lock. Don't call into managed code to run the AssemblyLoad event if we
19808         now there are no registered delegates for it.
19809
19810 2005-06-20  Martin Baulig  <martin@ximian.com>
19811
19812         * class.c (mono_class_is_assignable_from): Use a custom version of
19813         mono_class_has_parent() to make things work for generic instances;
19814         fix #75300.
19815
19816 2005-06-20  Martin Baulig  <martin@ximian.com>
19817
19818         * loader.c (method_from_methodspec): Apply a patch from
19819         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19820
19821 2005-06-20  Martin Baulig  <martin@ximian.com>
19822
19823         * class.c (mono_class_init): Reverted Zoltan's last change; it
19824         breaks generics.
19825
19826 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19827
19828         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19829
19830 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19831
19832         * socket-io.c: fix the index in the socket array for writable/error
19833         sockets. Fixes bug #75306.
19834
19835 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19836
19837         * class.c (mono_class_init): Allow interfaces to have static ctors.
19838
19839 2005-06-17  Martin Baulig  <martin@ximian.com>
19840
19841         * loader.c (method_from_methodspec): Use `context->container' when
19842         parsing the `gmethod->inst'.
19843
19844 2005-06-17  Martin Baulig  <martin@ximian.com>
19845
19846         * class.c (mono_type_get_name_recurse): Don't add the assembly
19847         name for type arguments.
19848
19849 2005-06-15  Martin Baulig  <martin@ximian.com>
19850
19851         * reflection.c (mono_image_get_inflated_method_token): Encode
19852         correct klass; fixes #75260.
19853
19854 2005-06-13 Michal Moskal <malekith@nemerle.org>
19855
19856         * icall.c: Make GetCorrespondingMethod/Constructor take
19857         MonoReflectionMethod method not MonoMethod. Removed
19858         MonoType.GetCorrespondingField, and make
19859         MonoGenericType.GetCorrespondingField take name not
19860         MonoClassField.
19861
19862 2005-06-13  Michal Moskal <malekith@nemerle.org>
19863
19864         * reflection.c (field_encode_signature, encode_locals):
19865          Make sizes of buffers for types larger (for big generic types).
19866          (create_generic_typespec,
19867          mono_reflection_sighelper_get_signature_local,
19868          mono_reflection_sighelper_get_signature_field):
19869          Add asserts for too small buffers.
19870
19871 2005-06-15  Martin Baulig  <martin@ximian.com>
19872
19873         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
19874         if our parent is not a dynamic type.
19875
19876 2005-06-15  Martin Baulig  <martin@ximian.com>
19877
19878         * class-internals.h (MonoTypeNameFormat): New enum.
19879
19880         * class.c
19881         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
19882         (mono_type_get_full_name): Removed.
19883         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
19884         argument instead of the boolean's.
19885
19886         * icall.c (ves_icall_System_MonoType_getFullName):
19887         Added `gboolean assembly_qualified'.    
19888
19889         * reflection.h
19890         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19891
19892         * reflection.c (mono_reflection_parse_type): Parse the new type
19893         name format.
19894
19895 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19896
19897         * icall.c: no need to convert from utf16 to utf8 and then back again
19898         after the call to GetLogicalDrives.
19899
19900 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19901
19902         * icall.c: frombase64. Fix problems exposed by new tests.
19903
19904 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19905
19906         * icall.c: added internal calls for converting char [] and strings in
19907         base64 into byte [].
19908
19909 2005-06-10  Martin Baulig  <martin@ximian.com>
19910
19911         * class.c (mono_class_create_generic_2): Read the nested classes
19912         from the metadata rather than from `gklass->nested_classes' since
19913         `gklass' might not be initialized yet.
19914
19915 2005-06-09  Duncan Mak  <duncan@novell.com>
19916
19917         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19918         all public headers. Fixes #74919.
19919
19920 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19921
19922         * domain.c: The key for proxy_vtable_hash is now a pointer
19923         array. Added new GHashFunc and GCompareFunc functions for this.
19924
19925         * class.h: The list of interfaces in MonoRemoteClass is known in
19926         advance and can't grow (we create a new MonoRemoteClass if needed),
19927         so now the interface array can be allocated together with
19928         MonoRemoteClass.
19929         
19930         * object.c: Added a new method create_remote_class_key.
19931         Fixed mono_remote_class so it does not depend on
19932         mono_upgrade_remote_class.
19933         Removed extend_interface_array.
19934         Added new method clone_remote_class(), which makes a copy of a remote
19935         class and adds a new interface or class to it.
19936         mono_upgrade_remote_class() now creates a new remote class (or gets
19937         it from the cache) if an vtable upgrade is needed. In this way
19938         we make sure that other objects sharing the same remote class
19939         don't get the new vtable with unwanted interfaces.
19940         
19941         * object-internals.h:
19942         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
19943         
19944         * marshal.c: Track changes in mono_upgrade_remote_class().
19945
19946 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
19947         * icall.c: Add runtime methods for obtaining members of inflated
19948         class, which were created from supplied non-inflated members. It
19949         is used in internal Get{Method,Constructor,Field} methods in
19950         System.Type
19951
19952 2005-06-09  Martin Baulig  <martin@ximian.com>
19953
19954         * reflection.c
19955         (mono_reflection_bind_generic_method_parameters): Fix #75169.
19956
19957 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19958         * reflection.c (mono_image_basic_init): Define
19959         Version in MonoDynamicAssembly. 
19960         
19961 2005-06-08  Martin Baulig  <martin@ximian.com>
19962
19963         Fix #75136.
19964
19965         * loader.c
19966         (mono_method_signature_full): New public method; takes a
19967         `MonoGenericContext *'.
19968         (find_method): Use mono_method_signature_full() and pass the
19969         klass'es context to it.
19970
19971         * class.c (mono_class_is_inflated_method): Use
19972         mono_method_signature_full() and pass the context to it.
19973
19974 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
19975
19976         * object.c: add proper locking in mono_remote_class_vtable(),
19977         fixes possible memory corruption.
19978
19979 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
19980
19981         * marshal.c (mono_remoting_marshal_init): set
19982         initialized after initialization.
19983
19984 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19985
19986         * locales.c : hush.
19987
19988 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
19989
19990         * object.c (extend_interface_array): fix really silly
19991         memory corrupting / comparison bug.
19992
19993 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19994
19995         * reflection.c: Functions added to support the creation
19996         of CustomAttributeData, which includes Attribute data
19997         used by ReflectionOnly methods.
19998
19999         * reflection.h:  mono_reflection_get_custom_attrs_data and
20000          mono_custom_attrs_data_construct added (functions exposed).
20001
20002          * icall.c: Added mono_reflection_get_custom_attrs_data
20003          as icall.
20004         
20005 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
20006
20007         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
20008         lupus's request.
20009
20010 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
20011
20012         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
20013
20014         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
20015         dynamic DllImportAttribute.
20016
20017         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
20018         dynamic DllImportAttribute.
20019
20020         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
20021         Fixes #75162.
20022
20023 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20024
20025         * threads.c: avoid segfault when an unstarted thread is aborted.
20026
20027 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
20028
20029         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
20030         Returns the name and version of the runtime for reporting.
20031
20032 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20033
20034         * appdomain.c: bump corlib version.
20035         * object-internals.h: new field in MonoReflectionAssembly.
20036
20037 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20038
20039         * object-internals.h: Carlos forgot to add this field.
20040
20041 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20042
20043         * icall.c: Added create_version to create instances
20044         of Version of MonoReflectionAssemblyName. This change helps
20045         the AssemblyName tests to keep running fine.
20046         
20047 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20048   
20049         * object.c (mono_method_return_message_restore): A somehow less
20050         intrusive fix for #75138.
20051
20052 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20053
20054         * object.c (mono_method_return_message_restore): Fix computation
20055         of expected number of out args.
20056
20057 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20058
20059         * reflection.c (mono_image_get_method_info): Fix the case when the
20060         charset is empty.
20061
20062 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20063
20064         * object.c: Added missing null check in
20065           mono_method_return_message_restore.
20066
20067 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20068
20069         * reflection.c (mono_image_get_method_info): Handle the case when
20070         dllentry is empty.
20071
20072 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20073
20074         * object.c: When creating the vtable for a proxy, take into account
20075         all inherited interfaces, not only the ones registered in
20076         iclass->interfaces. This fixs bug #74996.
20077         Also, in mono_method_return_message_restore, verify that the array
20078         of out args has the expected lengh.
20079
20080 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20081
20082         * socket-io.c: update the timeout in Poll when the call is interrupte.
20083
20084 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20085
20086         * socket-io.c: support abort/suspend in Select_internal after last
20087         change.
20088
20089 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20090
20091         * threadpool.c: remove warning.
20092
20093 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20094
20095         * icall.c:
20096         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20097         removing the 1024 limit from select(). Runtime part of the fix for
20098         bug #71203.
20099
20100 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20101
20102         * socket-io.c: when resolving the addresses for the same
20103         host returned by gethostname(), get the local IPs from the interface
20104         list. Loopback addresses are discarded if the are interfaces up with
20105         non-loopback ones. Fixes bug #63265.
20106
20107 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20108
20109         * appdomain.c, verify.c, object-internals.h, reflection.c:
20110         bumped corlib number to 36, and added new extra_flags field
20111         to ReflectionMethodBuilder and friends.  Fixes #75060.
20112
20113 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20114
20115         * gc.c: register a new weak link only if the object is non-null
20116         (fixes bug#75047).
20117
20118 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20119
20120         * culture-info.h : short time pattern too.
20121
20122 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20123
20124         * culture-info.h : expand long time pattern string length.
20125
20126 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20127
20128         * culture-info-table.h : update (more French date format; #72788).
20129
20130 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20131
20132         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20133         the method is static. Fixes #75029.
20134
20135 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20136
20137         * reflection.c: Update the table_idx field of method builders after
20138         saving the module, since it can change. This is a workaround for
20139         bug #74914. 
20140
20141 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20142
20143         * culture-info-table.h : update (additional French date format).
20144
20145 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20146
20147         * icall.c (ves_icall_type_Equals): Revert last change.
20148         
20149         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20150
20151         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20152
20153 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20154
20155         * class-internals.h: Added executioncontext_class field to 
20156         MonoDefaults structure.
20157         * domain.c: Cache System.Threading.ExecutionContext class in 
20158         mono_defaults.
20159         * object.c: Capture the ExecutionContext for asynchroneous calls in
20160          mono_async_result_new.
20161         * object-internals.h: Added execution_context and original_context 
20162         fields to MonoAsyncResult. Added execution_context to MonoThread.
20163         * security-manager.c|.h: Added mono_get_context_capture_method to 
20164         return the capture method (if required by the security manager or by
20165         the framework version used).
20166         * threadpool.c: Apply capture (if present) ExecutionContext in 
20167         mono_async_invoke and revert to original context after it completes.
20168
20169 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20170
20171         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20172
20173 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20174
20175         * culture-info-table.h : zh-CHT related workaround.
20176
20177 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20178
20179         * marshal.c (emit_marshal_custom): Add some error checking and call the
20180         methods in the ICustomMarshaler interface. Fixes #74875.
20181         
20182         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20183         native->managed wrappers.
20184
20185 2005-05-12  Martin Baulig  <martin@ximian.com>
20186
20187         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20188         here and use the loader lock.
20189
20190         * mono-debug.c: Properly lock when the debugger is not attached.
20191         (mono_debug_init): Release the initial lock if we're not running
20192         in the debugger.
20193
20194 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20195
20196         * marshal.c (emit_marshal_custom): Pass through NULL values without
20197         calling the custom marshalling routines.
20198
20199         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20200         conversion in structures. Fixes #74882.
20201
20202 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20203
20204         * culture-info-table.h : zh-* cultures were missing.
20205
20206 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20207
20208         * threads.c: Added a new event background_change_event which is signaled
20209         when a thread changes its background mode.
20210         Moved here several checks previously done in managed code. The checks
20211         require the thread lock, and using the thread lock in managed code
20212         can result in deadlocks.
20213         Merged Start_internal and Thread_internal into a single method. Now 
20214         Thread_internal does all work of creating and starting a thread.
20215         Added icalls for setting and getting the state of the object. Moved from
20216         managed code to avoid locking there.
20217         Added wait_for_tids_or_state_change() which is called instad of
20218         wait_for_tids when waiting for non-backround threads to end. This method
20219         will return if one of the threads ends or the background_change_event
20220         is signaled.
20221         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20222         the background mode. This method signals the background_change_event
20223         event.
20224         * icall.c:
20225         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20226         removed Start_internal.
20227         
20228 2005-05-11  Martin Baulig  <martin@ximian.com>
20229
20230         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20231         to order of some fields to get proper alignment on 64-bit machines.
20232
20233 2005-05-11  Martin Baulig  <martin@ximian.com>
20234
20235         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20236         changes as they're broken and completely fuck up the debugger.
20237
20238         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20239
20240 2005-05-10  Martin Baulig  <martin@ximian.com>
20241
20242         * reflection.c (mono_reflection_generic_class_initialize): Don't
20243         call mono_class_setup_parent() here.
20244
20245 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20246
20247         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20248         send/receive timeout use an integer in milliseconds. We were using a
20249         struct timeval.
20250
20251 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20252
20253         * locales.c:
20254         (internal_get_cultures): reserve the first slot of the array for the
20255         InvariantCulture, which will be filled in managed code.
20256
20257 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20258
20259         * reflection.c (mono_image_fill_module_table): Initialize the
20260         GENERATION field as well.
20261
20262 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20263
20264         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20265         Monitor.Enter on the object.
20266
20267 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20268
20269         * threads.c: Enable the wait for running threads when exiting.
20270         * icall.c: Suspend all threads before exiting.
20271
20272 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20273
20274         * assembly.c (mono_assembly_load_reference): Fix warning.
20275
20276 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20277
20278         * threadpool.c: changed the default number of threads per cpu. From now
20279         on, the default will be 20 + (5 * number of cpus) instead of 50.
20280
20281 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20282
20283         * loader.c (mono_method_get_signature_full): Add locking here.
20284
20285 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20286
20287         * appdomain.c: Moved methods for parsing and freeing assembly
20288         names to assembly.c.
20289         * assembly.c, domain-internals.h: Created public methods for parsing
20290         assembly names. Fixed mono_assembly_load_with_partial_name:
20291         it now finds the best match, taking into account the version,
20292         token and culture specified in the partial name. Also return
20293         the latest version if no version information is specified.
20294
20295 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20296
20297         * threadpool.c: replace check for SocketAsyncCall class.
20298
20299 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20300
20301         * threadpool-internals.h:
20302         * Makefile.am: added threadpool-internals.h
20303
20304         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20305         that happen in threadpool threads (tested on MS).
20306         (mono_thread_pool_remove_socket): new function that dispatch any pending
20307         AIO call on a socket that is closing. By now only epoll really needs it,
20308         as select/poll wake up when the socket closes.
20309
20310
20311         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20312
20313 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20314
20315         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20316
20317 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20318
20319         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20320
20321 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20322
20323         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20324         has an abort request, convert it into a suspend request.
20325
20326 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20327
20328         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20329         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20330         is not supported yet.
20331
20332 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20333
20334         * image.c: register assemblies loaded from data (bundles) in the loaded
20335         assemblies hash. Fixes bug #74772.
20336
20337 2005-04-29  Martin Baulig  <martin@ximian.com>
20338
20339         * class.c (mono_type_get_name_recurse): Update to the new naming
20340         schema from the latest .NET 2.x beta2.
20341         (mono_class_setup_vtable_general): If we're a generic instance,
20342         copy the vtable from our generic type definition and inflate all
20343         the methods in it.
20344
20345         * loader.c (find_method): Update to the new naming schema from the
20346         latest .NET 2.x beta2.
20347
20348 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20349
20350         * class.c (mono_class_init): Add a mono_loader_unlock to the
20351         #74734 fix.
20352
20353 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20354
20355         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20356         suspend_all_other_threads () call for the time being, since it can hang.
20357
20358         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20359         the background threads to exit, since it can also hang.
20360
20361         * class.c (mono_class_init): Applied patch from Ankit Jain 
20362         (radical@gmail.com). Avoid pending init errors when a field refers
20363         to a nested class using a typeref. Fixes #74734.
20364
20365         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20366         this for dynamic modules.
20367
20368 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20369
20370         * threads.c: don't wait for threads that are in the process of aborting
20371         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20372         and waiting for background threads to finish. This makes xsp and
20373         mod-mono-server exit without random length delays and/or hangs.
20374
20375 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20376
20377         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20378
20379 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20380
20381         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20382         dynamic types to prevent infinite loops. Fixes #74727.
20383
20384         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20385         ..._is_assignable_to.
20386
20387 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20388
20389         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20390
20391 2005-04-25  Martin Baulig  <martin@ximian.com>
20392
20393         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20394
20395         * domain.c
20396         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20397
20398         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20399
20400         * reflection.c (build_compressed_metadata): Set metadata header
20401         version to 2.0.
20402
20403 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20404
20405         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20406         number into an integral and a decimal part. Fixes #70473.
20407
20408         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20409
20410 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20411
20412         * culture-info-table.h : reflected the latest locale-builder output.
20413
20414 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20415
20416         * threadpool.c: check for SuspendRequested too when deciding if
20417         mono_thread_interruption_checkpoint should be called.
20418
20419 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20420
20421         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20422         * threads.c: remove interruption_mutex and use Interlocked instead. When
20423         suspending all the threads, wait for all the suspended events at once.
20424         If we're shutting down and get an APC that is going to be queued,
20425         call mono_thread_execute_interruption immediately, as the thread might
20426         be sleeping on a pthread condition or mutex.
20427
20428         * icall.c: call mono_runtime_set_shutting_down before suspending the
20429         threads.
20430
20431         Fixes bug #74693. And now xsp is happier when exiting.
20432
20433 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20434
20435         * loader.c (mono_stack_walk): Fix #74690.
20436
20437 2005-04-22  Martin Baulig  <martin@ximian.com>
20438
20439         * mono-debug.h (MonoDebugMethodJitInfo): Added
20440         `MonoDebugMethodJitInfo *jit'.
20441
20442         * mono-debug.c (mono_debug_read_method): Cache the
20443         MonoDebugMethodJitInfo in `address->jit'.
20444         (mono_debug_free_method_jit_info): New public method.
20445
20446 2005-04-22  Martin Baulig  <martin@ximian.com>
20447
20448         * class.c (mono_class_is_assignable_from): Disallow
20449         type parameter -> interface.
20450
20451 2005-04-21  Dick Porter  <dick@ximian.com>
20452
20453         * threads.c (mono_thread_create): Turn an assertion into an error.
20454
20455 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20456
20457         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20458         
20459         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20460         Fix some gcc 4.0 warnings.
20461
20462 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20463
20464         * file-io.c: fix alt dir separator char on unix systems
20465         and cleanup (fixes bug #71214).
20466
20467 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20468
20469         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20470         a call to a remote domain, since the method may be an
20471         interface method in the client domain. This fixes bug #74192.
20472
20473 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20474
20475         * threadpool.c: recv/send are now performed before going back to managed
20476         code to save one transition.
20477
20478 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20479
20480         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
20481
20482         * metadata/threadpool.c: removed hack to workaround the bug above.
20483
20484         Fixes bug #74618.
20485
20486 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
20487
20488         * reflection.c reflection.h: Fix handling of parameter defaults in
20489         dynamic methods. Also fixes handling of parameter attributes.
20490         Fixes #74609.
20491
20492         * mono-debug.c (mono_debug_close_image): Fix warning.
20493
20494 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20495
20496         * socket-io.h: replaced old unused field with new 'blocking'.
20497         * threadpool.c: restore socket blocking state on windows(tm).
20498
20499 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
20500
20501         * icall.c: don't return the codebase in the AssemblyName[] returned by
20502         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
20503         * object-internals.h: Removed FIXME (fields were presents) and fixed
20504         versioncompat declaration.
20505
20506 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20507
20508         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20509         not closed, so don't cleanup when it happens.
20510
20511 2005-04-13  Chris Toshok  <toshok@ximian.com>
20512
20513         * mono-debug-debugger.h: change prototype for
20514         mono_debugger_lookup_type.
20515
20516         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
20517         this function, although it should probably be named
20518         mono_debugger_init_type.
20519
20520 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20521
20522         * threadpool.c: fix non-AIO case.
20523
20524 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20525
20526         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
20527         the built-in profiler to measure just JIT compilation times.
20528
20529 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20530
20531         * threadpool.c: the epollfd might be closed by another thread at
20532         any time, so ignore EBADF at treat it as a "we're closing" sign.
20533
20534 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20535
20536         * threadpool.c: release the semaphores with a count equals to the number
20537         of working threads in both IO and regular pools. Fixed typo that messed
20538         up the count of IO pool threads. Don't initialize the pipe handles if
20539         we're using epoll.
20540
20541 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20542
20543         * threadpool.c: some systems don't like a NULL when deleting the socket
20544         from epoll.
20545
20546 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20547
20548         * threadpool.c: fix semaphore allocation.
20549
20550 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20551
20552         * threadpool.c: added epoll() based implementation for asynchronous IO
20553         that is used instead of the default poll() when available.
20554         It can be disabled by setting MONO_DISABLE_AIO.
20555
20556 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20557
20558         * threadpool.c: windows needs 'closesocket' and instead of returning
20559         0 when the stream is closed while in select, it returns -1. Fixes bug
20560         #74573.
20561
20562 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
20563
20564         * class.c (class_compute_field_layout): Fix the regression caused by
20565         the previous try.
20566
20567 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20568
20569         * threadpool.c: separate pool for socket async. IO.
20570         * threadpool.h: mono_max_worker_threads is not a global any more.
20571
20572 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
20573
20574         * class.c (class_compute_field_layout): Fix #74549.
20575
20576 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20577
20578         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
20579         use 2 connected sockets instead.
20580
20581 2005-04-08  Miguel de Icaza  <miguel@novell.com>
20582
20583         * mono-config.c: Add new entry point for mkbundle
20584         mono_config_parse_memory. 
20585
20586 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20587
20588         * threadpool.c: removed another unused function.
20589
20590 2005-04-08  Ankit Jain  <radical@corewars.org>
20591
20592         * reflection.c (get_default_param_value_blobs): Add 'types'
20593         parameter to get the types encoded in the constant table.
20594         (mono_param_get_objects): Use the type from the constant table,
20595         not the type of the parameter, when creating default values.
20596         Handle null default values correctly.
20597
20598 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20599
20600         * file-io.c:
20601         * file-io.h:
20602         * threadpool.c:
20603         * threadpool.h:
20604         * icall.c:
20605         * socket-io.c: removed dead code for async IO.
20606
20607 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20608
20609         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
20610
20611         * threadpool.c: intercept socket async. calls and pass them to a thread
20612         that is polling and dispatching the job items to the threadpool as
20613         socket become ready. Fixes bugs #71217, #71933.
20614
20615         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
20616         between char and short/ushort arrays.
20617
20618         * socket-io.c: remove dead code.
20619
20620 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20621
20622         * locales.c,
20623           icall.c : removed InternalToUpper_Comp() and
20624           InternalToLower_Comp().
20625
20626 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20627
20628         * char-conversions.h : The tables were incorrectly generated. Should
20629           be generated against invariant culture.
20630
20631 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
20632
20633         * object.c (mono_runtime_invoke_array): Fix return value when 
20634         passing pre-created valuetype objects to ctors.
20635
20636         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
20637         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
20638         Fixes #74338.
20639
20640 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
20641
20642         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
20643         only used with --security and hides the wrong corlib version error.
20644
20645 2005-03-30  Joshua Tauberer  <tauberer@for.net>
20646
20647         * class.c: Changed mono_class_name_from_token so that types
20648         outside of a namespace don't have an initial period.  Improved
20649         the g_warning message used in _mono_class_get when loading
20650         fails.
20651         * assembly.c: In mono_assembly_load_reference, when an assembly
20652         can't be found, "No such file or directory" is misleading and
20653         unhelpful because a few paths were checked for the presence of
20654         the assembly.  When that happens (ENOENT), display a nicer
20655         message indicating the directories that were searched.  In all
20656         cases, the warning is made easier to read for non-hackers.
20657
20658 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20659
20660         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
20661         project/solution.
20662         * appdomain.h|domain.c: Removed inline from functions.
20663         * appdomain.c: Reduced warnings when compiling on windows.
20664         * icall.c: Fixed output_debug declaration to gunichar2*.
20665         * mono-config.c: Reduced warnings when compiling on windows.
20666         * rand.c: Added missing "windows.h". Added missing return value.
20667         * rawbuffer.c: Added missing winsock2.h for windows.
20668         * sysmath.h: Added mono-compiler.h header to allow/ease 
20669         compilation with non-GCC compilers.
20670         * threads.c: Fixed declarations to compile with VS.NET C compiler.
20671         Removed cast warnings.
20672
20673         Adapted from the work of J Lothian (for VC6).
20674
20675 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20676
20677         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
20678         from default_path.
20679
20680 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20681
20682         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
20683         the 2.0 profile.
20684
20685 2005-03-27  Raja R Harinath  <harinath@gmail.com>
20686
20687         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
20688         has to be in $(exec_prefix).  $(prefix) is for arch-independent
20689         stuff, and it would probably use $(prefix)/share rather than
20690         $(prefix)/lib.
20691
20692 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20693
20694         * console-io.c: added 2 includes that might be missing.
20695
20696 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20697
20698         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
20699         profile.
20700
20701         * reflection.c (create_custom_attr): Allocate the params array using
20702         alloca so it gets GC tracking.
20703
20704 2005-03-23  Chris Toshok  <toshok@ximian.com>
20705
20706         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20707         out some spew.
20708
20709 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20710
20711         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20712         changes to pick up any changes in prefix, etc.
20713
20714 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20715
20716         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20717         
20718         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20719         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20720
20721 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20722
20723         * class-internals.h object-internals.h class.c reflection.c: Extend the
20724         mono_lookup_dynamic_token () function to return the class of the
20725         token as well. 
20726
20727         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20728         well. Fixes #73848.
20729
20730 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20731
20732         * security-manager.c: Skip inheritance checks for intra-corlib
20733         class inheritance and method overrides. This skips a lot of checks
20734         and (anyway) permissions cannot work until corlib is loaded.
20735
20736 2005-03-23  Martin Baulig  <martin@ximian.com>
20737
20738         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20739         MONO_TYPE_GENERICINST.  
20740
20741 2005-03-23  Martin Baulig  <martin@ximian.com>
20742
20743         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20744
20745 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20746
20747         * class.c: added locking comments to some functions.
20748         Cache the interface offsets arrays (saves about 20 KB
20749         of runtime memory in a typical app).
20750         Reduce the time overhead in mono_class_setup_supertypes ().
20751
20752 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20753
20754         * icall.c: speedup and fix leaks in GetMethodsByName and
20755         GetPropertiesByName.
20756
20757 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20758
20759         * reflection.c: some locking fixes.
20760
20761 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20762
20763         * metadata.c: added missing break in case statement.
20764
20765 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20766
20767         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20768         typedbyref return values. Fixes #73941.
20769
20770 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20771
20772         * security-manager.c|h: Added demandunmanaged method and 
20773         suppressunmanagedcodesecurity class to MonoSecurityManager.
20774         Renamed aptc class to allowpartiallytrustedcallers.
20775
20776 2005-03-17  Martin Baulig  <martin@ximian.com>
20777
20778         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20779
20780 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20781
20782         * file-io.c: disabled file async. IO using aio_*. It uses the
20783         threadpool now. Workaround for bug #73718.
20784
20785 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20786
20787         * assembly.h, mono-config.c: added code to deal with bundled configs
20788         for bundled assemblies.
20789
20790 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20791
20792         * *.c, private.h: cleanup, removing old private.h header file.
20793
20794 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20795
20796         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20797         and throw_on_unmappable_char attributes.
20798
20799 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20800
20801         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20802         _ProcessName_internal.
20803
20804 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20805
20806         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20807         #73631.
20808
20809         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20810         are no longer used.
20811
20812 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20813
20814         * object.c (compute_class_bitmap): Add support for generics. Fixes
20815         #73527.
20816
20817 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20818
20819         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20820
20821 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20822
20823         * filewatcher.c: commented out the code for windows watcher, as we don't
20824         use it (we use the managed implementation instead).
20825
20826 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20827
20828         * object-internals.h (MonoThread): Remove 'unused1' field.
20829
20830         * appdomain.c: Bump corlib version.
20831
20832         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20833
20834         * reflection.c (mono_reflection_create_runtime_class): Remove the
20835         AssemblyBuilder.Save optimization since it causes too many problems.
20836
20837 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20838
20839         * exception.c|h: Added mono_get_exception_reflection_type_load to
20840         create a ReflectionTypeLoadException object.
20841         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20842         to return NULL is a InheritanceDemand fails during reflection. Updated
20843         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20844         ReflectionTypeLoadException if an InheritanceDemand fails during 
20845         reflection. Added icall mapping for GetLinkDemandSecurity.
20846         * security-manager.c|h: Added ves_icall_System_Security_
20847         SecurityManager_GetLinkDemandSecurity internal call to return the
20848         class and methods permissions set for a LinkDemand. Removed unused
20849         fields in MonoSecurityManager.
20850
20851 2005-03-10  Martin Baulig  <martin@ximian.com>
20852
20853         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
20854         it's a generic instance.
20855
20856 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
20857
20858         * reflection.c (mono_get_object_from_blob): Applied patch from
20859         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
20860
20861         * class.c (mono_class_is_assignable_from): Another try at fixing 
20862         #73469 without breaking anything.
20863
20864 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20865
20866         * class.c: (mono_class_is_assignable_from): Revert the last changes
20867         since they don't work with generics.
20868         
20869         * class.c (mono_class_is_assignable_from): Fix build bustage.
20870
20871         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
20872         the managed IsAssignableFrom method. Fixes #73469.
20873
20874         * reflection.c (mono_reflection_call_is_assignable_from): New helper
20875         function.
20876
20877 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20878
20879         * object.c (mono_load_remote_field_new): Fix returning uninitialized
20880         memory when the remoting callback does not sets the out arguments.
20881         Fixes #73007.
20882
20883         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
20884         by mistake.
20885
20886         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20887
20888         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20889
20890         * appdomain.c: Bump corlib version.
20891
20892 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20893
20894         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20895         function.
20896
20897         * threads.c (mono_thread_attach): Detect threads which are not started
20898         by the GC pthread wrappers.
20899
20900 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20901
20902         * icall.c: Added new icall for RNG.
20903         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20904         single handle on Linux to access /dev/urandom and fix #73183.
20905
20906 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20907
20908         * object.c: setting the new vtable in a transparent proxy object must
20909         not change the GC descriptor.
20910
20911 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20912
20913         * object.c: fixed compilation without GCJ support.
20914         * reflection.c: for runtime-created types ensure klass->has_references
20915         is correct (bug #73215).
20916
20917 2005-03-02  Martin Baulig  <martin@ximian.com>
20918
20919         * class.c (mono_class_is_assignable_from): Make this work if
20920         `oklass' is a generic instance; fixes #72831.
20921
20922 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20923
20924         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20925         with hasthis set.
20926         
20927         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
20928
20929         * marshal.c: Reorganize native->managed marshalling code to also use
20930         the emit_marshal_... functions.
20931
20932 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20933
20934         * object.c: typed allocs have issues with bitmap sizes > 30,
20935         so check for max_set >= 30.
20936
20937 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20938
20939         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
20940         managed code. Fixes #73012.
20941
20942         * metadata.h (MonoMarshalSpec): Add elem_mult field.
20943
20944         * metadata.c reflection.c: Load/Emit elem_mult as well.
20945         
20946         * metadata.h (MonoMarshalSpec): Add comment.
20947
20948         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
20949
20950         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
20951         num_elem to -1 if not given.
20952
20953         * object-internals.h (MonoReflectionMarshal): Add has_size field.
20954
20955         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
20956         given values.
20957
20958 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
20959
20960         * null-gc.c (mono_gc_free_fixed): Was not compilable.
20961
20962 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
20963
20964         * reflection.c (encode_marshal_blob): Encode param_num field as well.
20965
20966         * object-internals.h (MonoReflectionMarshal): Add param_num field.
20967
20968 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20969
20970         * object.c: generalized the reference bitmap creation
20971         and added hooks for the new GC.
20972         * class-internals.c: removed the gc_bitmap field from MonoClass.
20973
20974 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20975
20976         * domain.c: help the compiler to produce better code
20977         in mono_jit_info_table_find ().
20978
20979 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20980
20981         * object.c: make all allocations look typed.
20982
20983 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20984
20985         * socket-io.c: load Mono.Posix if it's not loaded already
20986         (fixes bug#73033).
20987
20988 2005-02-24  Martin Baulig  <martin@ximian.com>
20989
20990         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
20991         * reflection.c (dup_type): Likewise.
20992
20993 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
20994
20995         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
20996         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
20997
20998 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20999
21000         * domain.c, threads.c, object-internals.h: make the critical thread
21001         local vars use the fast access mode (even when we're compiled in
21002         a lib). Provide accessors to be used by the jit during codegen.
21003
21004 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21005
21006         * appdomain.c: Changed hook functios behavior to include
21007         support for the reflection only assemblies. Some icalls were changed
21008         to support the mentioned assemblies too. Signatures of static methods
21009         try_assembly_resolve and real_load now have an additional parameter:
21010         refonly.
21011
21012         * assembly.c: General changes to mono_assembly_ methods to support
21013         reflection only api. Functions mono_assembly_open, mono_assembly_load,
21014         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
21015         suffix, to support an additional gbool parameter to specify whether
21016         the assembli is reflection only or not. Created some new hook functions 
21017         to add support for reflection only assemblies. Signatures of static 
21018         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
21019         have now an additional parameter: refonly.
21020
21021         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
21022         indicating whether the assembly is reflection only or not.
21023
21024         * exception.c: Add mono_get_exception_invalid_operation.
21025
21026         * icall.c: Throw an InvalidOperationException when trying to invoke
21027         a property/method/event, or trying to set/get the value of a field.
21028         Also add an icall to retrieve the ref_only flag to the
21029         MonoReflectionAssembly.
21030
21031 2005-02-23  Chris Toshok  <toshok@ximian.com>
21032
21033         Part of fix for #72827.
21034         * mono-debug.c (mono_debug_add_method): add lexical block data to
21035         the info we write.  Kind of a hack at the moment - we copy the
21036         lexical block info from the MonoDebugMethodInfo to the
21037         MonoDebugMethodJitInfo here, before writing it.
21038         (mono_debug_read_method): read the lexical block info.
21039
21040         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
21041
21042         * debug-mono-symfile.h: add lexical block support.
21043
21044         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21045         support.
21046
21047 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21048
21049         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21050
21051         * object.c (mono_runtime_free_method): Call mono_free_method () and
21052         put the TODOs there.
21053
21054         * loader.c (mono_free_method): Free up most memory allocated for 
21055         dynamic methods.
21056
21057 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21058
21059         * reflection.c: properly flag a Type argument to a
21060         named custom attr value (bug #72248).
21061
21062 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21063
21064         * reflection.c: reduce code duplication in named custom
21065         attribute encoding.
21066
21067 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21068
21069         * reflection.c: properly encode custom attrs of type object
21070         (bug #72649).
21071
21072 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21073
21074         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21075
21076 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21077
21078         * socket-io.c: load System.dll if it's not loaded already
21079         (bug #72850 and #70477).
21080
21081 2005-02-21  Martin Baulig  <martin@ximian.com>
21082
21083         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21084         generic instances.
21085
21086 2005-02-21  Martin Baulig  <martin@ximian.com>
21087
21088         * reflection.c (mono_image_build_metadata): We also need to
21089         "fixup" the MethodImpl table after we computed the final method
21090         indices.  Call fixup_methodimpl() to do that.
21091         (fixup_methodimpl): New private method.
21092
21093 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21094
21095         * assembly.c: special case mscorlib.dll (bug#72536),
21096         patch from Carlos Alberto Cortez.
21097
21098 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21099
21100         * threads-types.h threads.c: Fix build bustage.
21101
21102         * threads.c: Use a union for long<->double conversions.
21103
21104         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21105         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21106
21107         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21108         containing the checkpoint call with NOT_TAKEN.
21109         
21110         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21111         checkpoint before pushing the arguments, so they won't have to be
21112         spilled to stack.
21113
21114 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21115
21116         * domain.c, assembly.c, domain-internals.h: make some data
21117         const and relocation-free.
21118
21119 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21120
21121         * object.c, appdomain.c, class-internals.h: introduce the
21122         MonoClassRuntimeInfo structure to hold the info needed to
21123         use a class at runtime. Made mono_class_vtable() lock-free
21124         for all the appdomains.
21125
21126 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21127
21128         * metadata-internals.h, image.c: introduce a per-image mempool to
21129         be used for memory that has the same lifetime as the image.
21130
21131 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21132
21133         * domain.c: In mono_init_internal(), instead of selecting the first
21134         runtime version supported by an executable, get a list of all
21135         supported versions and select the one for which an mscorlib exists
21136         (since even if the runtime supports a given version, it doesn't mean
21137         that the framework for that version is installed).
21138         Modified get_runtimes_from_exe to support this behavior.
21139         In supported_runtimes, added information about additional system
21140         assembly versions.
21141         
21142         * assembly.c: Added support for more than one system assembly version
21143         per runtime version. Updated the assembly list.
21144         In mono_assembly_remap_version, removed the initial version check,
21145         since we don't know to which version we need to compare until we
21146         get the version set on which the assembly is based.
21147         Moved the code for loading corlib into the new method
21148         mono_assembly_load_corlib(), so it can be used by the initialization
21149         code.
21150         
21151         * domain-internals.h: Updated data structures and added declaration
21152         for mono_assembly_load_corlib.
21153
21154 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21155
21156         * reflection.c (resolve_object): Fix the creation of the signature in 
21157         the SignatureHelper case.
21158
21159         * assembly.c (mono_assembly_remap_version): Fix binary search.
21160         
21161 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21162  
21163         * class.c: Added inheritance check when a method is overloaded (from a
21164         virtual method or when implementing an interface) and when a class is
21165         inherited. Added functions to set a failure for a class and to 
21166         retreive the exception from a failure.
21167         * class-internals.h: Added fields to MonoClass to keep the exception
21168         information status for inheritance (or other exceptions) to be thrown
21169         later (i.e. not at load time).
21170         * object.c: Throw the inheritance SecurityException when a type is to 
21171         be created with either class or method inheritance violations.
21172         * reflection.c|h: Fix when getting declsec from a class. Removed 
21173         unrequired code for class. Improved sanity in parameter naming.
21174         * security-manager.c|h: Added functions to check for class and method
21175         inheritance.
21176
21177 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21178
21179         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21180         and has_finalize in dynamic types as well.
21181
21182 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21183
21184         * culture-info-table.h : fixed currency format for en-GB (and so on).
21185
21186 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21187
21188         * gc.c: ensure the GC handles never have 0 as a value.
21189
21190 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21191
21192         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21193         a pointer to a struct to unmanaged code. Fixes #72625.
21194
21195 2005-02-16  Martin Baulig  <martin@ximian.com>
21196
21197         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21198
21199 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21200
21201         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21202
21203 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21204
21205         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21206
21207         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21208         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21209         etc. Fixes #71471.
21210
21211         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21212
21213         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21214
21215 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21216
21217         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21218         changes to make the current context a field in MonoThread.
21219
21220 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21221
21222         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21223         the last change.
21224         
21225         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21226         extracted from mono_marshal_get_native_wrapper.
21227
21228         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21229         to create wrappers around native functions.
21230
21231         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21232         delegates for arbitrary function pointers. Fixes #71472.
21233
21234 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21235
21236         * threads.c: cleaned up the code a little.
21237
21238 2005-02-15  Martin Baulig  <martin@ximian.com>
21239
21240         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21241         the data table.
21242
21243         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21244         allocate larger chunks if needed.
21245
21246 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21247
21248         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21249         in by mistake.
21250
21251 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21252
21253         * domain.c: keep the domains in an array and ensure the domain ids
21254         are kept small, so they can be used as indexes to domain-specific data
21255         with a small memory overhead.
21256
21257 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21258
21259         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21260
21261 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21262
21263         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21264
21265 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21266
21267         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21268
21269         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21270         values.
21271
21272         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21273         
21274 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21275
21276         * domain-internals.h: add the hashtable here.
21277
21278         * class-internals.h: Remove `info' from MonoMethod
21279
21280         * domain.c: Add a new hashtable, jit_trampoline_hash
21281
21282 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21283
21284         * object.c: don't set the value of static fields
21285         (fixes bug#72494).
21286
21287 2005-02-11  Martin Baulig  <martin@ximian.com>
21288
21289         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21290         (mono_debug_add_method): Silently ignore the method if it's too big.
21291         (mono_debug_add_type): Likewise.
21292
21293 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21294
21295         * threads.c, appdomain.c: remove #ifdefs from the code.
21296
21297 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21298
21299         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21300         common security informations. This allows us to stay in unmanaged code
21301         when doing LinkDemand and it's special cases (except for the first 
21302         time for initialization). The flags a very much used with --security.
21303         * reflection.c|h: Added code to get declarative security attributes 
21304         for LinkDemand and InheritanceDemand. This required to refactor the
21305         existing code for Demand.
21306         * security-manager.c|h: Added new method fields for the special cases
21307         of LinkDemand.
21308
21309 2005-02-10  Martin Baulig  <martin@ximian.com>
21310
21311         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21312         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21313
21314 2005-02-10  Martin Baulig  <martin@ximian.com>
21315
21316         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21317         debugging code; this is almost a complete rewrite.
21318
21319         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21320
21321 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21322
21323         * domain.c, object.h: expose mono_string_equal () and 
21324         mono_string_hash ().
21325         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21326         it's implemented in managed code.
21327
21328 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21329
21330         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21331         lo leak objects between appdomains.
21332
21333 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21334
21335         * assembly.c: old compilers compilation fix from 
21336         robertj@gmx.net (Robert Jordan).
21337
21338 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21339
21340         * class-internals.h: Little reminder for the future.
21341
21342         * debug-helpers.c: Fix up wrapper_type_names
21343
21344 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21345
21346         * image.c, metadata-internals.h: when loading an image from a file,
21347         mmap all of it and use the same codepaths as when using a
21348         in-memory image: the code is simpler and we use less memory
21349         (both writable and readonly).
21350
21351 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21352
21353         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21354         API to alloc runtime data structures that need to be tracked by the
21355         GC and contain pointers.
21356         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21357         make the code more readable and eventually use a different GC.
21358
21359 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21360
21361         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21362         for out arguments.
21363         
21364 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21365
21366         * object.c: In release_type_locks(), don't release the cctor lock
21367         if it has already been released. This fixes a crash in the
21368         thread5 test.
21369
21370 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21371
21372         * gc.c, marshal.c, icall.c: register a delegate for finalization
21373         only when the native function pointer has been allocated for it.
21374
21375 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21376
21377         * object.c: cleaned up some code, allocate objects that are
21378         pointer free with the atomic malloc variant. Allocate memory
21379         for static data from the mempool if it's pointer-free.
21380         Allocate the bounds array at the end of the array data, when needed.
21381         * object-internals.h, object.h: move a private function in a private
21382         header.
21383         * class.c: handle missing case in tracking references in fields.
21384
21385 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21386
21387         * class.c, class-internals.h: keep track if a type has
21388         reference fields in either the instance or static fields.
21389
21390 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21391
21392         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21393         and renamed to MonoRuntimeInfo. Added fields to store the expected
21394         framework assembly version. Changed mono_get_framework_version and
21395         mono_get_runtime_version for a single mono_get_runtime_info method.
21396         
21397         * assembly.c: Added method to remap system assembly versions to the
21398         current executing runtime version. Removed old mapping code.
21399         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21400         
21401         * icall.c, reflection.c: Track api changes.
21402
21403 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21404
21405         * loader.c (method_from_memberref): Improve error reporting,
21406         produce the class name instead of the typeref/typedef index. 
21407
21408 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21409
21410         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21411
21412 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21413
21414         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21415         stdcall and charset name mangling.  Reorganize the code and add
21416         some tracing stuff.
21417
21418 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21419
21420         * monodiet.c: More iters!
21421
21422         * marshal.c: Iter usage.
21423
21424         * icall.c: Iter usage.
21425
21426         * object.c: Use iters.
21427
21428         * debug-helpers.c: More iters
21429
21430 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21431
21432         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21433         under win32.
21434
21435 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21436
21437         * mono-debug-debugger.c: use iters
21438
21439         * class.c, class-internals.h: mono_class_setup_events is static
21440         now
21441
21442         * All callers: use iters
21443
21444 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21445
21446         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21447         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21448
21449 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21450
21451         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21452
21453         * marshal.h: Add prototypes for ldfld/stfld_remote.
21454
21455         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21456         this is called during startup.
21457         
21458 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21459
21460         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21461         MonoThreadsSync struct private in monitor.c. Changed the way
21462         MonoThreadsSync is allocated so it's faster and there is no
21463         need to keep track of it with a finalizer and it uses less memory.
21464         This also finally allows us to allocate mono objects as ptrfree when
21465         there are no reference fields.
21466
21467 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21468
21469         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21470         disappearing link to the GC interface and use them to simplify
21471         the gchandles code.
21472
21473 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21474
21475         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
21476         stfld_remote which call mono_load/store_field_new. This allows methods
21477         calling ldfld/stfld wrappers to be AOTed.
21478
21479         * console-io.c: Include sys/filio.h under solaris.
21480         
21481         * console-io.c: Include curses.h if needed correctly.
21482
21483 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21484         
21485         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
21486         method->klass as well.
21487
21488         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
21489
21490         * class.c (mono_class_init): Switch on lazy initialization of 
21491         methods.
21492
21493         * class.c (mono_class_get_finalizer): Handle the case when the 
21494         finalizer is inherited.
21495
21496 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21497
21498         * console-io.c: <curses.h> is needed by term.h on solaris.
21499
21500 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
21501
21502         * icall.c, class-internals.h, monodiet.c, class.c: Remove
21503         mono_class_setup_properties where possible. Remove this ftn from
21504         the header file, and make it static.
21505
21506 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21507
21508         * loader.c: Add missing setup_... call.
21509
21510         * class.c: Add missing setup_... calls.
21511
21512         * class.c (mono_class_init): Switch on lazy initialization of 
21513         the generic vtable.
21514         
21515         * class.c (mono_class_init): Fix generics broken by the recent changes.
21516
21517         * monodiet.c (handle_type): Add missing setup_... calls.
21518
21519         * class.c: Back out garbage in previous patch.
21520         
21521         * class.c: Add missing setup_... calls.
21522
21523         * class.c (mono_class_get_method_from_name_flags): Avoid calling
21524         mono_class_setup_methods () if possible.
21525
21526         * class-internals.h (MonoClass): Add 'has_cctor' flag.
21527
21528         * class-internals.h (MonoCachedClassInfo): New structure.
21529
21530         * class.c: Initialize properties and events fields of MonoClass lazily.
21531
21532         * class.c: Add infrastructure for lazily initializing the methods and
21533         vtable fields of MonoClass. Not yet used.
21534
21535         * class.c (mono_class_get_finalizer): New helper function.
21536
21537         * class.c: Add infrastructure for loading some class related data from
21538         an AOT file.
21539
21540         * object.c: Add infrastructure for initializing the vtable from data
21541         in the AOT file.
21542
21543         * gc.c (run_finalize): Use mono_class_get_finalizer ().
21544
21545         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
21546         appropriate initialization function before accessing parts of the
21547         MonoClass structure.
21548
21549         * marshal.c: Fix warnings.
21550         
21551         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
21552
21553         * mono-debug-debugger.c (get_exception_message): Use 
21554         mono_class_get_method_from_name_flags ().
21555
21556 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
21557
21558         * reflection.c, appdomain.c: Replace a few manual searches that
21559         Zoltan missed. (Paolo approved this part of my initial patch).
21560
21561 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
21562
21563         * profiler.c: disable recording statistical events at report time.
21564
21565 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21566
21567         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
21568         to byteswap arrays of enum values, too (bug #72080).
21569
21570 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
21571
21572         * appdomain.c (set_domain_search_path): Allow this to be called if
21573         domain->setup is not yet set.
21574
21575         * loader.c (mono_method_get_index): New helper function.
21576
21577         * loader.c reflection.c: Use mono_method_get_index ().
21578
21579         * class.c (mono_class_get_method_from_name_flags): New helper method.
21580
21581         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
21582         this.
21583
21584         * class.c (mono_class_get_cctor): New helper method.
21585
21586         * string-icalls.c object.c class.c marshal.c reflection.c: Use
21587         mono_class_get_method () to look up methods.
21588
21589 2005-02-01  Miguel de Icaza  <miguel@novell.com>
21590
21591         * console-io.c: Fix the build, this should work on Windows.
21592
21593 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
21594
21595         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
21596         be set to null to keep things valid
21597
21598 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21599
21600         * icall.c: added Console 2.0 icalls.
21601         * Makefile.am: added console-io.[ch]
21602         * console-io.[ch]: internal calls for Console 2.0 API.
21603
21604 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21605
21606         * class.c: make sure we consider all the interfaces
21607         when calculating max_interface_id (bug found by
21608         Jeroen Frijters running ikvm).
21609
21610 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
21611
21612         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
21613         valuetype fields to null.
21614
21615         * object.c (set_value): Ditto. Fixes #71669.    
21616
21617 2005-01-31  Martin Baulig  <martin@ximian.com>
21618
21619         * metadata.c (mono_metadata_has_generic_params): New public
21620         function; checks whether something is a generic method.
21621
21622 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
21623
21624         * appdomain.c: fix infinite recursion when adding assemblies.
21625
21626 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
21627
21628         * object.c: Fix small typo to return all items for Environment.
21629         GetCommandLineArgs.
21630
21631 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21632
21633         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
21634         reflection.c: more domain and assembly-unload related fixes
21635         and memory leaks plugs.
21636
21637 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
21638
21639         * 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.
21640
21641 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
21642
21643         * loader.c (mono_method_signature): Make this method lazy
21644         (mono_get_method_from_token): Don't computate the signature here.
21645
21646         Doing this saves quite a bit of memory. I got 90 kb on starting up
21647         monodoc. It should also save some disk reads on startup.
21648
21649         * *: MonoMethod->signature might be NULL now. You *MUST* use
21650         mono_method_signature.
21651
21652 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
21653
21654         * object.c (mono_runtime_get_main_args): Return an array from the
21655         current domain here. Fixes #71938.
21656
21657 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
21658
21659         * monitor.c: formatting changes to comply with the
21660         mono coding style and remove #ifdefs from the code.
21661
21662 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21663
21664         * metadata.c, private.h: remove some unneeded data
21665         and use a more compact representation for table schemas.
21666
21667 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
21668
21669         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
21670         to get a better distribution in hash tables.
21671         * *.c: use mono_aligned_addr_hash() where appropriate.
21672         * assembly.c: make var static.
21673
21674 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
21675
21676         * domain-internals.h: Put MonoJitInfo on a diet.
21677
21678         * domain.c: Fix a warning.
21679
21680 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21681
21682         * gc.c: rework the gc handles code to reuse handles
21683         when freed.
21684
21685 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21686
21687         * domain.c: fixed long standing bug in mono_string_equal() which
21688         was brought to light with the ldstr changes.
21689
21690 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
21691
21692         * reflection.c: Remove warning by adding missing include for marshal.h
21693
21694 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21695
21696         * domain.c, object.c: change the ldstr_table to hold
21697         MonoString* as keys: makes the runtime isinterned lookup
21698         faster and simplifies memory management.
21699
21700 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21701  
21702         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21703         possible to add imperative security checks before calling the icall.
21704         * reflection.c: Return security attributes on the original MonoMethod
21705         (and not the wrapped one). This fix permissions on icalls.
21706
21707 2005-01-25  Dick Porter  <dick@ximian.com>
21708
21709         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21710         the check for mktime() support actually test the mktime() return
21711         value.  "Fixes" bug 71682, though the output is still different to
21712         MS.
21713
21714 2005-01-25  Martin Baulig  <martin@ximian.com>
21715
21716         * class.c (mono_class_is_assignable_from): Make this work for
21717         generic instances.
21718
21719 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21720
21721         * marshal.c (mono_string_utf8_to_builder)
21722         (mono_string_builder_to_utf16): We might not have ownership of the
21723         string. In thise case, we need to create a new buffer.
21724
21725         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21726         be null, in which case, use the default capacity.
21727
21728 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21729
21730         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21731         GC events to the profiler.
21732
21733 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21734
21735         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21736         if you don't want the GC to run.
21737
21738 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21739
21740         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21741         start providing a GC API and keeping different implementations in
21742         their own file.
21743         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21744
21745 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21746
21747         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21748         mmap rather than allocating a huge buffer.
21749         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21750         above.
21751
21752 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21753
21754         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21755         and CheckExecutionRights.
21756         * reflection.c|h: Keep the index of the declarative security to be 
21757         used, instead of the pointer, when AOT compiler is used. Also add 
21758         class initialization when requesting demands.
21759         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21760         CheckExecutionRights. Both properties are now FALSE by default, and
21761         unmodifiable, unless the --security option is used.
21762
21763 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21764
21765         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21766         reflection.c: properly refcount images and assemblies, many leaks fixed.
21767
21768 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21769
21770         * threadpool.c: increase the timeout for threads in the thread pool to
21771         10s.  Fixes bug #67159.
21772
21773 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21774
21775         * class-internals.h: Sun's compiler insists on explicit
21776         signed on bit fields to handle then correctly.
21777
21778 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21779
21780         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21781         Make the size of the array fit only the number of invalid path
21782         chars that we have.
21783
21784         * class.c (_mono_class_get): Improve the error reporting when a
21785         class referenced is not found, to assist debugging. 
21786
21787 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21788
21789         * threads.c: fix off-by-one error.
21790         * domain.c: free data allocated in the domain.
21791
21792 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21793
21794         * reflection.c (mono_method_body_get_object): Fill out exception info
21795         as well.
21796
21797         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21798         structure.
21799         
21800 2005-01-19  Martin Baulig  <martin@ximian.com>
21801
21802         * loader.c (mono_get_method_constrained): Make this work again.
21803
21804 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21805
21806         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21807         guint16 to match the managed side.
21808
21809         * reflection.c (mono_reflection_body_get_object): Fill out local
21810         variables array.
21811
21812         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21813         as well.
21814
21815         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21816         'local_var_sig_token'.
21817
21818 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21819
21820         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21821         System.Drawing.
21822
21823         * reflection.c (mono_method_body_get_object): Handle abstract and
21824         runtime methods.
21825
21826 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21827
21828         * marshal.c, loader.c, class-internals.h, reflection.c:
21829         store the emthod data for a wrapper in an array instead of a list.
21830
21831 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21832
21833         * marshal.c: change the code to allocate memory more
21834         conservatively for method wrappers.
21835
21836 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21837
21838         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21839         fields from MonoClass to the marshal info structure where they belong.
21840
21841 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21842
21843         * class.c, object.c, class-internals.h, marshal.c: rearrange
21844         some fields and tweak some types to lower memory usage.
21845
21846 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
21847
21848         * threads.c (signal_thread_state_change): Handle the case when the
21849         target thread is the current thread.
21850
21851         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
21852
21853         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
21854         emit_ptr_to_object_conv. 
21855
21856         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
21857         marshalling. Fixes #71352.
21858
21859 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21860
21861         * metadata.h, blob.h: move table enum to blob.h so it can be included
21862         in any header.
21863         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
21864         cut the size of MonoImage/MonoDynamicImage.
21865
21866 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
21867
21868         * profiler.c (mono_profiler_install_simple): Fix default arguments.
21869
21870 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21871
21872         * reflection.c, reflection.h, icall.c: add a function to check
21873         if an attribute type is defined for a metadata object.
21874
21875 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
21876
21877         * object-internals.h: Added some needed fields from StringBuilder class.
21878         * marshal.c: Set the maxCapacity when creating a StringBuilder.
21879
21880 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
21881
21882         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
21883         threads before shutting down the runtime.
21884
21885         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21886
21887 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21888
21889         * object-internal.h, threads.c: implement stacksize and 
21890         parameterized thread start functionality (requires
21891         matching corlib). Marked broken code for later removal.
21892
21893 2005-01-12  Martin Baulig  <martin@ximian.com>
21894
21895         * class-internals.h (MonoGenericClass): Moved the `initialized'
21896         flag to MonoDynamicGenericClass, removed `init_pending'.
21897         (MonoGenericInst): Added `is_reference' flag.
21898
21899 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21900
21901         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21902         inside the MSDOS header. Fixes #71201.
21903
21904         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21905         gc thread.
21906         (mono_domain_finalize): Ditto.
21907
21908 2005-01-12  Martin Baulig  <martin@ximian.com>
21909
21910         * class.c (mono_get_shared_generic_class): Use the cache for
21911         non-dynamic generic classes.
21912
21913         * class-internals.h (mono_class_create_generic_2): Removed
21914         function prototype, this function is now static inside class.c.
21915
21916         * class.c (mono_class_create_generic_2): Made this static, only
21917         call it from mono_class_init() and mono_class_setup_parent().
21918         (collect_implemented_interfaces_aux): Call mono_class_init() on
21919         the interfaces we collect.
21920         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21921
21922 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21923
21924         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21925         it a real thread handle.
21926
21927         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21928         MonoJitExceptionInfo, since each catch clause needs its own variable.
21929         
21930 2005-01-11  Dick Porter  <dick@ximian.com>
21931
21932         * image.c (mono_pe_file_open): New variant on mono_image_open()
21933         that does not set up the CLI metadata; used for FileVersionInfo so
21934         it can get the data for windows binaries too.
21935         
21936         * process.c (process_read_string_block): Don't read off the end of
21937         the StringTable block.
21938
21939         These both fix bug 70766.
21940
21941 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
21942
21943         * gc.c: set some fields to NULL at GC cleanup time.
21944         * threads.c: if we quit the main thread, call exit ().
21945
21946 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21947
21948         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
21949
21950 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
21951
21952         * threads.h, threads.c, object.c: added accessor and settor for
21953         main_thread. Handle it specially when exiting from it: wait
21954         for other foreground threads to exit.
21955
21956 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21957
21958         * process.c, verify.c: remove some bloat.
21959
21960 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21961
21962         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
21963         the calling convention to cdecl under win32.
21964
21965 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
21966
21967         * object.c (mono_object_get_size): New function to get the size of
21968         an object instance.
21969
21970         * profiler.c (simple_allocation): Use above.
21971
21972 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
21973
21974         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
21975         ves_icall_System_AppDomain_getRootDomain (as it's not required to
21976         get an appdomain by it's id and we can't assume the root's id is 0).
21977         * domain-internals.h: Change the function prototype to match.
21978         * icall.c: Change the icall table for AppDomain.
21979
21980 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
21981
21982         * locales.c (string_invariant_compare_char): Only compute
21983         GUnicodeTypes in the case where we need them.  Test for ordinality
21984         first and return if so.
21985
21986         From the commit:
21987
21988                 /*
21989                  * FIXME: here we must use the information from c1type and c2type
21990                  * to find out the proper collation, even on the InvariantCulture, the
21991                  * sorting is not done by computing the unicode values, but their
21992                  * actual sort order.
21993                  */
21994
21995 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21996
21997         * loader.c: for P/Invoke methods, allow the "Internal" shared
21998         library name to refer to the calling process symbol namespace.
21999
22000 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
22001
22002         * Makefile.am: Add the security manager to the build.
22003         * security-manager.c|h: New. Initialization of the security manager.
22004
22005 2005-01-07  Dick Porter  <dick@ximian.com>
22006
22007         * threads.c: 
22008         * monitor.c: Update thread state during Monitor and WaitHandle
22009         waits.  Fixes bug 71031.
22010
22011 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
22012
22013         * reflection.c (property_encode_signature): Correctly handle when the
22014         property has no methods.
22015
22016 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
22017
22018         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
22019         
22020         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
22021         fields from mb, not rmb. Fixes #71017.
22022
22023         * marshal.c (emit_ptr_to_str_conv): Add support for 
22024         ByValTStr -> string conversion. Fixes #71015.
22025
22026         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
22027
22028         * mempool.c (mono_mempool_contains_addr): New helper function.
22029
22030 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22031
22032         * metadata.c (mono_metadata_compute_size): Fix size calculation of
22033         HasSematics encoded fields.
22034         
22035         * metadata.c (mono_type_to_unmanaged): Improve error message for 
22036         invalid string marshalling.
22037
22038         * metadata.c: Fix warnings.
22039         
22040 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22041
22042         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22043         profiler support.
22044
22045 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22046
22047         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22048         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22049         tests.
22050
22051 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22052
22053         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22054         so methods containing these can be AOTed.
22055
22056 2005-01-03  Martin Baulig  <martin@ximian.com>
22057
22058         * loader.c (find_method): Removed the hack for generic instances.
22059         (method_from_memberref): If our parent is a generic instance, pass
22060         its generic type definition to find_method() and then inflate the
22061         method.
22062         (mono_get_method_constrained): Pass the generic type definition to
22063         find_method() and inflate the method later.
22064
22065         * class-internals.h (MonoStats): Added `generic_class_count'.
22066
22067         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22068         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22069
22070         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22071         generic type definitions.
22072
22073 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22074
22075         * loader.c icall.c: Fix warnings.
22076
22077 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22078
22079         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22080         blittable types. Fixes #70864.
22081
22082 2004-12-29  Martin Baulig  <martin@ximian.com>
22083
22084         * icall.c
22085         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22086
22087         * reflection.c (mono_method_get_object): Create a
22088         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22089         call mono_get_inflated_method().
22090
22091         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22092
22093 2004-12-27  Martin Baulig  <martin@ximian.com>
22094
22095         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22096         (MonoMethodInflated): Added `inflated' field.
22097
22098         * class.c (mono_class_inflate_generic_method): Don't really
22099         inflate the method here; just set the `is_inflated' flag in the
22100         MonoMethod.
22101         (mono_class_get_inflated_method): Actually inflate the method here
22102         if it's not already inflated; we use the MonoMethodInflated's new
22103         `inflated' field as a cache.
22104
22105 2004-12-26  Martin Baulig  <martin@ximian.com>
22106
22107         * class.c
22108         (inflate_generic_class): Moved some code out of inflate_generic_type().
22109         (mono_class_inflate_generic_method): If we're already inflated,
22110         inflate the context and use the declaring method; ie. make sure
22111         the declaring method of an inflated method is always the generic
22112         method definition.
22113         (mono_class_create_from_typedef): Create
22114         `class->generic_container->context->gclass'.
22115
22116 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22117
22118         * metadata-internals.h, marshal.c, reflection.c: More
22119         MonoGHashTable->GHashTable.
22120
22121         * domain-internals.h, class.c: Change MonoGHashTable's into
22122         GHashTables for some cases where no gc stuff is used
22123
22124         All users: update apis
22125
22126 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22127
22128         * metadata.c (builtin_types): Make this `const'. Makes this get
22129         put into the shareable section.
22130         (mono_metadata_init): Casts to make gcc happy.
22131
22132 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22133
22134         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22135
22136 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22137
22138         * icall.c: Added an internal call to retrieve the position and length
22139         of assembly-level declarative security attributes (RequestMinimum, 
22140         RequestOptional and RequestRefuse). This is used by the Assembly class
22141         to re-create the corresponding permission sets.
22142
22143 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22144
22145         * marshal.c: fix the stelemref wrapper to be type correct
22146         (and faster).
22147
22148 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22149
22150         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22151         to do key & 0x7fffffff. Hashtable already does this. It just
22152         results in longer code.
22153
22154 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22155
22156         * appdomain.c: Bump corlib version.
22157         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22158         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22159         * reflection.c|h: Add functions to get declarative security infos
22160         (blob position and length) for assemblies, classes and methods.
22161
22162 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22163
22164         * reflection.c: sort the constant table (bug #70693).
22165
22166 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22167
22168         * object-internals.h, threads.c, domain.c: add accessors for
22169         the MonoThread and MonoDomain tls keys.
22170
22171 2004-12-18  Martin Baulig  <martin@ximian.com>
22172
22173         * class.c (inflate_generic_type): If we're inflating a generic
22174         instance, set `ngclass->context->container = context->container';
22175         ie. the container we inflated into.
22176
22177         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22178         inflate_generic_type() changes.
22179
22180 2004-12-17  Martin Baulig  <martin@ximian.com>
22181
22182         * class-internals.h
22183         (MonoGenericClass): Replaced `MonoType *generic_type' with
22184         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22185         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22186         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22187
22188 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22189
22190         * exception.c (mono_exception_from_token): New helper function.
22191
22192 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22193
22194         * assembly.c (mono_assembly_load_with_partial_name): Call 
22195         mono_assembly_loaded before invoking the preload hooks. Fixes
22196         #70564.
22197
22198         * object-internals.h (MonoThread): Change culture_info and 
22199         ui_culture_info into an array.
22200
22201         * threads.c: Cache culture info objects from more than one appdomain.
22202
22203         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22204         current UI culture.
22205
22206 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22207
22208         * threads.h threads.c appdomain.c: Clear the culture_info field of
22209         all threads during unloading if they point to an object in the dying
22210         appdomain.
22211
22212 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22213
22214         * culture-info.h (TextInfoEntry): New struct
22215         * object-internals.h: sync with managed
22216         * locales.c: fill the `text_info_data' field
22217         * culture-info-tables.h: update
22218
22219 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22220
22221         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22222         collector.
22223
22224 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22225
22226         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22227         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22228
22229 2004-12-12  Martin Baulig  <martin@ximian.com>
22230
22231         * mono-debug-debugger.c (write_type): If we're an enum and the
22232         builtin types have already been initialized, call mono_class_init().
22233
22234 2004-12-11  Martin Baulig  <martin@ximian.com>
22235
22236         * metadata.c (mono_metadata_load_generic_params): Added
22237         `MonoGenericContainer *parent_container' argument; automatically
22238         compute `container->is_method'; pass the correct owner to
22239         get_constraints().      
22240
22241         * reflection.c (compare_genericparam): Sort the GenericParam table
22242         according to increasing owners. 
22243
22244 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22245
22246         * profiler.c: allow disabling the default profiler.
22247
22248 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22249
22250         * decimal.c, icall.c: allow disabling System.Decimal support.
22251
22252 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22253
22254         * reflection.c: Add support for null attribute arguments.
22255
22256 2004-12-09  Martin Baulig  <martin@ximian.com>
22257
22258         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22259         names to get rid of compiler warnings.
22260
22261 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22262
22263         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22264         mono_marshal_load_type_info (). Fixes #69625.
22265         (mono_marshal_get_ptr_to_struct): Likewise.
22266
22267 2004-12-08  Martin Baulig  <martin@ximian.com>
22268
22269         * mono-debug.h: Bumped version number to 47.
22270
22271         * mono-debug-debugger.c
22272         (mono_debugger_event_handler, mono_debugger_event): Take two
22273         guint64 arguments insteed of a gpointer and a guint32.  
22274
22275 2004-12-08  Martin Baulig  <martin@ximian.com>
22276
22277         * debug-mono-symfile.h
22278         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22279         `address' to `native_offset'.
22280
22281 2004-12-08  Martin Baulig  <martin@ximian.com>
22282
22283         * class.c (mono_class_create_from_typespec): Only inflate if we
22284         either have `context->gclass' or `context->gmethod'.
22285
22286 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22287
22288         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22289
22290         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22291
22292         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22293
22294         * reflection.c (mono_assembly_get_object): Remove the workaround put
22295         in for the release.
22296         
22297         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22298
22299         * appdomain.c: Bump corlib version.
22300
22301         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22302         be visible in other appdomains.
22303
22304 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22305
22306         * threads.c: Interlocked inc and dec for longs were messed up,
22307         use a KISS based impl for this. Fixes 70234
22308
22309 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22310
22311         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22312
22313 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22314
22315         * icall.c: fix to follow policy not to allow struct
22316         arguments in icalls.
22317
22318 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22319
22320         * process.c: make the patch that handles spaces in file paths work
22321         on mono/windows too.
22322
22323 2004-12-06  Martin Baulig  <martin@ximian.com>
22324
22325         * class.c (mono_class_create_generic): Call
22326         mono_class_setup_supertypes() if we're dynamic.
22327         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22328
22329 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22330
22331         * object-internals.h: Add new fields to MonoThread.
22332
22333         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22334
22335         * icall.c threads-types.h threads.c: Add new icalls.
22336
22337         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22338
22339         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22340         managed side.
22341
22342         * appdomain.c: Bump corlib version.
22343
22344         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22345         internal assemblies. Fixes #69181.
22346
22347 2004-12-05  Martin Baulig  <martin@ximian.com>
22348
22349         * class.c (mono_class_inflate_generic_signature): Make this a
22350         no-op if `context' is NULL or we don't have any type parameters;
22351         also copy `sentinelpos'.        
22352
22353 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22354
22355         * image.c: Add unbox_wrapper_cache.
22356
22357         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22358
22359         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22360         function generator.
22361         
22362         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22363         Fixes #70173.
22364
22365         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22366         
22367 2004-12-04  Martin Baulig  <martin@ximian.com>
22368
22369         * loader.c (mono_method_get_signature_full): New public function;
22370         like mono_method_get_signature(), but with an additional
22371         `MonoGenericContext *' argument.
22372
22373         * class.c (mono_class_inflate_generic_signature): Formerly known
22374         as inflate_generic_signature(); make this public.
22375
22376 2004-12-04  Martin Baulig  <martin@ximian.com>
22377
22378         * metadata.c
22379         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22380         instead of a `MonoGenericContainer *'.  
22381         (mono_metadata_parse_array_full): Likewise.
22382         (mono_metadata_parse_signature_full): Likewise.
22383         (mono_metadata_parse_method_signature_full): Likewise.
22384         (mono_metadata_parse_generic_inst): Likewise.
22385         (mono_metadata_parse_generic_param): Likewise.
22386         (mono_metadata_parse_mh_full): Likewise.
22387         (mono_type_create_from_typespec_full): Likewise.
22388
22389 2004-12-03  Martin Baulig  <martin@ximian.com>
22390
22391         * class-internals.h (MonoGenericContainer): Replaced the
22392         `MonoGenericContext * pointer with a `MonoGenericContext'
22393         structure and made it the first element.
22394
22395 2004-12-03  Martin Baulig  <martin@ximian.com>
22396
22397         * class.c
22398         (inflate_generic_type): Set the `context->container' when creating
22399         a new MonoGenericContext.
22400         (mono_class_inflate_generic_method): Likewise.
22401         (mono_class_create_from_typespec): Just use `context->container'
22402         to get the container.
22403
22404         * loader.c (method_from_methodspec): Set `context->parent' from
22405         `context->container' - and if that's a method container, use its
22406         parent.  Also set the `context->container' when creating a new
22407         MonoGenericContext.
22408         (mono_get_method_from_token): Use just `context->container' to get
22409         the container.
22410
22411         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22412         `gclass->context->container'.
22413
22414         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22415         the `context->container' when creating a new MonoGenericContext.
22416
22417 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22418
22419         * reflection.c (compare_genericparam): Sort params with identical
22420         owner by their number. Fixes gen-111 on sparc.
22421
22422 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22423
22424         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22425         around the domain changes.
22426
22427         * appdomain.c (mono_domain_unload): Handle the case when the thread
22428         calling Unload is itself being aborted during unloading. Fixes #70022.
22429
22430         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22431
22432         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22433         checkpoint_func as an icall so it gets a wrapper.
22434         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22435         in the cross-appdomain wrappers too.
22436
22437         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22438
22439         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22440
22441         * reflection.c: Fix some memory leaks.
22442         
22443 2004-12-02  Martin Baulig  <martin@ximian.com>
22444
22445         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22446
22447         * metadata.c (generic_class_cache): New static hashtable.
22448         (mono_metadata_lookup_generic_class): New public method.
22449
22450 2004-12-02  Martin Baulig  <martin@ximian.com>
22451
22452         * class.c (mono_class_create_from_typedef): Call
22453         mono_class_setup_parent() and mono_class_create_mono_type() before
22454         parsing the interfaces.
22455
22456 2004-12-02  Martin Baulig  <martin@ximian.com>
22457
22458         * metadata.c (generic_inst_cache): New static hashtable.
22459         (mono_metadata_lookup_generic_inst): New public function.
22460         (mono_metadata_inflate_generic_inst): New public function.
22461         (mono_metadata_parse_generic_inst): New public function.
22462         (do_mono_metadata_parse_generic_class): Use the new
22463         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22464         since this'll also use the cache.
22465
22466         * reflection.c (mono_reflection_bind_generic_method_parameters):
22467         Use mono_metadata_lookup_generic_inst() to use the new cache.
22468
22469         * class.c (inflate_mono_type): Use
22470         mono_metadata_inflate_generic_inst() to inflate a generic
22471         instance; this'll also use the new cache.
22472
22473         * loader.c (method_from_methodspec): Use
22474         mono_metadata_parse_generic_inst() and
22475         mono_metadata_inflate_generic_inst() rather than parsing it
22476         manually, so we can use the new cache.
22477
22478 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22479
22480         * threads.c (wait_for_tids): Do not incorrectly free threads when 
22481         the wait times out.
22482
22483 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22484
22485         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
22486         iter->args based on whether parameters are passed in registers (i.e.
22487         MONO_ARCH_REGPARMS is defined)
22488
22489 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
22490
22491         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
22492         the exception message. Fixes #70070.
22493         (method_from_methodspec): Fix warnings.
22494
22495 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22496
22497         * process.c: (complete_path) return the path quoted
22498
22499 2004-12-01  Martin Baulig  <martin@ximian.com>
22500
22501         * class-internals.h (MonoGenericInst): New structure.
22502         (MonoGenericClass): Replaced `type_argc', `type_argv' and
22503         `is_open' with `MonoGenericInst *inst'.
22504         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
22505         `is_open' with `MonoGenericInst *inst'.
22506
22507 2004-11-30  Martin Baulig  <martin@ximian.com>
22508
22509         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22510
22511         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22512         to `generic_class_cache'.
22513
22514         * metadata.c
22515         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22516         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
22517         (mono_generic_inst_is_valuetype): Renamed to
22518         mono_generic_class_is_valuetype().
22519
22520         * class-internals.h
22521         (MonoGenericInst): Renamed to MonoGenericClass.
22522         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
22523         (MonoClass): Renamed `generic_inst' to `generic_class'.
22524         (MonoGenericContext): Renamed `ginst' to `gclass'.
22525
22526         * object-internals.h
22527         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
22528
22529         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
22530         mono_reflection_generic_class_initialize().
22531
22532         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
22533         now known as "System.Reflection.MonoGenericClass".
22534         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
22535
22536 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
22537
22538         * class-internals.h: Added a flag field to MonoClass to cache the
22539         declarative security attributes actions associated with the class.
22540         * domain-internals.h: Added booleans to MonoJitInfo to cache the
22541         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
22542         applicable to the JITted method.
22543         * reflection.c|h: Added functions to extract (as flags) which security
22544         actions are available (declaratively) for a method, class or assembly.
22545         * metadata.c|h: Added functions to search the declarative security
22546         table in the metadata.
22547         
22548 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
22549
22550         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
22551         EXPORTEDTYPES are already in the class name cache, so there is no
22552         need to add extra code here to look at them. Just removes a bit of
22553         cruft.
22554
22555         (ves_icall_System_Environment_get_TickCount): No need for #if
22556         WINDOWS. We already have the code in io-layer.
22557
22558 2004-11-28  Martin Baulig  <martin@ximian.com>
22559
22560         * loader.c
22561         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
22562         Fixes gen-112.cs.
22563
22564 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
22565
22566         * assembly.c (do_mono_assembly_open): Instead of having a
22567         conditional WITH_BUNDLE, incorporate support for bundles here, by
22568         having a global `bundles' variable holding a pointer to the actual
22569         bundles. 
22570
22571         (mono_register_bundled_assemblies): New API call used by the
22572         bundle code. 
22573
22574         See mkbundle.1 for details.
22575         
22576 2004-11-27  Martin Baulig  <martin@ximian.com>
22577
22578         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
22579         the vtable for generic methods.
22580
22581 2004-11-26  Martin Baulig  <martin@ximian.com>
22582
22583         * metadata.c
22584         (mono_metadata_generic_method_hash): New public function.
22585         (mono_metadata_generic_method_equal): Likewise.
22586
22587         * class-internals.h
22588         (MonoGenericContainer): Added `GHashTable *method_hash'.
22589
22590         * reflection.c (ReflectionMethodBuilder): Added
22591         `MonoGenericContainer *generic_container'.
22592         (reflection_methodbuilder_to_mono_method): Don't create a new
22593         MonoGenericContainer each time we're called.
22594         (mono_reflection_bind_generic_method_parameters): Use
22595         `container->method_hash' to cache the results so we don't create a
22596         different method if we're called several times with the same
22597         arguments.
22598
22599         * loader.c (method_from_methodspec): Use the new
22600         `container->method_hash' here, too.
22601
22602 2004-11-26  Martin Baulig  <martin@ximian.com>
22603
22604         * class.c (inflate_generic_signature): Correctly compute
22605         `res->has_type_parameters'.
22606         (mono_class_vtable): Use the `has_type_parameters' flag to
22607         determine whether we're a generic method.
22608
22609         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
22610
22611 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
22612
22613         * object.c (mono_runtime_run_main): Fix a small memory leak.
22614
22615 2004-11-25  Martin Baulig  <martin@ximian.com>
22616
22617         * class.c (set_generic_param_owner): Fixed the loop.
22618
22619 2004-11-25  Martin Baulig  <martin@ximian.com>
22620
22621         * object.c (mono_class_vtable): Don't create any JIT wrappers for
22622         generic methods.
22623
22624 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
22625
22626         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
22627         names. Fixes #69787.
22628
22629 2004-11-24  Martin Baulig  <martin@ximian.com>
22630
22631         * class.c (mono_class_create_generic_2): If we don't have a
22632         `ginst->parent', inflate `gklass->parent' to get our parent.
22633
22634 2004-11-24  Martin Baulig  <martin@ximian.com>
22635
22636         * reflection.c (compare_genericparam): Correctly sort the
22637         GenericParam table; fixes #69779.
22638
22639 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
22640
22641         * reflection.c: When writing a PE file, don't create a huge
22642         buffer in memory. Just write the arrays we have to the file.
22643         This reduces memory usage.
22644
22645         * metadata-internals.h: MonoDynamicStream pefile is no longer used
22646         globally.
22647
22648 2004-11-17  Martin Baulig  <martin@ximian.com>
22649
22650         * class.c (mono_class_init): Don't setup `class->parent' for
22651         dynamic instances; moved this to mono_class_generic_2().
22652         (mono_class_create_generic): Also set `klass->inited' for dynamic
22653         generic instances.
22654         (mono_class_create_generic_2): Don't do anything for dynamic
22655         generic instances.  Set `klass->parent' here and also call
22656         mono_class_setup_parent() here. 
22657
22658         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
22659         `MonoType *parent' argument; set `ginst->parent' before calling
22660         mono_class_create_generic_2(), so we set the correct parent.
22661
22662 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
22663
22664         * reflection.c: allow getting attributes from ModuleBuilder
22665         (used by ikvm).
22666
22667 2004-11-17  Martin Baulig  <martin@ximian.com>
22668
22669         * class.c (mono_class_create_from_typedef): If a type parameter is
22670         inherited from an outer class, set its owner to that class.
22671
22672 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
22673
22674         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
22675           for (int*) written size. This fixes bug #69592.
22676
22677 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
22678
22679         * icall.c: Added IsAuthenticodePresnet internal call.
22680         * image.c|h: New function that check a MonoImage for an Authenticode
22681         signature in the certificate PE data directory.
22682         * security.c|h: New internal call to ask the runtime if an 
22683         Authenticode signature seems referenced in the PE header.
22684
22685 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
22686
22687         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
22688
22689         * reflection.c (mono_image_create_pefile): Free the assembly streams
22690         after writing out the assembly file.
22691
22692         * object.c (mono_runtime_run_main): Fix small memory leak.
22693
22694         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
22695         property access modifiers. Fixes #69389.
22696
22697 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
22698
22699         * domain.c, object.c, object-internals.h, domain-internals.h,
22700         object.h, marshal.c: keep dynamic code info per domain.
22701
22702 2004-11-15  Martin Baulig  <martin@ximian.com>
22703
22704         * class.c (mono_type_get_name_recurse): Put type arguments in
22705         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22706         see bug #68387.
22707
22708 2004-11-15  Martin Baulig  <martin@ximian.com>
22709
22710         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22711         (mono_class_setup_vtable): When computing `the_cname' for a
22712         generic instance, don't include the namespace since we'd otherwise
22713         add it twice.
22714
22715 2004-11-15  Martin Baulig  <martin@ximian.com>
22716
22717         * class.c (mono_class_create_generic): Changed return type to void.
22718         (mono_class_create_generic_2): New public function; setup
22719         `class->method', `class->field' and `class->interfaces' here
22720         instead of in mono_class_init().
22721
22722         * class.h (mono_class_create_generic): Moved to class-internals.h.
22723
22724 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22725
22726         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22727         rather than writing to memory, write to this file. Right now,
22728         we are just writting into a buffer, and copying that. However
22729         we can avoid the buffer later.
22730
22731         (mono_dynamic_stream_reset): new function
22732
22733         * icall.c, object-internals.h: update for the above.
22734
22735 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22736
22737         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22738         have been using gc'd memory. First it is slower, unlikely
22739         the comment in the source code said, secondly, it increases
22740         our footprint to do it in the gc.
22741
22742         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22743         the method so that it does not have to copy to managed code.
22744
22745 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22746
22747         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22748
22749 2004-11-12  Martin Baulig  <martin@localhost>
22750
22751         * reflection.c (mono_image_create_token): Allow generic method
22752         definitions here, since they may appear in an `.override'; see
22753         gen-98/gen-99 for an example.
22754
22755 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22756
22757         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22758         #69365.
22759
22760         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22761         descriptive.
22762
22763 2004-11-11  Martin Baulig  <martin@ximian.com>
22764
22765         * class.c (mono_class_setup_vtable): In an explicit interface
22766         implementation, the method name now includes the arity.
22767
22768 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22769
22770         * object.c (mono_array_full_copy): Fix warning.
22771
22772 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22773
22774         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22775         mono_class_get_method_from_name() instead.
22776         
22777         * class-internals.h: Added two new types of wrappers. 
22778         Added MonoRemotingTarget enum. Added new trampoline function type, which
22779         takes an additional MonoRemotingTarget value as parameter, so it is
22780         possible to request a trampoline for a specific target.
22781         
22782         * class.c: Added new mono_class_get_method_from_name() method.
22783         
22784         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22785         general remoting sinks and one specific for cross domain calls.
22786         
22787         * debug-helpers.c: Added new wrapper names.
22788         
22789         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22790         of a remote class.
22791         
22792         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22793         
22794         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22795         with several other methods (mono_marshal_get_xappdomain_dispatch,
22796         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22797         and others) can generate a fast remoting wrapper for cross domain calls.
22798         More information can be found in docs/remoting.
22799         Other changes: Removed mono_find_method_by_name, and used
22800         mono_class_get_method_from_name instead.
22801         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22802         is stored in the remoting invoke hashtable.
22803         
22804         * marshal.h: published the new method for getting the xdomain wrapper,
22805         and also added a method for getting the adequate wrapper for a given
22806         method and target.
22807         
22808         * object-internals.h, object.c: Added a couple of methods for capying and
22809         cloning arrays.
22810         Modified mono_install_remoting_trampoline, which takes the new remoting
22811         trampoline that has a remoting target as parameter.
22812         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22813         will return the most suitable vtable for the target.
22814         Added mono_remote_class_vtable, which returns the vtable of a remote class
22815         (which can be the normal remoting vtable or the xdomain vtable).
22816         
22817         * threads.c: the xdomain invoke and dispatch wrappers must also be
22818         protected against interruptions.
22819
22820 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22821
22822         * icall.c: use memmove in BlockCopyInternal when the source and
22823         destination arrays are the same.
22824
22825 2004-11-09  Martin Baulig  <martin@ximian.com>
22826
22827         * class-internals.h (MonoGenericContainer): Removed `method' and
22828         `signature', replaced them with `is_method' and `is_signature'
22829         flags.  Added `context'.
22830
22831         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22832         instead of a `MonoGenericContainer *'.
22833
22834         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22835         for dynamic type parameters.
22836         (mono_metadata_load_generic_params): Setup `container->context'.
22837
22838         * reflection.c (mono_reflection_setup_generic_class): Setup
22839         `tb->generic_container->context'.
22840         (do_mono_reflection_bind_generic_parameters): Use
22841         mono_class_inflate_generic_type() to correctly inflate types,
22842         rather than using our own hack just for MONO_TYPE_VAR.
22843
22844 2004-11-09  Martin Baulig  <martin@ximian.com>
22845
22846         * class.c (mono_class_inflate_generic_method): Small fix; don't
22847         crash here.
22848
22849         * icall.c
22850         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
22851         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
22852         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
22853         (ves_icall_Type_BindGenericParameters): Likewise.
22854         (ves_icall_Type_get_IsGenericInstance): Likewise.
22855         (ves_icall_Type_GetGenericParameterPosition): Likewise.
22856         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
22857         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
22858         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
22859
22860 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
22861
22862         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
22863         assembly versions and public key tokens. Fixes #69113.
22864
22865 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
22866
22867         * metadata.c: fix bug introduced with the type cache changes
22868         on 2004-11-06.
22869
22870 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
22871
22872         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
22873         the MonoClass pointer instead of the token in exception clauses.
22874         * reflection.c: updates for the above and make the code not depend
22875         on the structure of MonoExceptionClause.
22876
22877 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
22878
22879         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22880         Add support for dynamic assemblies. Fixes #69114.
22881
22882         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
22883
22884 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22885
22886         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22887         since most only those methods use it. the code member of
22888         MonoMethodPInvoke was dead, so that can be removed too. Also,
22889         remove inline_count (again, not used), and move slot so that it
22890         can share bits with some other flags. This saves 8 bytes in the
22891         structure and gives us about 50 kb back for mcs helloworld.cs
22892
22893         * *.[ch]: Do naming changes for the above.
22894
22895         * loader.c (mono_method_get_header): Lazily init the header
22896         on first access.
22897         (mono_get_method_from_token): don't init the header here
22898         (mono_free_method): the header may never be allocated
22899
22900         Overall, this saves 150 kb of unmanaged allocations
22901         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22902         memory at runtime.
22903         
22904         * loader.c, loader.h (mono_method_get_header): new accessor.
22905
22906         * *.[ch]: use the above method. Prepares us to lazily load
22907         the header.
22908
22909         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22910         three warnings, which are actual bugs (see 69206).
22911
22912         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22913         unused. Saves a cool 4 bytes / method.
22914
22915 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22916
22917         * metadata.c (builtin_types): Add types for System.Object here.
22918         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22919         for a class or valuetype from klass->this_arg or klass->byval_arg.
22920
22921         On mcs for a hello world, this gets us down from 21836 MonoType's
22922         to 14560.
22923
22924         (mono_metadata_free_type): Account for the above change.
22925
22926 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22927
22928         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
22929         exception instead of asserting if name is null.
22930         (ves_icall_System_AppDomain_GetData): Ditto.
22931
22932 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
22933
22934         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
22935         EnumBuilder.
22936
22937         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
22938         Return NULL when the domain does not have entry_assembly set.
22939
22940         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
22941         Add a 'resource_modules' argument.
22942         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
22943
22944         * reflection.c (mono_reflection_create_runtime_class): Move setting
22945         of wastypebuilder here, so mono_get_type_object () returns a MonoType
22946         for enums too.
22947
22948         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
22949         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
22950         Throw an ArgumentNullException if 'ptr' is null.
22951
22952         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
22953         assemblies here. Fixes #69020.
22954
22955 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
22956
22957         * reflection.c (build_compressed_metadata): Fix the previous patch for
22958         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
22959         the stack.
22960
22961 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
22962
22963         * assembly.c (mono_assembly_names_equal): Allow a match if one of
22964         the cultures is false. Fixes #69090.
22965
22966         * reflection.c (build_compressed_metadata): Fix invalid memory read 
22967         detected by valgrind.
22968         
22969         * reflection.c (mono_reflection_get_type): Avoid triggering a 
22970         TypeResolve multiple times for the same type. Fixes #65577.
22971
22972 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
22973
22974         * marshal.c: Avoid using ldftn to call managed functions. It is
22975         much slower than just a call.
22976
22977         * reflection.c (mono_module_get_object): free the basename we
22978         allocate here from glib.
22979         
22980         * reflection.c (ensure_runtime_vtable): make sure to free
22981         overrides.  Also, we were allocating an array of MonoMethod not an
22982         array of MonoMethod*.
22983
22984         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
22985
22986         * image.c (mono_image_close): free image->guid here.
22987
22988 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
22989
22990         * reflection.c: Fix some spec conformance issues with the PE file
22991         structures so mcs compiled apps run on the Net 2.0 beta.
22992
22993 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
22994
22995         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
22996         Implement this. Fixes #67264.
22997
22998         * debug-helpers.h debug-helpers.c marshal.c: Move 
22999         mono_find_method_by_name to debug-helpers.c.
23000
23001 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
23002
23003         * object.c (mono_release_type_locks): type_initialization_hash is
23004         a GHashTable.
23005
23006         * reflection.c object.c object-internals.h: Fix warnings.
23007
23008         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
23009         without accessors. Fixes #61561.
23010
23011         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
23012         application base from the root domain if not set. Fixes #65641.
23013         (mono_runtime_init): Fix warning.
23014
23015 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23016
23017         * appdomain.c: call mono_thread_pool_init.
23018         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
23019         of worker threads based on the number of CPUs and the environment
23020         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
23021         for non-windows (windows) systems.
23022
23023 2004-10-27  Chris Toshok  <toshok@ximian.com>
23024
23025         * mono-debug-debugger.c (write_class): don't call mono_class_init
23026         here, as even with the check for (!klass->init_pending), we get
23027         into a situation where we're hitting cycles in class
23028         initialization.  Fixes #68816.
23029
23030 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
23031
23032         * image.c: Avoid overwriting values in the loaded_images_hash when an
23033         assembly is loaded multiple times. Fixes #61152.
23034
23035         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
23036         so multiple satellite assemblies for the same name can be loaded.
23037         Fixes #68259.
23038
23039         * mono_domain_assembly_preload: Actually return the loaded assembly, 
23040         not NULL.
23041
23042         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23043         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23044
23045         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23046         pending finalizers are not invoked after the appdomain has been 
23047         unloaded. Fixes #67862.
23048
23049 2004-10-22  Martin Baulig  <martin@ximian.com>
23050
23051         * mono-debug-debugger.c
23052         (mono_debugger_runtime_invoke): Don't box valuetypes.
23053
23054 2004-10-22  Chris Toshok  <toshok@ximian.com>
23055
23056         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23057         don't hide private methods.
23058
23059 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23060
23061         * icall.c: Allows the runtime to "share" (when known) the public key
23062         token of an assembly. This avoid the need to recalculate the token 
23063         (from the public key) in managed code.
23064
23065 2004-10-21  Chris Toshok  <toshok@ximian.com>
23066
23067         * debug-helpers.c (append_class_name): argh, revert last patch.
23068         
23069 2004-10-21  Chris Toshok  <toshok@ximian.com>
23070
23071         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23072         not '/', so that it matches what the debugger uses to look up
23073         methods.
23074
23075 2004-10-21  Martin Baulig  <martin@ximian.com>
23076
23077         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23078         public method; this is called each time an exception is thrown and
23079         allows the debugger to use exception catch points.
23080
23081 2004-10-21  Martin Baulig  <martin@ximian.com>
23082
23083         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23084         the stack pointer and the exception object in some struct and pass
23085         that to the debugger.
23086
23087 2004-10-21  Chris Toshok  <toshok@ximian.com>
23088
23089         * mono-debug-debugger.c (do_write_class): add instance/static
23090         event support.  We don't expose "raise" or "other" yet.
23091         (event_is_static): new method.
23092
23093 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23094
23095         * mono-debug-debugger.c
23096         (mono_debugger_handle_exception): Remove
23097         bogus return value for fussy compilers.
23098
23099 2004-10-20  Martin Baulig  <martin@ximian.com>
23100
23101         * mono-debug-debugger.c
23102         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23103         (mono_debugger_handled_exception): Likewise.
23104
23105 2004-10-20  Martin Baulig  <martin@ximian.com>
23106
23107         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23108         MONO_DEBUGGER_EVENT_EXCEPTION.
23109
23110         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23111         public function to send the debugger a notification for an
23112         exception and inform it about a catch/finally clause.
23113
23114 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23115
23116         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23117         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23118         fix 2.95 build. 
23119
23120         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23121
23122 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23123
23124         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23125         marshalled as [In,Out]. Fixes #58325.
23126
23127 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23128
23129         * reflection.c (mono_method_body_get_object): Implement some fields.
23130
23131 2004-10-12  Martin Baulig  <martin@ximian.com>
23132
23133         * reflection.c (mono_reflection_bind_generic_parameters): Small
23134         fix, correctly retrieve our parent from a generic instance.
23135
23136 2004-10-12  Martin Baulig  <martin@ximian.com>
23137
23138         * metadata.c (mono_metadata_generic_param_equal): We always have
23139         an owner.
23140
23141         * class.c
23142         (mono_class_from_generic_parameter): We need to have an owner.
23143         (my_mono_class_from_generic_parameter): Likewise.
23144
23145         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23146         mono_reflection_create_generic_class() and added a new
23147         mono_reflection_setup_generic_class().  
23148         (mono_reflection_initialize_generic_param): If we're a nested
23149         generic type and inherited from the containing class, set our
23150         owner to the outer class.
23151
23152 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23153
23154         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23155
23156         * reflection.c (mono_method_body_get_object): New function to create
23157         a MethodBody object.
23158
23159         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23160
23161 2004-10-11  Martin Baulig  <martin@ximian.com>
23162
23163         * metadata.c (_mono_metadata_type_equal): Renamed to
23164         do_mono_metadata_type_equal() and made static.
23165
23166 2004-10-11  Martin Baulig  <martin@ximian.com>
23167
23168         * appdomain.c: Bump corlib version number to 28.
23169
23170 2004-10-10  Martin Baulig  <martin@ximian.com>
23171
23172         * class-internals.h
23173         (MonoGenericInst): Added `MonoGenericContainer *container'.
23174         (MonoGenericMethod): Likewise.
23175         (MonoGenericContext): Likewise.
23176         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23177
23178         * metadata.c
23179         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23180         (do_mono_metadata_parse_generic_inst): Likewise.
23181         (mono_metadata_parse_type_full): New public method.  This is the actual
23182         mono_metadata_parse_type() implementation - with an additional
23183         `MonoGenericContainer *' argument.
23184         (mono_metadata_parse_array_full): Likewise.
23185         (mono_metadata_parse_signature_full): Likewise.
23186         (mono_metadata_parse_method_signature_full): Likewise.
23187         (mono_metadata_parse_mh_full): Likewise.
23188         (mono_type_create_from_typespec): Likewise.
23189         (mono_metadata_interfaces_from_typedef_full): New public method;
23190         this is similar to the other _full() methods, but we take a
23191         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23192         (mono_metadata_parse_generic_param): Take an additional
23193         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23194         from that container.
23195         (mono_metadata_generic_param_equal): New static method to compare
23196         two type parameters.
23197         (_mono_metadata_type_equal): New static method; takes an
23198         additional `gboolean signature_only' argument - if true, we don't
23199         compare the owners of generic parameters.
23200         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23201         with a TRUE argument - do a signature-only comparision.
23202
23203         * loader.c: Use the new _full() methods and pass the
23204         MonoGenericContainer to them.
23205
23206         * object-internals.h (MonoReflectionTypeBuilder): Added
23207         `MonoGenericContainer *generic_container' field.
23208         (MonoReflectionMethodBuilder): Likewise.
23209
23210 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23211
23212         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23213         case initial images of dynamic assemblies.
23214
23215         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23216
23217         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23218
23219         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23220         length of event->other array.
23221         (typebuilder_setup_events): Ditto.
23222
23223         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23224         'assembly_by_name' and add an 'assemblies' list.
23225
23226         * assembly.h assembly.c: Add a new search hook for determining whenever
23227         an assembly is already loaded. Use this instead of searching in the
23228         loaded_assemblies list.
23229
23230         * domain.c appdomain.c: Implement the new search hook so loaded 
23231         assemblies are now scoped by appdomain. Fixes #67727.
23232
23233 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23234
23235         * threads.c (mono_thread_attach): Initialize synch_lock field so
23236         mono_thread_detach works again.
23237
23238         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23239         'lib' too. Fixes #63130.
23240
23241 2004-10-06  Jackson Harper  <jackson@ximian.com>
23242
23243         * culture-info-tables.h: regenerated.
23244
23245 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23246
23247         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23248         implemented by other interfaces in the result. Fixes #65764.
23249         
23250         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23251         Handle unloadable modules without crashing.
23252
23253         * image.c (load_modules): Revert the previous patch since modules must
23254         have a fixed index inside the array.
23255         
23256         * image.c (load_modules): Don't include native modules in the modules
23257         array.
23258
23259 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23260
23261         * reflection.h: Add param_defaults field.
23262
23263         * reflection.c: Add support for parameter defaults in dynamic methods.
23264         Fixes #64595.
23265
23266         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23267         an empty string when a type has no namespace. Fixes #64230.
23268
23269 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23270
23271         * tabledefs.h: Added "internal" security actions to support non-CAS
23272         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23273         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23274
23275 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23276
23277         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23278         constructor of abstract class. Fixes #61689.
23279
23280 2004-10-04  Martin Baulig  <martin@ximian.com>
23281
23282         * class-internals.h (MonoGenericContainer): New type.
23283         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23284         `MonoGenericContainer *generic_container'.
23285         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23286         `MonoGenericContainer *generic_container'.
23287
23288         * metadata.c (mono_metadata_load_generic_params): Return a
23289         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23290         removed the `num' argument.
23291
23292 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23293
23294         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23295         for dynamic images.
23296
23297         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23298         machine fields.
23299
23300         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23301
23302         * reflection.c: Save pe_kind and machine values into the generated
23303         image file.
23304
23305         * appdomain.c: Bump corlib version number.
23306
23307         * object-internals.h: Reorganize layout of LocalBuilder.
23308
23309         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23310         New helper function.
23311
23312         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23313         created MonoType for dynamic types. Fixes #66180.
23314
23315 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23316
23317         * threadpool.c: the ares hashtable needs a critical section around it.
23318         this prevents some nasty segfaults
23319
23320 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23321
23322         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23323         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23324         bug 67324).
23325         
23326 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23327
23328         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23329         
23330 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23331
23332         * image.c: Always canonicalize image file names, to avoid loading
23333         the same assembly twice when referenced using a relative path.
23334
23335 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23336
23337         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23338
23339         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23340
23341         * marshal.c: Fix warnings.
23342
23343 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23344
23345         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23346         attempting to marshal the delegate_trampoline as the method_addr.
23347         This patch has a static hashtable of marshalled delegates so that 
23348         we can map delegate_trampoline addresses back to delegates.  This
23349         allows a delegate passed to managed code to be passed back into native
23350         code.  Fixes #67039
23351
23352 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23353
23354         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23355
23356         * reflection.c (method_encode_code): Align method headers properly.
23357         Fixes #66025.
23358
23359 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23360
23361         * marshal.c: In the runtime invoke wrapper, reset the abort
23362         exception if it is cached. This avoids the automatic rethrowal of 
23363         the exception after the catch of the wrapper. Also check for pending
23364         interruptions before calling the managed method. This is done using
23365         the new method emit_thread_force_interrupt_checkpoint, since the
23366         normal checkpoint method is ignored when running the invoke wrapper.
23367         * object.c: If the abort exception is rethrown, set the abort_exc
23368         field of the thread, so it will be rethrown aftere every catch.
23369         * threadpool.c: Only run an interruption checkpoint if what has been
23370         requested is a stop of the thread (aborts will be ignored).
23371         * threads.c: By default, a thread will now never be interrumped while
23372         running the runtime invoke wrapper (this ensures that runtime_invoke
23373         will always return to the caller if an exception pointer is provided).
23374         There is a new special method mono_thread_force_interruption_checkpoint()
23375         to force an interruption checkpoint even if running a protected
23376         wrapper, which is used by the same runtime invoke wrapper to do a check
23377         at a safe point.
23378
23379 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23380
23381         * object.c, object-internals.h: Implemented mono_release_type_locks,
23382         which releases the cctor locks held by a thread.
23383         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23384         by a thread. Added mono_thread_exit() method to be used to safely stop
23385         a thread.
23386
23387 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23388
23389         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23390         Move null check before dereference.  Avoid indexing beyond the end
23391         of the 'modules' array.
23392
23393 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23394
23395         * metadata-internals.h (MonoImage): Add module_count field.
23396         * image.c (load_modules): Set image->module_count.
23397         (mono_image_load_file_for_image): Use image->module_count.
23398         * reflection.c (mono_image_load_module): Append to image->modules array 
23399         of dynamic assembly.
23400         (mono_module_get_object): Fix loop to actually increment index.
23401         Use image->module_count.
23402         * assembly.c (mono_assembly_load_references): Use image->module_count.
23403         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23404         Likewise.
23405
23406 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23407
23408         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23409         Avoid assert on generic types.
23410
23411 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23412
23413         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23414
23415         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23416
23417         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23418         function to convert a MarshalSpec structure to its managed counterpart.
23419
23420         * reflection.c: Fix warnings.
23421         
23422         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23423         field.
23424
23425         * icall.c (mono_create_icall_signature): Fix build.
23426
23427 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23428
23429         * icall.c: Add MakePointType icall.
23430
23431         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23432         warnings.
23433
23434 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23435
23436         * threadpool.c: reuse allocated slots in the queue.
23437
23438 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23439
23440         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23441
23442         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23443
23444         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23445         previous change.
23446
23447         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23448         ThrowOnUnmappableChar.
23449
23450         * icall.c (ves_icall_Type_GetPacking): New icall.
23451
23452 2004-09-24  Martin Baulig  <martin@ximian.com>
23453
23454         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23455
23456 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23457
23458         * appdomain.c:
23459         (mono_domain_set): allow setting a domain that is being unloaded.
23460         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23461         being unloaded.
23462
23463 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23464
23465         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23466         the GetCustomAttributes icall.
23467
23468 2004-09-23  Martin Baulig  <martin@ximian.com>
23469
23470         * object-internals.h (MonoReflectionGenericParam): Replaced
23471         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23472         with `guint32 attrs'.
23473
23474 2004-09-23  Martin Baulig  <martin@ximian.com>
23475
23476         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
23477
23478 2004-09-23  Martin Baulig  <martin@ximian.com>
23479
23480         * object-internals.h (GenericParameterAttributes): New enum.
23481
23482 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23483
23484         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
23485         
23486         * class.c (init_events): Fill out event->other field.
23487
23488         * class.c: Fix warnings.
23489
23490         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
23491
23492 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23493
23494         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
23495         walk which doesn't supply the IL offset.
23496
23497 2004-09-22  Martin Baulig  <martin@ximian.com>
23498
23499         * reflection.c (mono_reflection_setup_internal_class): If we're
23500         System.ValueType, System.Object or System.Enum, set
23501         `klass->instance_size' and create the vtable.
23502         (mono_reflection_create_internal_class): If we're an enum type,
23503         get the base class from our current corlib.
23504
23505 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
23506
23507         * reflection.h (MonoResolveTokenError): New type.
23508
23509         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23510         icall.
23511
23512         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23513
23514 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23515
23516         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
23517         Support also calling constructors, but only for already allocated objects.
23518
23519 2004-09-17  Geoff Norton <gnorton@customerdna.com>
23520
23521         * reflection.c (type_get_qualified_name): If the klass is null
23522         return the typename to avoid a NullRefEx.
23523         (encode_cattr_value): Get the qualified name of the boxed type,
23524         not the underlying enumtype.  Fixes #62984.
23525
23526 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
23527
23528         * marshal.c: Fix problems with previous checkin.
23529
23530 2004-09-21    <vargaz@freemail.hu>
23531
23532         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
23533         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
23534
23535         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
23536
23537 2004-09-21  Geoff Norton <gnorton@customerdna.com>
23538
23539         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
23540         should only return a type for pointers, arrays, and passbyref types.
23541         Fixes bug #63841.
23542
23543 2004-09-21  Martin Baulig  <martin@ximian.com>
23544
23545         * domain.c (mono_debugger_check_runtime_version): New public
23546         function.
23547
23548         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
23549
23550 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
23551
23552         * reflection.c: Added missing sort to the declarative security 
23553         attributes table. MS implementation stops seeing the attributes if the
23554         token number regress in the table (as shown by ildasm and permview).
23555
23556 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
23557
23558         * object-internals.h (MonoReflectionModule): Add 'token' field.
23559         
23560         * reflection.c (mono_reflection_get_token): Add support for Module
23561         and Assembly.
23562         (mono_module_get_object): Set 'token' field.
23563         (mono_module_file_get_object): Set 'token' field.
23564
23565         * icall.c: Add new Assembly and Module icalls.
23566
23567         * appdomain.c: Bump corlib version.
23568
23569 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
23570
23571         * loader.h loader.c class.h class.c: Add helper functions for obtaining
23572         tokens of metadata objects.
23573
23574         * reflection.h reflection.c (mono_reflection_get_token): New function
23575         to obtain the token of a metadata object.
23576
23577         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
23578
23579 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
23580
23581         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
23582         
23583         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
23584
23585 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
23586
23587         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
23588         * object-internals.h: Added 3 MonoArray* members to MonoReflection
23589         AssemblyBuilder to access the permissions set in the class lib.
23590         * reflection.c: Added security attributes encoding step in 
23591         mono_image_build_metadata.
23592         * tabledefs.h: Added new security actions defined in 2.0:
23593         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
23594
23595 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23596
23597         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
23598         macro parameter.
23599
23600 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23601  
23602         * locales.c: nullify the ICU_collator member of CompareInfo when it is
23603           finalized. There where random SIGSEVs at program termination, when
23604           an object being finalized was trying to do a string comparison and
23605           the current culture was already finalized.
23606  
23607 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23608
23609         * threads.c: call thread_cleanup before finishing the thread if we get
23610         there.
23611
23612 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
23613
23614         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
23615         assemblies from the parent. Fixes #65665.
23616
23617 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
23618
23619         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
23620         modifiers.
23621
23622 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
23623
23624         * reflection.h: add prototype for mono_get_dbnull_object
23625         * reflection.c: add prototypes for get_default_param_value_blobs 
23626         and mono_get_object_from_blob for fussier compilers
23627
23628 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
23629  
23630         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
23631         false deadlock checks in class initialization.
23632  
23633 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
23634
23635         * image.c (mono_image_addref): Fix comment.
23636
23637         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
23638         possible.
23639
23640 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
23641
23642         * reflection.c (mono_param_get_objects): Modified to return
23643         ParameterInfo.DefaultValue object.
23644
23645         (get_default_param_value_blobs):
23646         (mono_get_object_from_blob):
23647         (mono_get_dbnull_object): New helper routines. 
23648
23649         * object.c (mono_get_constant_value_from_blob): New helper routine
23650         carved out from get_default_field_value ()
23651
23652         * object-internals.h (mono_get_constant_value_from_blob): Added
23653         function declaration.
23654
23655 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
23656
23657         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
23658         referenced assemblies. Fixes #62135.
23659
23660         * exception.h exception.c (mono_get_exception_file_not_found2): New
23661         helper function.
23662
23663 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
23664
23665         * class.h class.c: Add mono_type_get_underlying_type ().
23666
23667 2004-09-09  Geoff Norton <gnorton@customerndna.com>
23668
23669         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
23670         Fix GetTypes() to support dynamically created assemblies.
23671
23672 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
23673
23674         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
23675         
23676         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
23677         previous patch.
23678
23679         * reflection.h reflection.c loader.c: Allow dynamic construction of
23680         pinvoke methods. Fixes #65571.
23681         
23682         * reflection.c (mono_reflection_get_type): Revert previous change since
23683         it causes regressions.
23684
23685 2004-09-08  Martin Baulig  <martin@ximian.com>
23686
23687         * class.c (class_compute_field_layout): Don't call
23688         mono_class_layout_fields() for open generic instances.
23689
23690 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
23691         * threads.c appdomain.c: fix typo in GC macro
23692
23693 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23694
23695         * threads.c: don't call mono_thread_detach() in start_wrapper(),
23696         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
23697
23698 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
23699
23700         * image.c (mono_image_close): Applied patch from 
23701         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23702         assembly is loaded multiple times from data.
23703         
23704         * image.c (mono_image_open): Fix warning.
23705
23706 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23707
23708         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23709         once. Fixes #58334.
23710         
23711         * reflection.c (mono_reflection_create_runtime_class): Initialize
23712         klass->nested_classes. Fixes #61224.
23713
23714 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23715
23716         * threads.c: sched_yield() on exit, to allow threads to quit.
23717
23718 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23719
23720         * object.c (mono_unhandled_exception): Remove leftover debug code.
23721
23722 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23723
23724         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23725
23726 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23727
23728         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23729         
23730         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23731
23732 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23733
23734         * marshal.c (emit_marshal_array): Null terminate string arrays.
23735         
23736         * marshal.c (raise_auto_layout_exception): Fix warning.
23737
23738         * reflection.c (mono_param_get_objects): Initialize the default value
23739         with DBNull.Value, not null. Fixes #62123.
23740
23741 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23742
23743         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23744         throw an exception with a cute explanation.
23745
23746 2004-09-06  Dick Porter  <dick@ximian.com>
23747
23748         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23749         Close the new process's thread handle, as we don't use it.  The
23750         handle stays around forever otherwise.
23751
23752 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23753
23754         * object.c (arith_overflow): Fix warning.
23755
23756         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23757         calling conventions in method refs. Fixes #65352.
23758
23759         * reflection.c: Fix warnings.
23760
23761 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23762
23763         * icall.c: Add a new icall for Array.Clear
23764
23765 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23766
23767         * object.c: When allocating an array, we have to throw
23768         an overflow exception if any of the lengths are < 0.
23769
23770 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23771
23772         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23773         properly. Also move implementation of string array marshalling to 
23774         managed code. Fixes #42316.
23775
23776 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23777
23778         * assembly.c: provide more information when loading an assembly fails.
23779
23780 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23781
23782         * filewatcher.c: don't expect the development fam package to be
23783         installed.
23784
23785 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23786
23787         * marshal.c: Make a copy of the signature cookie since it will be
23788         freed by the caller.
23789         
23790         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23791
23792         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23793
23794         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23795         marshal specs.
23796
23797         * marshal.c: More refactoring.
23798         
23799         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23800         smaller functions.
23801
23802 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23803
23804         * object.c: In mono_message_invoke, fill the output parameter array after
23805           calling the managed method (it was done before the call). This fixes
23806           bug #59299.
23807
23808 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23809
23810         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23811         as well.
23812
23813 2004-09-02  Martin Baulig  <martin@ximian.com>
23814
23815         * class.c (mono_class_instance_size): Don't allow generic type
23816         definitions or open generic instances.
23817         (mono_class_array_element_size): If we're a value type, call
23818         mono_class_instance_size() on the original class.
23819
23820         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23821         handle generic instances.
23822
23823         * mono-debug-debugger.c (write_type): Handle generic instances
23824         like classes.
23825
23826 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23827
23828         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23829         the allocation request fails. Fixes #65089.
23830
23831         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23832         
23833         * object.c (mono_runtime_free_method): New function to free a dynamic
23834         method.
23835
23836         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23837         delegate trampoline.
23838
23839         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23840         with hasthis as dynamic,
23841
23842         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23843
23844         * domain.c (mono_jit_info_table_remove): New function to remove an
23845         entry from the jit info table.
23846
23847         * class-internals.h (MonoMethod): Add 'dynamic' field.
23848
23849         * loader.c: Fix warnings.
23850
23851 2004-09-01  Martin Baulig  <martin@ximian.com>
23852
23853         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
23854         instead of mono_debugger_lock() because the latter one is a no-op
23855         unless running in the debugger.
23856
23857 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23858
23859         * class.c (class_compute_field_layout): Classes with auto-layout or
23860         reference fields are not blittable.
23861         
23862 2004-09-01  Dick Porter  <dick@ximian.com>
23863
23864         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
23865         mono_image_get_filename() to get the assembly location.
23866
23867         * icall.c:
23868         * metadata.h: Fix compile warnings
23869
23870 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23871
23872         * class.c (class_compute_field_layout): System.Object is blittable.
23873
23874         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
23875         as in/out. Fixes #59909.
23876
23877 2004-09-01  Martin Baulig  <martin@ximian.com>
23878
23879         * metadata.h (MONO_TYPE_ISREFERENCE): Call
23880         mono_metadata_generic_inst_is_valuetype() if we're a generic
23881         instance to check whether our underlying type is a reference type.
23882
23883 2004-09-01  Martin Baulig  <martin@ximian.com>
23884
23885         * metadata.c (mono_type_size): If we're a generic instance, call
23886         mono_class_value_size() for value types.
23887
23888 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23889
23890         * marshal.c: Implement more custom marshalling functionality. Fixes
23891         #64915.
23892
23893 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23894
23895         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23896
23897 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23898
23899         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23900
23901         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23902
23903         * icall.c: Fix some warnings.
23904
23905         * threads.c (abort_appdomain_thread): Fix unref errors.
23906         (mono_thread_current): Fix THREAD_DEBUG define.
23907
23908 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23909
23910         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23911
23912         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23913
23914 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23915
23916         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23917         string arrays.
23918
23919 2004-08-28  Martin Baulig  <martin@ximian.com>
23920
23921         * metadata.c
23922         (mono_metadata_generic_inst_is_valuetype): New public function.
23923
23924         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23925         mono_metadata_generic_inst_is_valuetype() if we're a generic
23926         instance to check whether our underlying type is a valuetype.
23927
23928 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
23929
23930         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
23931         #63768.
23932
23933 2004-08-25  Martin Baulig  <martin@ximian.com>
23934
23935         * loader.c (mono_get_method_from_token): Abstract methods can also
23936         be generic and thus have type parameters.
23937
23938         * metadata-internals.h
23939         (MonoDynamicImage): Added `GPtrArray *gen_params'.
23940
23941         * reflection.c (mono_image_get_generic_param_info): Don't create a
23942         metadata row, just add an entry to the `gen_params' array.
23943         (build_compressed_metadata): Sort the `gen_params' array and then
23944         actually create the metadata.
23945
23946 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23947
23948         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
23949
23950 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
23951
23952         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
23953
23954 2004-08-24  Martin Baulig  <martin@ximian.com>
23955
23956         * class.cs (mono_class_is_subclass_of): Like an interface, a
23957         generic instance also derives from System.Object.
23958
23959 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
23960
23961         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
23962         custom modifiers to be in any order. Fixes #61990.
23963
23964 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
23965
23966         * object.c: Register mono_object_new_fast icall.
23967         
23968         * object.c (mono_class_get_allocation_ftn): Return to calling
23969         mono_object_new_fast, since it seems faster to compute the object 
23970         size in unmanaged code than passing it as a parameter.
23971
23972         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
23973
23974         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
23975         this function with Boehm as the oom handler, so we don't have to check
23976         the result of GC_malloc.
23977
23978         * object.c: Remove checks for oom.
23979
23980         * object.h object.c (mono_class_get_allocation_ftn): New function to
23981         return the icall which can be used to allocate an instance of a given
23982         class. 
23983
23984         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
23985
23986         * class-internals.h: Add 'enabled' field.
23987
23988 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
23989
23990         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
23991
23992 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
23993         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23994         value 0x0010.
23995
23996 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23997
23998         * appdomain.c: use the Tls function for appdomain too,
23999         at Zoltan's request. Actually return in mono_context_get
24000
24001         * appdomain.c, profiler.c, threads.c: use __thread
24002
24003 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
24004
24005         * appdomain.c threads.c: Call GC_CreateThread on windows.
24006
24007         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
24008         multiple libraries since this don't work on windows.
24009
24010 2004-08-18  Martin Baulig  <martin@ximian.com>
24011
24012         * class-internals.h
24013         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
24014         MonoMethodHeader.
24015
24016         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
24017         MonoMethodNormal since we also need it for abstract and interface
24018         methods.
24019
24020         * reflection.c
24021         (build_compressed_metadata): Sort the GenericParam table.
24022         (mono_image_create_token): Added `gboolean create_methodspec'
24023         argument; this is false when generating a MethodImpl token.
24024         (reflection_methodbuilder_to_mono_method): Abstract and interface
24025         methods may also have generic parameters.
24026
24027 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
24028
24029         * appdomain.c: thread local alloc
24030
24031 2004-08-17  Martin Baulig  <martin@ximian.com>
24032
24033         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
24034
24035         * icall.c
24036         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
24037         argument.
24038
24039         * class.c (mono_type_get_full_name): New public function.
24040         (mono_type_get_name): Don't include the type arguments.
24041
24042 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24043
24044         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24045         for inclusion into the mono executable.
24046
24047 2004-08-16  Martin Baulig  <martin@ximian.com>
24048
24049         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24050         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24051
24052 2004-08-14  Martin Baulig  <martin@ximian.com>
24053
24054         * class.c (dup_type): Also copy the `byref' field.
24055
24056 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24057
24058         * reflection.c (create_dynamic_mono_image): Revert the last change 
24059         since it breaks bootstrap.
24060
24061 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24062
24063         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24064
24065         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24066         not free them with g_free.
24067
24068 2004-08-11  Martin Baulig  <martin@ximian.com>
24069
24070         * reflection.c (mono_reflection_setup_internal_class): Also call
24071         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24072
24073 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24074
24075         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24076         called during default (first) AppDomain creation. Keep track of
24077         Evidence when loading assemblies.
24078
24079 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24080
24081         * opcodes.c, opcodes.h: reduce runtime relocations.
24082
24083 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24084
24085         * culture-info.h, locales.c: fixes and chages to sue the new
24086         optimized format of the locale data.
24087         * culture-info-tables.h: regenerated.
24088
24089 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24090         
24091         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24092
24093 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24094
24095         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24096         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24097         * domain-internals.h: icall declaration.
24098         * icall.c: icall registration.
24099         * object-internals.h: New fields in MonoAssembly for CAS.
24100
24101 2004-08-05  Duncan Mak  <duncan@ximian.com>
24102
24103         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24104         CEE_LDELEM_ANY.
24105
24106 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24107
24108         * reflection.c: fix to deal with object[] arrays in custom ctors
24109         (bug #62550).
24110
24111 2004-08-05  Martin Baulig  <martin@ximian.com>
24112
24113         * class.c (mono_class_array_element_size): Added support for
24114         generic instances and correctly handle "recursive" types.
24115
24116 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24117
24118         * assembly.c: Fix warnings.
24119
24120 2004-08-04  Martin Baulig  <martin@ximian.com>
24121
24122         * class.c
24123         (mono_type_get_name_recurse): Added `gboolean include_arity'
24124         argument specifying whether or not we should include the generic
24125         arity in the type name.
24126         (_mono_type_get_name): New static function.
24127         (mono_class_setup_vtable): If we're a generic instance, don't
24128         include the generic arity in the names of explicit method
24129         implementations.        
24130
24131 2004-08-03  Martin Baulig  <martin@ximian.com>
24132
24133         * class.c (mono_type_get_name_recurse): Enclose the generic type
24134         arguments in `<', '>'.
24135
24136 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24137
24138         * gc.c: make GC warning messages use the trace API, they are just
24139         noise to most of the users.
24140
24141 2004-08-03  Martin Baulig  <martin@ximian.com>
24142
24143         * debug-mono-symfile.c (read_string): Correctly read the string.
24144
24145 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24146
24147         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24148         
24149         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24150         icalls.
24151         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24152
24153 2004-07-30  Martin Baulig  <martin@ximian.com>
24154
24155         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24156         Reflect latest symbol writer changes.   
24157
24158 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24159
24160         * object.c: always create an object if null is passed
24161         to Invoke() where a valuetype is expected.
24162
24163 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24164
24165         * marshal.c (mono_marshal_init): make managed
24166         signatures match native ones better for 64bits.
24167
24168 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24169
24170         * appdomain.c: hack to build correctly the private bin path on windows.
24171         Fixes bug #61991.
24172
24173 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24174
24175         * assembly.c: Load mscorlib from the correct framework directory
24176           (mono/<version>/mscorlib.dll).
24177         * appdomain.h: Added prototypes for new functions.
24178         * internals.h: Added some prototypes.
24179         * domain.c: When initializing the runtime, get from the executable and
24180           the configuration files the runtime version that the app supports.
24181           Added support methods for reading app.exe.config. Added list of versions
24182           supported by the JIT. Added two new methods: mono_init_from_assembly,
24183           which initializes the runtime and determines the required version from
24184           the provided exe file, and mono_init_version, which initializes
24185           the runtime using the provided version.
24186         * icall.c: Get machine.config from version-specific directory.
24187         * reflection.c: When generating an image, embed the version number
24188           of the current runtime.
24189
24190 2004-07-28  Dick Porter  <dick@ximian.com>
24191
24192         * socket-io.c
24193         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24194         returned sockaddr size before creating the remote address object.
24195         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24196         61608.
24197
24198 2004-07-28  Dick Porter  <dick@ximian.com>
24199
24200         * locales.c (string_invariant_compare_char): Fix invariant char
24201         compares between upper and lower cases.  Fixes bug 61458.
24202
24203 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24204         
24205         * marshal.c: actually cache stelem.ref wrappers.
24206         
24207 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24208
24209         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24210         sections and remove the mono_cli_rva_map () function.
24211
24212 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24213
24214         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24215         by Geoff Norton (<gnorton@customerdna.com>).
24216
24217 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24218
24219         * class.c: fix class loads for pointer types (typeof(int) !=
24220         typeof(int*)).
24221
24222 2004-07-27  Martin Baulig  <martin@ximian.com>
24223
24224         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24225         reading the debugging information from an external ".mdb" file.
24226
24227 2004-07-24  Martin Baulig  <martin@ximian.com>
24228
24229         * reflection.c (mono_image_get_type_info): Only write a class
24230         layout entry if we actually have a size or a packing size.
24231
24232 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24233
24234         * reflection.c (type_get_fully_qualified_name): 
24235         insert cast to get type checking of ?: with non-gcc compilers
24236
24237 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24238
24239         * rand.c: use g_getenv for both lookups of
24240         MONO_EGD_SOCKET
24241
24242 2004-07-17  Martin Baulig  <martin@ximian.com>
24243
24244         * reflection.c (mono_reflection_bind_generic_method_parameters):
24245         Set `gmethod->reflection_info'.
24246
24247 2004-07-17  Martin Baulig  <martin@ximian.com>
24248
24249         * class.c (mono_class_create_from_typedef): Insert the newly
24250         created class into the hash table before computing the interfaces
24251         since we could be called recursively.
24252
24253 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24254
24255         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24256         function to implement stelem.ref in managed code
24257         * class-internals.h, debug-helpers.c: a new wrapper type
24258         for the above.
24259
24260 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24261
24262         * gc.c: allow GC handles to work even when no GC is compiled in.
24263         Fix part of bug #61134 (GetAddrOfPinnedObject).
24264
24265 2004-07-13  Peter Williams  <peter@newton.cx>
24266  
24267         * process.c (complete_path): Make sure we don't attempt to execute
24268         directories.
24269  
24270 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24271
24272         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24273           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24274           and will add/subtract the hour if needed
24275
24276 2004-07-12  Martin Baulig  <martin@ximian.com>
24277
24278         * reflection.c (mono_field_get_object): If we have
24279         `field->generic_info', take the attributes from
24280         `field->generic_info->generic_type'.    
24281
24282 2004-07-12  Martin Baulig  <martin@ximian.com>
24283
24284         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24285         This function must be called before initializing the runtime.
24286         (mono_debug_init_1): New function; call this after initializing
24287         the runtime, but before loading the assembly.  It tells the
24288         debugger to load corlib and the builtin types.
24289
24290         * mono-debug-debugger.c: Did some larger changes in the debugging
24291         code; support recursive class declarations, make sure we actually
24292         add all classes.
24293
24294 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24295
24296         * debug-helpers.c: undo my previous patch and fixed the real issue in
24297         ../mini/exceptions-x86.c
24298
24299 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24300
24301         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24302         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24303         called from other .cctors.
24304
24305 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24306
24307         * loader.c: Removed the mono_loader_wine_init hack now that we are
24308         doing a managed version of Windows.Forms.
24309
24310 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24311
24312         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24313         threadpool.c, threads.c: remove static data from rootset.
24314
24315 2004-07-09  Dick Porter  <dick@ximian.com>
24316
24317         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24318         Don't do any more processing if the matched length was 0.  It was
24319         increasing the size of the string before.  Fixes bug 61167.
24320
24321 2004-07-09  Dick Porter  <dick@ximian.com>
24322
24323         * socket-io.h:
24324         * socket-io.c
24325         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24326         Add support for SO_PEERCRED if its available.
24327
24328 2004-07-09  Peter Bartok <pbartok@novell.com>
24329         * loader.c: winelib.exe.so error message is now only displayed if
24330         MONO_DEBUG is set. To help us avoid questions when people are trying
24331         out the new Managed.Windows.Forms.
24332
24333 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24334
24335         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24336         for isinst and castclass wrappers.
24337
24338         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24339         to libmetadata from the JIT, so they could be used by the marshalling
24340         code and the interpreter.
24341
24342         * marshal.c: Register marshalling related JIT icalls here instead of
24343         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24344         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24345
24346         * metadata.h: Remove unneeded marshalling conversions.
24347
24348         * opcodes.c: Update for new opcodes.
24349         
24350 2004-07-08  Martin Baulig  <martin@ximian.com>
24351
24352         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24353         (mono_debug_get_domain_data): Make this function static.
24354
24355 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24356
24357         * gc.c, object.h: add nice GC handle API for embedders.
24358
24359 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24360
24361         * reflection.c: more changes for the new api
24362
24363         * object.c: When we reflect on a field w/ a constant value, it
24364         will not have a memory location, so we must access metadata. Also,
24365         allow easier reading of strings so that we can read them from
24366         the constant data.
24367
24368         * class.c (mono_class_layout_fields): no need for literal fields here.
24369
24370         * class-internals.h: api changes for const fields
24371
24372         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24373
24374 2004-07-06  Martin Baulig  <martin@ximian.com>
24375
24376         * mono-debug.h: Increment version number to 44.
24377
24378         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24379         now a gpointer, rewrote this whole method.
24380
24381         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24382         function.  Add information about the wrapper in a new "misc table".
24383
24384         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24385         for the new misc table.
24386
24387 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24388
24389         * metadata-internals.h image.c: Add a cache for helper signatures.
24390
24391         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24392
24393 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24394
24395         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24396         delegates from a delegate. Fixes #61033.
24397         
24398         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24399         marshalling of stringbuilder arrays. Fixes #59900.
24400
24401 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24402
24403         * icall.c: Add EnumBuilder:setup_enum_type icall.
24404
24405 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24406
24407         * icall.c: Added a new icall for the property version of
24408         OffsetOfStringData.
24409
24410 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24411
24412         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24413         it has a constant size across platforms.
24414
24415         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24416         stack trace.
24417
24418 2004-06-29  Martin Baulig  <martin@ximian.com>
24419
24420         * mono-debug.c (mono_debug_add_method): Protect the whole function
24421         in mono_debugger_lock(), not just parts of it.
24422
24423 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24424
24425         * reflection.c: make sure padding bytes in heaps are zeroed.
24426
24427 2004-06-24  David Waite  <mass@akuma.org>
24428
24429         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24430         image.c, loader.c, locales.c, marshal.c, metadata.c,
24431         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24432         string-icalls.c, threads.c: change to C90-style comments from C99 /
24433         C++ -style
24434
24435 2004-06-24  Dick Porter  <dick@ximian.com>
24436
24437         * threads.c
24438         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24439         return createdNew.  Fixes bug 60412.
24440
24441         * threads-types.h: 
24442         * icall.c: Add createdNew parameter to CreateMutex icall
24443
24444 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24445
24446         * reflection.c, object-internals.h: save default value in params.
24447
24448 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24449
24450         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24451         no need to build a new path combining that with the application base.
24452         Fixes bug #60442.
24453
24454 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24455
24456         * reflection.c: fixed minor standard compliance issues.
24457
24458 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24459
24460         * reflection.c: fixed issue with encoding some custom attributes
24461         (arrays in properties and fields, bug #60411).
24462
24463 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24464
24465         * reflection.c: fix start address when copying the public key token.
24466
24467 2004-06-23  Martin Baulig  <martin@ximian.com>
24468
24469         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24470         the `exc' object in a static object to put it into the GC's root set.
24471
24472 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
24473
24474         * reflection.c: make mono_reflection_setup_internal_class ()
24475         callable a second time to setup a new parent class.
24476
24477 2004-06-23  Dick Porter  <dick@ximian.com>
24478
24479         * threads.c: Check for WAIT_IO_COMPLETION return values.
24480
24481 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
24482
24483         * appdomain.c: Removed the g_free on the public key token. Now copy 
24484         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
24485         * assembly.c: Added public key token string value when loading 
24486         assemblies. Fix bug #60439.
24487         * icall.c: Added missing informations (like public key) in 
24488         GetReferencedAssemblies. Fix #60519.
24489         * image.h: Changed definition for public key token from const char*
24490         public_tok_value to guchar public_key_token [17];
24491         * reflection.c: Updated for changes to public key token.
24492
24493 2004-06-22  Lluis Sanchez Gual
24494
24495         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
24496         for the field in base classes.
24497
24498 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24499
24500         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
24501         mark headers as not supported, they are installed only for use by the
24502         debugger.
24503
24504 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
24505
24506         * *.c, *.h: avoid namespace pollution in public headers.
24507
24508 2004-06-21  Martin Baulig  <martin@ximian.com>
24509
24510         * exception.c (mono_get_exception_security): It's in
24511         "System.Security", not in "System".
24512
24513         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24514         the exception classes.
24515
24516 2004-06-21  Martin Baulig  <martin@ximian.com>
24517
24518         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
24519         Protect the exception object from being finalized.
24520
24521 2004-06-21  Martin Baulig  <martin@ximian.com>
24522
24523         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
24524         public function.
24525
24526 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
24527
24528         * reflection.c: Load the assembly in mono_reflection_type_from_name,
24529         if it was not loaded before. Fix parts of #60439.
24530
24531 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
24532
24533         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
24534         code that was broken since Ben's change: wrappers are now
24535         dependent on the method signature only again.
24536
24537 2004-06-21  Martin Baulig  <martin@ximian.com>
24538
24539         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
24540         added interface support.
24541
24542 2004-06-21  Martin Baulig  <martin@ximian.com>
24543
24544         * class.c (mono_vtable_get_static_field_data): New public method.
24545
24546 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
24547
24548         * filewatcher.c : Windows build fix to be compliant with API changes.
24549
24550 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24551
24552         * class.h, class.c: more accessors.
24553         * metadata.h, metadata.c: prepare for hiding MonoType and
24554         MonoMethodSignature: people should use the accessors from now on
24555         outside of the tree.
24556
24557 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24558
24559         * *.c, *.h: more API cleanups.
24560
24561 2004-06-18  Jackson Harper  <jackson@ximian.com>
24562
24563         * assembly.c: Trace loading assemblies.
24564         * loader.c: Trace loading native libraries.
24565         * mono-config.c: Trace loading config files.
24566         
24567 2004-06-18  Dick Porter  <dick@ximian.com>
24568
24569         * locales.c: Tell ICU the lengths of strings, it can cope with
24570         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
24571
24572 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
24573
24574         * image.c: swapped name/filename;
24575
24576 2004-06-18  Martin Baulig  <martin@ximian.com>
24577
24578         * mono-debug-debugger.c (write_class): Write the parent class at
24579         the end of the header.
24580
24581 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24582
24583         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
24584
24585 2004-06-17  Raja R Harinath  <rharinath@novell.com>
24586
24587         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
24588         (bundle_obj): New conditional define.
24589         (BUILT_SOURCES): Remove.
24590         ($(bundle_srcs)): Make parallel-make safe.
24591         (libmonoruntime_la_LIBADD): Make unconditional.
24592         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
24593         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
24594
24595 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
24596
24597         * culture-info-tables.h: It was inconsistent with the latest
24598           supp info files.
24599
24600 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
24601
24602         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
24603         be loaded.
24604
24605         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
24606         with gcc 2.95.
24607
24608 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24609
24610         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
24611         cleaned up public header threads.h.
24612
24613 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24614
24615         * Makefile.am, *.c, *.h: more API cleanups.
24616
24617 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
24618
24619         * Makefile.am: removed monosn from compilation.
24620         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
24621         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
24622         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
24623         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
24624         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
24625         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
24626
24627 2004-06-15  Jackson Harper  <jackson@ximian.com>
24628
24629         * assembly.c: Make locales lower case when searching the GAC for
24630         assemblies. gacutil will always make locales lowercase when
24631         installing so this effectively makes them case insensitive.
24632         
24633 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
24634
24635         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
24636         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
24637           parameter which allows to choose whether the wait can be interrupted or 
24638           not. Also added the method mono_monitor_enter(), which locks the monitor
24639           using an infinite wait and without allowing interruption.
24640           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
24641           interrupted.
24642         * object.h: Added new fields in MonoThread. suspend_event holds the event
24643           used to susped/resume the thread. synch_lock is the lock object to use for
24644           modifying the thread state.
24645         * threads.c: Use the new synch_lock object for locking, instead of "this",
24646           which can generate deadlocks.
24647           Moved thread state change in Thread.Sleep and Thread.Join from managed
24648           to unmanaged code. This avoids a deadlock when the thread was suspended
24649           just after acquiring the thread lock.
24650           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
24651           Implemented Thread.Suspend using an event instead of ThreadSuspend,
24652           which is not fully implemented in the io-layer.
24653         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
24654
24655 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
24656
24657         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
24658         threads-types.h: more API cleanups.
24659
24660 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24661
24662         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
24663         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
24664         threadpool.c, threads.c: first pass at the exported API cleanup.
24665
24666 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
24667
24668         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
24669
24670 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24671
24672         * icall.c: added internalGetHome.
24673
24674 2004-06-14  Dick Porter  <dick@ximian.com>
24675
24676         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
24677         possible to return successfully when '.' or '..' were the only
24678         entries in a directory, but were skipped.  The MonoIOStat was not
24679         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
24680         Fixes bug 59574.
24681
24682 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24683
24684         * reflection.c: make binaries run on .Net 1.1 by default.
24685
24686 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24687
24688         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
24689
24690 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
24691
24692         * marshal.c: keep track of struct size with explicit layout
24693         (bug #59979).
24694
24695 2004-06-12  Martin Baulig  <martin@ximian.com>
24696
24697         * mono-debug-debugger.c: Comment out a debugging g_message().
24698
24699 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24700
24701         * reflection.c, reflection.h: do not free custom attrs that are cached.
24702         * icall.c: use braces to make code clearer.
24703
24704 2004-06-11  Martin Baulig  <martin@ximian.com>
24705
24706         * class.h (MonoInflatedField): New type.
24707         (MonoClassField): Replaced `MonoType *generic_type' with
24708         `MonoInflatedField *generic_info'.
24709
24710         * icall.c
24711         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24712
24713 2004-06-11  Martin Baulig  <martin@ximian.com>
24714
24715         * reflection.c (mono_image_create_method_token): Correctly encode
24716         varargs methods.
24717
24718 2004-06-11  Martin Baulig  <martin@ximian.com>
24719
24720         * metadata.c (mono_metadata_parse_method_signature): When parsing
24721         a MethodDef which has VarArgs, also set sentinelpos if we don't
24722         have any parameters.
24723
24724 2004-06-11  Martin Baulig  <martin@ximian.com>
24725
24726         * verify.c (mono_method_verify): In CEE_CALL, use
24727         mono_method_get_signature() to get the method's signature, unless
24728         we're a PInvoke method.
24729
24730 2004-06-10  Jackson Harper  <jackson@ximian.com>
24731
24732         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24733         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24734         logical name as the supplied path is just a prefix to the gac not
24735         the direct path to it.
24736         
24737 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24738
24739         * reflection.c: make the token for a created method match
24740         the token of the MethodBuilder it was created from
24741         (IKVM requires this behaviour now).
24742
24743 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24744
24745         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24746         reflection.c, socket-io.c: leak fixes.
24747
24748 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24749
24750         * icall.c: handle sentinel pos in vararg methods in position different
24751         from 0.
24752
24753 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24754
24755         * culture-info-tables.h: freshly generated.
24756
24757 2004-06-09  Martin Baulig  <martin@ximian.com>
24758
24759         * loader.c (mono_get_method_constrained): Call `mono_class_init
24760         (constrained_class)'.   
24761
24762 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24763
24764         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24765         any methods. Fixes #59629.
24766
24767 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24768
24769         * culture-info-tables.h: reflecting locale-builder updates.
24770
24771 2004-06-08  Dick Porter  <dick@ximian.com>
24772
24773         * object.h:
24774         * locales.c: Fixed compile warnings, including a real bug in
24775         CompareInfo_internal_compare.
24776         
24777 2004-06-08  Dick Porter  <dick@ximian.com>
24778
24779         * locales.c
24780         (ves_icall_System_Globalization_CompareInfo_internal_index):
24781         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24782         Double-check the resuls of usearches, because ICU currently
24783         ignores most of the collator settings here.  Fixes bug 59720.
24784         
24785 2004-06-08  Dick Porter  <dick@ximian.com>
24786
24787         * locales.c
24788         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24789         Fix memory leak and segfault-causing typo.  No idea how this one
24790         lasted so long without being noticed.
24791
24792 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24793
24794         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24795         any methods. Fixes #59629.
24796
24797 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24798
24799         * assembly.c:
24800         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24801         own the critical section before). Removed dead code (that's done
24802         in the preload hook).
24803
24804         (mono_assembly_load_with_partial_name): call the preload hook.
24805
24806 2004-06-08  Martin Baulig  <martin@ximian.com>
24807
24808         * metadata.c (mono_metadata_signature_alloc): Default
24809         `sentinelpos' to -1.
24810
24811         * reflection.c (mono_image_get_array_token): Likewise.
24812
24813 2004-06-08  Martin Baulig  <martin@ximian.com>
24814
24815         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24816
24817         * metadata.c (mono_metadata_parse_method_signature): When parsing
24818         a MethodDef which has VarArgs, set sentinelpos.
24819
24820         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24821         `gint16' since we're using -1 for non-varargs methods.
24822
24823         * reflection.c
24824         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24825         (method_encode_signature): Added varargs support.
24826         (method_builder_encode_signature): Likewise.
24827         (mono_image_get_varargs_method_token): New static method.
24828         (mono_image_create_method_token): New public method; this is
24829         called via an icall instead of mono_image_create_token() when
24830         calling a varargs method.       
24831
24832 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24833
24834         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24835
24836 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24837
24838         * culture-info-tables.h : Reflecting the latest locale-builder that
24839           fixed empty array representation ({} to {0}).
24840
24841 2004-06-07  Jackson Harper  <jackson@ximian.com>
24842
24843         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24844         looking up extra gac paths. This allows MONO_GAC_PATH to act
24845         exactly like a prefix.
24846         
24847 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24848
24849         * reflection.c (mono_reflection_type_from_name): Make a copy of the
24850         type name before modifying it. Fixes #59405.
24851
24852 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24853
24854         * culture-info.h: added fields for "all datetime patterns".
24855         * locales.c: (  ves_icall_System_Globalization_CultureInfo
24856           _construct_datetime_format ()): fill xxx_patterns fields.
24857         * object.h: added fields for "all datetime patterns" to
24858           MonoDateTimeFormatInfo.
24859         * culture-info-tables.h: reflecting locale-builder updates.
24860
24861 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24862
24863         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
24864         the event has no add and remove methods. Fixes #59629.
24865
24866 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
24867
24868         * object.c: Fixed possible integer overflow when allocating large
24869         strings.
24870
24871 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24872
24873         * culture-info-tables.h: reflecting locale-builder updates.
24874
24875 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24876
24877         * culture-info-tables.h: reflecting locale-builder updates.
24878
24879 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
24880
24881         * culture-info-tables.h: reflecting locale-builder updates.
24882
24883 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
24884
24885         * threads.c: Made Thread.Sleep abortable.
24886
24887 2004-06-02  Martin Baulig  <martin@ximian.com>
24888
24889         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24890
24891         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24892
24893 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24894
24895         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24896
24897 2004-05-30  Jackson Harper  <jackson@ximian.com>
24898
24899         * reflection.c: Do not hardcode assembly versions or public key
24900         tokens anymore. All of this except the corlib section was dead
24901         code anyways.
24902         
24903 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24904
24905         * object.c (mono_runtime_invoke_array): Automatically create boxed
24906         objects for byref valuetypes if needed. Fixes #59300.
24907         
24908         * object.c (mono_method_return_message_restore): Handle 
24909         MONO_TYPE_OBJECT as well.
24910
24911 2004-05-28  Jackson Harper  <jackson@ximian.com>
24912
24913         * reflection.c: The modified type encoding was causing build
24914         problems. Reverted for now.
24915         
24916 2004-05-28  Jackson Harper  <jackson@ximian.com>
24917
24918         * reflection.c/h: Take an assembly ref so that we dont create
24919         fully qualified names when encoding types in the same assembly as
24920         the custom attribute being emitted.
24921         * appdomain.c: Increment version number.
24922         
24923 2004-05-26  Duncan Mak  <duncan@ximian.com>
24924
24925         * icall.c
24926         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24927         Set the full version number (major, minor, build, revision).
24928
24929 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
24930
24931         * marshal.c (emit_struct_conv): increment src/dst after blit
24932         (mono_marshal_get_managed_wrapper,
24933         mono_marshal_get_native_wrapper): make sure we have marshalling
24934         info before marshalling params (info computation affects
24935         blittable)
24936
24937         * class.c (class_compute_field_layout): correctly deal with
24938         blittable
24939         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
24940         value types (as per what windows dows by default)
24941         (mono_class_setup_mono_type): System.ValueType is blittable
24942         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
24943         blittable
24944
24945         * marshal.c (mono_marshal_load_type_info): flag types  as
24946         non-blittable if the native layout doesn't match the managed
24947         layout
24948
24949 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24950
24951         * appdomain.c: don't add stuff in the private search path that is
24952         above the application base. If application base is not set, there's
24953         no private search path.
24954
24955 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
24956
24957         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
24958         byref struct arguments in native->managed marshalling.
24959
24960 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
24961
24962         * marshal.c (mono_marshal_get_runtime_invoke): correctly
24963         cache methods using signature (special case for methods
24964         that are value type or string class)
24965         
24966         * image.c (mono_image_close): clean up allocated GSList's
24967         in runtime_invoke_cache.
24968
24969 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24970
24971         * mono-config.c: set the correct path for mono_cfg_dir on windows when
24972         there's no MONO_CFG_DIR environment variable defined.
24973
24974 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24975
24976         * threads.c: windows version must be >= 0x0500 to include OpenThread.
24977
24978 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
24979
24980         * threadpool.c: Really wait for 500ms after the async call, even if the wait
24981           is interrumped.
24982         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
24983           before waiting for it, and call CloseHandle after the wait to unref it.
24984           This will make sure that handles are not disposed too early.
24985
24986 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24987
24988         * appdomain.c:
24989         * appdomain.h:
24990         * icall.c: removed
24991         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
24992         needed now.
24993
24994         * object.c: se the application_base only for the domain that runs
24995         Main. Fixes bug #59216,
24996
24997 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24998
24999         * appdomain.c:
25000         * object.c: only the domain in which Main is run have
25001         SetupInformation.ConfigurationFile set, so moved a few lines from
25002         appdomain.c to object.c.
25003
25004 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25005
25006         * appdomain.c: we tried to load [name].(dll|exe), but according
25007         to bug #57710, we must also try [culture]/[name].(dll|exe) and
25008         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
25009         There's a test case attached to bug #58922.
25010
25011 2004-05-27  Dick Porter  <dick@ximian.com>
25012
25013         * icall.c:
25014         * file-io.c: Implemented icalls for locking and unlocking regions
25015         in a file.
25016         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
25017         FALSE on error (fixes both compiler warning and real bug.)
25018
25019 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
25020
25021         * culture-info-tables.h: reflecting locale-builder updates.
25022
25023           (Added missing ChangeLog entry for 05/26)
25024
25025 2004-05-27  Jackson Harper  <jackson@ximian.com>
25026
25027         * locales.c: Fix some cut and paste errors.
25028         
25029 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25030
25031         * mono-config.c: set the correct path for config. directory on windows.
25032
25033 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25034
25035         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
25036           on win32.
25037
25038 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25039
25040         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
25041         from pinvoke functions.
25042         
25043         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25044
25045 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25046
25047         * culture-info-tables.h: reflecting locale-builder updates.
25048
25049 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25050
25051         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25052         #59086.
25053
25054 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25055
25056         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25057         * icall.c: Modified icalls for RNG.
25058         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25059         Windows (CryptoAPI).
25060
25061 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25062
25063         * locales.c: Fix build.
25064
25065 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25066
25067         * culture-info-tables.h: reflecting locale-builder updates.
25068
25069 2004-05-25  Jackson Harper  <jackson@ximian.com>
25070
25071         * locales.c: When creating the current culture use the $LANGs
25072         specific culture. So DateTimeFormat and NumberFormat entries are created.
25073         
25074 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25075
25076         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25077         a char array as parameter.
25078
25079 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25080
25081         * image.c: In mono_image_open(), always use an absolute path name to
25082           look for already loaded images.
25083
25084 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25085
25086         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25087         missing in the windows build (like older cygwin include files).
25088
25089 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25090
25091         * icall.c: Fixed check for possible integer overflow in Buffer_
25092         BlockCopy icall. Replaced comments style // by /* */.
25093
25094 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25095
25096         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25097         
25098         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25099         check after MONO_VTADDR. Fixes pinvoke2.exe.
25100
25101         * marshal.h marshal.c metadata.h: Add beginnings of support for
25102         ftnptr -> delegate marshalling.
25103
25104 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25105
25106         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25107         * threads.c: Fix warnings.
25108
25109 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25110
25111         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25112         * icall.c: Registered icalls for Suspend and Resume.
25113         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25114           Thread.Abort.
25115         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25116         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25117         * process.c: Use WaitForSingleObjectEx.
25118         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25119           checkpoints.
25120         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25121           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25122           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25123           background threads. Added basic support for Abort in Windows.
25124           Start new threads using a managed delegate invoke wrapper. This wrapper
25125           has an interruption checkpoint that is needed since an interruption
25126           can be requested before the thread leaves the unmanaged code that starts 
25127           the thread.
25128         * marshal.c: Added interruption checkpoint after every native call, and
25129           also before managed calls for wrappers called from unmanaged code to
25130           go into managed code.
25131         * object.h: Added new field in MonoThread to keep track of interruption
25132           requests.
25133
25134 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25135
25136         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25137         calls.
25138
25139 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25140
25141         * appdomain.c:
25142         * assembly.c:
25143         * gc.c:
25144         * locales.c:
25145         * mono-config.c:
25146         * rand.c: getenv -> g_getenv (windows!)
25147
25148         * process.c: complete_path is also used on non-windows platforms.
25149
25150 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25151
25152         * icall.c: new signature for Process_Start.
25153
25154         * process.[ch]: new signature for Process_Start. If we're on windows
25155         and UseShellExecute is false, we have to search for the program by
25156         ourselves if we don't get a full path.
25157
25158 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25159
25160         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25161         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25162
25163 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25164
25165         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25166         Fixes bug #58373.
25167
25168 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25169
25170         * process.c: use double quotes to quote program name and arguments on
25171         windows. Fixes bug #58575.
25172
25173 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25174
25175         * file-io.c: don't return "." and ".." when using windows Find*File.
25176
25177 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25178
25179         * marshal.c: Don't pass wrappers to message init because method 
25180         addressed used to lookup metadata. part of remoting[2|3] fix.
25181
25182 2004-05-15  Jackson Harper  <jackson@ximian.com>
25183
25184         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25185         path is essentially the same as MONO_PATH except that it points to
25186         GACs instead of lib directories.
25187         * loader.h: The user gac is gone so we dont need function to
25188         enable/disable it.
25189         * mono-config.c: user gac option is now gone.
25190         
25191 2004-05-15  Jackson Harper  <jackson@ximian.com>
25192
25193         * culture-info.h: Make defines more consistent, add calendar data
25194         to the culture info table.
25195         * culture-info-tables.h: Add basic calendar data. Basically
25196         everyone gets default gregorian until all the data is
25197         updated.
25198         * locales.c: Use the new consistent defines. Set calendar data for
25199         culture info objects.
25200         * object.h: add a field for calendar data to CultureInfo
25201         
25202 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25203
25204         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25205         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25206         a signature.
25207         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25208         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25209         an extra param that is the pointer of the method to invoke. The IL for
25210         the invoke method is no longer specific to the method, but to the
25211         signature of the method. Thus, we can share the same code for multiple
25212         methods. This reduces the number of methods that have to be compiled.
25213
25214 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25215
25216         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25217
25218         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25219
25220         * icall.c: Optimize Buffer.BlockCopy.
25221
25222 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25223
25224         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25225         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25226         quote). Changed them to "MMMM yyyy".
25227
25228 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25229
25230         * rand.c
25231         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25232
25233 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25234
25235         * reflection.h: Updated after changes to managed structures.
25236
25237         * appdomain.c: Bump corlib version.
25238
25239 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25240
25241         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25242         windows.
25243
25244 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25245
25246         * Makefile.am: link to ../os/libmonoos.la on windows.
25247
25248         * assembly.c:
25249                 -If MONO_DEBUG, warn about non-existing directories in
25250                 MONO_PATH.
25251                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25252                 compile time variable.
25253                 -Removed init_default_path and call mono_set_rootdir from
25254                 libmonoos.a instead (windows only).
25255
25256         * assembly.h: declare mono_assembly_getrootdir().
25257
25258         * domain.c:
25259         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25260
25261         * loader.c: s/getenv/g_getenv/
25262
25263 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25264
25265         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25266
25267         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25268
25269         * metadata.h: Add new marshalling conversions.
25270
25271         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25272         function.
25273
25274         * reflection.c (mono_reflection_get_type): Lookup the type in all
25275         modules of a multi-module assembly. Fixes #58291.
25276
25277 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25278
25279         * threads.c: Before aborting a background, set the StopRequested
25280         state.  This avoids throwing the Abort exception.
25281         In mono_thread_manage, don't continue with the shutdown until all
25282         aborted threads have actually stopped.
25283
25284 2004-05-10  Jackson Harper  <jackson@ximian.com>
25285
25286         * locales.c: Remove the modifier from culture names.
25287         
25288 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25289
25290         * Makefile.am: monosn is not installed any more. It has been deprecated
25291         in favor of sn.
25292
25293 2004-05-07  Jackson Harper  <jackson@ximian.com>
25294
25295         * locales.c
25296         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25297         Fix array construction, add bailout if the length is 0.
25298
25299 2004-05-07  Dick Porter  <dick@ximian.com>
25300
25301         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25302         machine doesn't have a DNS entry.  Patch by Urs Muff
25303         (umuff@quark.com), fixes bug 57928.
25304
25305 2004-05-06  Jackson Harper  <jackson@ximian.com>
25306
25307         * reflection.c: Handle null PublicTokens properly. alloc mem for
25308         assembly names culture so we dont crash when freeing it.
25309         
25310 2004-05-06  Jackson Harper  <jackson@ximian.com>
25311
25312         * assembly.c: Check the usergac when loading with partial names.
25313         
25314 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25315
25316         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25317         does nothing for now (not required for Linux/Windows) but the class
25318         library can call it (and a newer or modified runtime could need it).
25319         * icall.c: Registred icall.
25320
25321 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25322
25323         * loader.c: prints a message on module loading error we set MONO_DEBUG
25324         environment variable.
25325
25326 2004-05-05  Jackson Harper  <jackson@ximian.com>
25327
25328         * appdomain.c: Handle PublicKeyToken=null properly.
25329         
25330 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25331
25332         * environment.c|h: Added icall ves_icall_System_Environment_
25333         GetOSVersionString to get the current OS version as a string.
25334         * icall.c: Registred icall.
25335
25336 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25337
25338         * object.c: in mono_object_get_virtual_method(), take into account that
25339         non-virtual methods don't have a slot in the vtable. Check needed when
25340         the object is a proxy.
25341
25342 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25343
25344         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25345         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25346
25347         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25348
25349         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25350         passed when a valuetype is expected.
25351
25352         * object.c (mono_unhandled_exception): Only set the exit code if the
25353         exception happens in the main thread. Fixes thread5.exe.
25354
25355         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25356         invalid names. Fixes #58047.
25357
25358 2004-05-03  Jackson Harper  <jackson@ximian.com>
25359
25360         * assembly.c: This line was committed accidently and is unneeded.
25361         
25362 2004-05-03  Jackson Harper  <jackson@ximian.com>
25363
25364         * icall.c: Add new icall for Assembly::LoadWithPartialName
25365         * assembly.c/.h: new function that probes the GAC to load partial
25366         assembly names by Paolo Molaro.
25367         
25368 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25369
25370         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25371         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25372         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25373         full type name.
25374
25375 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25376
25377         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25378         * reflection.c: fix bug when parsing a full type name and Version is not
25379         the last thing in the string.
25380
25381 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25382
25383         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25384         crashes when it is freed.
25385
25386 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25387
25388         * assembly.c: print the compat warning to stderr.
25389
25390 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25391
25392         * assembly.c (mono_assembly_load_references): Add a compatibility
25393         hack to run old applications that might be still referencing the
25394         3300-based assemblies, only do this for System.xxx.
25395
25396 2004-05-01  Jackson Harper  <jackson@ximian.com>
25397
25398         * appdomain.c: If the culture is neutral we set it to "".
25399         
25400 2004-04-29  Jackson Harper  <jackson@ximian.com>
25401
25402         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25403
25404 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25405  
25406         * string-icalls.c: added low overhead function for copying chars
25407         * icall.c: added needed icall for the above function
25408  
25409 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25410
25411         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25412         Environment.GetLogicalDrives.
25413
25414 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25415
25416         * rand.c: try and talk to egd or prngd
25417         for random bytes if opening devices fail.
25418
25419 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25420
25421         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25422         alignment for the type using the native alignment of its members 
25423         instead of using klass->min_align.
25424
25425         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25426
25427 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25428
25429         * file-io.c:
25430         * socket-io.c: added check for sys/aio.h.
25431
25432 2004-04-28  Dick Porter  <dick@ximian.com>
25433
25434         * threads.c: Don't abort a thread thats already aborting, when
25435         terminating everything.
25436
25437 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25438
25439         * icall.c: added 2 new async calls for Socket.
25440
25441         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25442         IO on *nix systems.
25443
25444         * threadpool.c: removed unused variable.
25445
25446 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25447
25448         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25449
25450 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25451
25452         * locales.c: put back string_invariant_tolower () and
25453         string_invariant_toupper ().
25454
25455 2004-04-26 David Waite <mass@akuma.org>
25456
25457         * file-io.h:
25458         * socket-io.h:
25459         * threads.h:
25460         * unicode.h: remove comma from end of enumeration declarations
25461
25462 2004-04-26 David Waite <mass@akuma.org>
25463
25464         * debug-mono-symfile.h:
25465         * decimal.c:
25466         * mono_debug.h:
25467         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25468
25469
25470 2004-04-26  Jackson Harper  <jackson@ximian.com>
25471
25472         * appdomain.c: Increment version number.
25473         
25474 2004-04-26  Jackson Harper  <jackson@ximian.com>
25475
25476         * appdomain.c: Set assembly references public token value when
25477         PublicKeyToken is specified, not the hash_value. Free public token
25478         values when free assembly name data. Previously the public key
25479         token was hex decoded, however we are using hex encoded public key
25480         tokens, so this is not neccasary.
25481         * assembly.c: Lookup assemblies in the gac if their public token
25482         value is set. Add function to allow enabling user gac
25483         lookups. Specify whether or not the assembly was loaded from the
25484         GAC. Compare full assembly names when checking the cache for
25485         assemblies (Temporarily disabled see comment in code). Remove
25486         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
25487         specifies trace-loader they get extra info to stdout on the
25488         loading of assemblies.
25489         * image.h: Add a field for an assembly references public token
25490         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
25491         whether an assembly has been loaded from the GAC.
25492         * image.c: Remove a corlib -> mscorlib name mapping.
25493         * loader.h: Add function to enable/disable the user gac.
25494         * mono-config.c: Check if the usergac is enabled in the config
25495         file.
25496         * icall.c: New icall to determine whether or not an assembly has
25497         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
25498         * tabldefs.h: Add constant for assemblyref flag that specifies a
25499         full public key is used instead of a public token.
25500         * reflection.c: Remove mscorlib -> corlib mappings. Set
25501         PublicTokenValue instead of hash value. This value is a hex
25502         string so it does not need to be expanded.
25503
25504 2004-04-26  Martin Baulig  <martin@ximian.com>
25505
25506         * mono-debug-debugger.c (mono_debugger_initialize): Set
25507         `mono_debugger_initialized' before calling mono_debug_lock().
25508
25509 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25510
25511         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25512           InternalToUpper/InternalToLower.
25513         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25514           removed invariant culture shortcut.  This is now done in managed code.
25515         * locales.c: (string_invariant_toupper/tolower) removed.
25516
25517 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25518
25519         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
25520         Added Poll internal call.
25521
25522         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
25523         call for Poll. Select was too heavy for polling a single socket.
25524
25525         * threadpool.[ch]: added mono_threadpool_cleanup.
25526         * threads.c: use it. Don't use Thread_Abort on windows.
25527
25528 2004-04-23  Martin Baulig  <martin@ximian.com>
25529
25530         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
25531
25532 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
25533
25534         * icall.c: Registred new icalls for key pair protection and added an
25535         icall for Environment.GetFolderPath on Windows.
25536         * security.c|h: Added new icalls for key pair protection.
25537
25538 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25539
25540         * socket-io.c: don't display the non-supported family warning for known
25541         families. Now this is not displayed on windows when checking support
25542         for IPv4/IPv6.
25543
25544 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25545
25546         * class.c: don't display the layout warning for static fields.
25547
25548 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
25549
25550         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
25551         * locales.c, locales.h: Added new icalls for culture-specific
25552         Char.ToLower and Char.ToUpper.
25553
25554 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25555
25556         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
25557         by David Waite.
25558
25559 2004-04-20  Martin Baulig  <martin@ximian.com>
25560
25561         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
25562         of the type name before passing it to mono_reflection_type_from_name().
25563
25564 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
25565
25566         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
25567         encodings here. Fixes #56965.
25568
25569 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
25570
25571         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25572         fix test on strstr result not that I can see anything that
25573         relies on the result.
25574
25575 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
25576
25577         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
25578         Fixes #57081.
25579
25580         * marshal.c (mono_marshal_get_string_encoding): New helper function.
25581
25582         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
25583         function to determine which marshalling to use for strings. Fixes
25584         #56965.
25585
25586         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
25587
25588         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
25589
25590 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
25591
25592         * icall.c: #include mono-config.h
25593
25594 2004-04-15  Jackson Harper  <jackson@ximian.com>
25595
25596         * culture-info-tables.h: Fix date formats for en-US culture.
25597         
25598 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
25599
25600         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
25601         ThreadPool.SetMinThreads.
25602         * threadpool.c: Implemented ThreadPool.GetMinThreads and
25603         ThreadPool.SetMinThreads.
25604
25605 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25606
25607         * mono-config.c: also load the .config file in the directory
25608         where the assembly was found.
25609
25610 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
25611
25612         * assembly.c: load per-assembly config files.
25613         * icall.c: decrapified code to get the config dir and moved to
25614         mono-config.c.
25615         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
25616         per-assembly config files. When doing a dll map lookup give precedence
25617         to the per-assembly data.
25618
25619 2004-04-14  Martin Baulig  <martin@ximian.com>
25620
25621         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
25622         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
25623         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
25624
25625         * mono-debugger-debugger.c: While the debugger is locked, remember
25626         whether the symbol tables have changes and send one single
25627         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
25628
25629 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
25630
25631         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
25632
25633         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
25634         function.
25635
25636         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
25637         account when marshalling string arrays. Fixes #56965.
25638
25639 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
25640
25641         * icall.c: Add new icalls mapping for security.
25642         * security.c|h: Add internal calls for WindowsIdentity,
25643         WindowsImpersonationContext and WindowsPrincipal.
25644
25645 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
25646
25647         * class.c: Added comment to ensure the System.MonoDummy class
25648         is removed when no longer necessary
25649
25650 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
25651
25652         * appdomain.c: Pass arguments to the bootstraping exceptions to
25653         minimize JITed methods at boot
25654
25655         * metadata.c (mono_exception_from_name_two_strings): Allow for the
25656         second string to be null.
25657
25658         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25659         Change the protocol to minimize the JIT methods at startup.  Now
25660         it Returns the internal codepage, if the value of "int_code_page"
25661         is 1 at entry, and we can not compute a suitable code page
25662         number, returns the code page as a string.
25663
25664 2004-04-13  Jackson Harper  <jackson@ximian.com>
25665
25666         * culture-info-tables.h: Fix number of decimal digits for all
25667         english locales.
25668
25669 2004-04-13  Jackson Harper  <jackson@ximian.com>
25670
25671         * icall.c: Clairfy out of sync error message. It is not always
25672         your corlib that is out of sync.
25673
25674 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
25675
25676         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
25677         properties when only the set accessor is overriden. Fixes #55874.
25678
25679 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
25680
25681         * assembly.c (mono_assembly_load_references): Make this thread safe.
25682         Fixes #56327.
25683
25684 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
25685
25686         * monosn.c: Add missing initialization calls.
25687
25688 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
25689
25690         * locales.c:
25691         ves_icall_System_Globalization_CultureInfo_construct_number_format
25692         Fix g_assert so it compiles on fussier compilers re int/ptr
25693         mismatch
25694
25695 2004-04-08  Dick Porter  <dick@ximian.com>
25696
25697         * socket-io.h:
25698         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
25699         53992.  Also rearrange the code so that the internal calls return
25700         an error value and exceptions are thrown from managed code.
25701
25702         * icall.c: Add type info to the socket icalls.
25703
25704 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25705
25706         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25707         owes me a beer.
25708
25709 2004-04-07  Martin Baulig  <martin@ximian.com>
25710
25711         * class.c (mono_class_from_generic_parameter): Don't default
25712         `klass->parent' to `mono_defaults.object_type'.
25713
25714 2004-04-07  Martin Baulig  <martin@ximian.com>
25715
25716         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25717         `param->pklass->reflection_info'.       
25718
25719 2004-04-07  Jackson Harper  <jackson@ximian.com>
25720
25721         * culture-info-tables.h: Fix date separator symbol.
25722         
25723 2004-04-07  Martin Baulig  <martin@ximian.com>
25724
25725         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25726         from System.Type to System.MonoType.
25727
25728 2004-04-07  Martin Baulig  <martin@ximian.com>
25729
25730         * reflection.h
25731         (MonoReflectionGenericParam): Added `has_reference_type' and
25732         `has_value_type' fields.
25733
25734         * reflection.c (mono_image_get_generic_param_info): Encode the
25735         correct flags if we have the `class' or `struct' constraint.
25736
25737 2004-04-07  Martin Baulig  <martin@ximian.com>
25738
25739         * reflection.h
25740         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25741
25742 2004-04-07  Jackson Harper  <jackson@ximian.com>
25743
25744         * appdomain.c: Revert extra patches, just wanted to bump the
25745         version number.
25746         
25747 2004-04-07  Jackson Harper  <jackson@ximian.com>
25748
25749         * Makefile.am: Add culture-info private headers.
25750         * icall.c: Add new icalls for contructing locales.
25751         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25752         * locales.h: Declare new culture info construction methods.
25753         * object.h: Add new fields used to avoid the CultureMap to
25754         MonoCultureInfo.
25755         * culture-info.h: Definition of structs used in the culture info
25756         tables.
25757         * culture-info-tables.h: Autogenerated tables that contain culture
25758         info data. This file was generated with the locale-builder tool.
25759         * appdomain.c: Incement corlib version number.
25760         
25761 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25762
25763         * appdomain.c: (mono_runtime_init) move mono_thread_init
25764         to before mono_object_new calls so critical sections
25765         are initialized before use.
25766
25767 2004-04-07  Martin Baulig  <martin@ximian.com>
25768
25769         * icall.c
25770         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25771         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25772         (ves_icall_MonoGenericParam_initialize): Removed.
25773         (monogenericparam_icalls): Removed.
25774         (generictypeparambuilder_icalls): Added new table for
25775         System.Reflection.Emit.GenericTypeParameterBuilder.
25776
25777         * reflection.c
25778         (mono_reflection_define_generic_parameter): Removed.
25779         (mono_reflection_initialize_generic_parameter): This is now called
25780         from GenericTypeParameterBuilder's .ctor.
25781
25782 2004-04-06  Martin Baulig  <martin@ximian.com>
25783
25784         * class.c (mono_class_init): Don't inflate nested classes in a
25785         generic instance.
25786         (mono_type_get_name_recurse): Include the generic arguments for
25787         generic instances and generic type declarations.
25788         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25789         (_mono_class_get_instantiation_name): Removed.
25790         (mono_class_create_generic): Always use `gklass->name' as our name.
25791
25792         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25793
25794         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25795         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25796         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25797         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25798         closed generic methods here.
25799
25800         * reflection.c
25801         (mono_reflection_generic_inst_get_nested_types): Removed.
25802         (inflate_mono_method): Copy the generic parameters from the
25803         MonoMethodHeader into out MonoGenericMethod.
25804
25805 2004-04-06  Martin Baulig  <martin@ximian.com>
25806
25807         * row-indexes.h
25808         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25809
25810         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25811
25812         * reflection.c (build_compressed_metadata): If we have any entries
25813         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25814         set the header version to 1.1.
25815
25816 2004-04-06  Martin Baulig  <martin@ximian.com>
25817
25818         * class.c (mono_class_init): If we're a generic instance,
25819         initialize our nested classes, too.
25820         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25821         suffix. 
25822
25823 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25824
25825         * process.c: quote the argument passed to the shell on windows.
25826
25827 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25828
25829         * threads.c (mono_alloc_special_static_data): Allow this to be
25830         called during startup.
25831
25832 2004-04-02  Martin Baulig  <martin@ximian.com>
25833
25834         * icall.c
25835         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25836
25837 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25838
25839         * icall.c: Fix build.
25840
25841 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25842
25843         * Makefile.am: Added security.c|h.
25844         * icall.c: Added icall for get_UserName;
25845         * security.c: New file for security related icalls. Added function
25846         get_UserName for System.Environment (fix #56144).
25847         * security.h: New. Header file for security.c
25848
25849 2004-04-02  Dick Porter  <dick@ximian.com>
25850
25851         * icall.c: Deleted the icalls that were obsoleted some time ago
25852         by the ICU string code, and which were mixed into the icall
25853         rearranging.  Fixes bug 55969.
25854
25855         * string-icalls.h: 
25856         * string-icalls.c: Deleted the code that those icalls reference.
25857
25858 2004-04-01  Martin Baulig  <martin@ximian.com>
25859
25860         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
25861
25862         * class.c (mono_class_from_generic_parameter): Don't set 
25863         TYPE_ATTRIBUTE_INTERFACE.
25864         (my_mono_class_from_generic_parameter): Likewise.
25865
25866 2004-04-01  Martin Baulig  <martin@ximian.com>
25867
25868         * loader.c (find_method): Added an optional `MonoClass *ic'
25869         argument to search in a specific interface.
25870         (mono_get_method_constrained): New public function.
25871
25872 2004-04-01  Martin Baulig  <martin@ximian.com>
25873
25874         * reflection.c (mono_image_get_generic_field_token): Use the
25875         `handleref' cache here.
25876
25877 2004-04-01  Martin Baulig  <martin@ximian.com>
25878
25879         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
25880
25881         * reflection.c (create_generic_typespec): Use the `typespec' hash
25882         here, not the `typeref' one.    
25883
25884 2004-04-01  Martin Baulig  <martin@ximian.com>
25885
25886         * class.c (mono_class_inflate_generic_type): Moved the
25887         functionality into a new static inflate_generic_type() which
25888         returns NULL if it didn't do anything.  Only increment the
25889         `mono_stats.inflated_type_count' if we actually inflated
25890         something.
25891         (mono_class_get_full): Check the classes type to see whether we
25892         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25893
25894 2004-04-01  Jackson Harper  <jackson@ximian.com>
25895
25896         * reflection.c: Set culture for assembly references.
25897         
25898 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25899
25900         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25901
25902 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25903
25904         * assembly.c:
25905         (do_mono_assembly_open): the critical section also covers
25906         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25907
25908 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25909
25910         * threads.c:
25911         (mono_manage_threads): abort the background threads when finishing.
25912         Fixes bug #47232.
25913
25914 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25915
25916         * gc.c: only close the done_event handle if there was no timeout.
25917         C-ified comments.
25918
25919 2004-03-30  Martin Baulig  <martin@ximian.com>
25920
25921         * icall.c (icall_entries): It's called "System.Activator", not
25922         "System.Activation".    
25923
25924 2004-03-30  Martin Baulig  <martin@ximian.com>
25925
25926         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25927         (mono_class_create_from_typespec): Likewise.
25928
25929 2004-03-30  Martin Baulig  <martin@ximian.com>
25930
25931         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
25932         `has_ctor_constraint' and `initialized'.
25933
25934 2004-03-30  Martin Baulig  <martin@ximian.com>
25935
25936         * reflection.c (encode_new_constraint): New static function to add
25937         the constructor constraint attribute to a type parameter.
25938         (encode_constraints): Call encode_new_constraint() if necessary.
25939
25940         * reflection.h
25941         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
25942
25943         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
25944         
25945 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
25946
25947         * reflection.c, icall.c: add support for pinning variables. 
25948
25949 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
25950
25951         * marshal.c (mono_marshal_get_managed_wrapper):
25952         init bool local with zero rather than null.
25953
25954 2004-03-29  Martin Baulig  <martin@ximian.com>
25955
25956         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
25957         the "official" behavior here.
25958         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
25959
25960 2004-03-29  Martin Baulig  <martin@ximian.com>
25961
25962         * icall.c: Reflect latest API changes.
25963
25964 2004-03-29  Martin Baulig  <martin@ximian.com>
25965
25966         * loader.c (mono_get_method_from_token): Also call
25967         mono_metadata_load_generic_params () for abstract and interface
25968         methods; replace the type arguments in the method signature with
25969         the ones which are loaded from the metadata.
25970
25971 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
25972
25973         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
25974         of the lock is not the current thread. MS.NET don't do it, in spite of
25975         what the documentation says. See bug #56157.
25976
25977 2004-03-28  Martin Baulig  <martin@ximian.com>
25978
25979         * class.c (mono_class_init): Don't call init_properties() and
25980         init_events() for generic instances; set `prop->parent' when
25981         inflating properties.
25982
25983         * reflection.c (mono_generic_inst_get_object): Call
25984         `mono_class_init (ginst->klass)'.
25985         (mono_type_get_object): Only create a MonoGenericInst if your
25986         generic type is a TypeBuilder.
25987         (do_mono_reflection_bind_generic_parameters): Only set
25988         `ginst->is_dynamic' if our generic type is a TypeBuilder.
25989
25990 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
25991
25992         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
25993         Fixes #56091.
25994
25995 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25996
25997         * icall.c: added Kill_internal icall.
25998         * process.[ch]: added Kill_internal icall.
25999
26000 2004-03-25  Martin Baulig  <martin@ximian.com>
26001
26002         * class.h (MonoStats): Added `generic_instance_count',
26003         `inflated_method_count', `inflated_type_count' and
26004         `generics_metadata_size'.       
26005
26006 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26007
26008         * reflection.c: no warnings now.
26009
26010 2004-03-25  Martin Baulig  <martin@ximian.com>
26011
26012         * class.c (mono_class_get_full): New public function; does a
26013         mono_class_get(), but also takes a `MonoGenericContext *'.
26014
26015         * loader.c (mono_field_from_memberref): Renamed to
26016         `field_from_memberref', made static and added `MonoGenericContext *'
26017         argument.
26018         (mono_field_from_token): Added `MonoGenericInst *' argument.
26019         (method_from_memberef): Likewise.
26020         (mono_get_method_from_token): Likewise.
26021         (mono_get_method_full): New public function; does a
26022         mono_get_method(), but also takes a `MonoGenericContext *'.
26023
26024         * verify.c (mono_method_verify): Get the method's generic context
26025         and pass it to mono_field_from_token(), mono_get_method_full() and
26026         mono_class_get_full().
26027
26028 2004-03-25  Martin Baulig  <martin@ximian.com>
26029
26030         * class.c (mono_class_inflate_generic_type): Take a
26031         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
26032         `MonoGenericMethod *'.
26033
26034 2004-03-25  Martin Baulig  <martin@ximian.com>
26035
26036         * loader.h (MonoMethodInflated): Store the MonoGenericContext
26037         instead of the MonoGenericMethod here.
26038
26039 2004-03-25  Martin Baulig  <martin@ximian.com>
26040
26041         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
26042         each time we create a new MonoGenericInst, we also create a new
26043         context which points back to us.
26044
26045         * class.c (inflate_method): Use `ginst->context' instead of
26046         creating a new context.
26047
26048         * loader.c (method_from_memberref): Use
26049         `klass->generic_inst->context' instead of creating a new context.
26050
26051 2004-03-25  Martin Baulig  <martin@ximian.com>
26052
26053         * class.h (MonoGenericContext): New struct.
26054         (MonoGenericMethod): Removed `generic_inst'.
26055
26056         * class.c (mono_class_inflate_generic_method): Take a
26057         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26058
26059 2004-03-25  Martin Baulig  <martin@ximian.com>
26060
26061         * loader.h (MonoMethodInflated): New typedef.
26062
26063         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26064         `generic_param_count' consume just 30 bits, added `is_inflated'
26065         and `has_type_parameters' flags (one bit each).
26066
26067         * class.c (mono_class_inflate_generic_method): Create a
26068         MonoMethodInflated instead of a MonoMethodNormal and set
26069         `is_inflated' in the method signature.
26070
26071         * class.h (MonoGenericMethod): Removed `generic_method'.
26072
26073 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26074
26075         * image.c: Make sure the name of a MonoImage is always an absolute path.
26076           This fixes bug #54415.
26077
26078 2004-03-24  Martin Baulig  <martin@ximian.com>
26079
26080         * class.c (mono_class_setup_vtable): If we're a generic instance,
26081         use our generic type's vtable size.
26082
26083 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26084
26085         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26086         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26087         problems.
26088
26089 2004-03-23  Martin Baulig  <martin@ximian.com>
26090
26091         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26092         `MonoEvent *events'.
26093
26094         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26095         (typebuilder_icalls): Added "get_event_info"; calls
26096         mono_reflection_event_builder_get_event_info(). 
26097
26098         * reflection.c (mono_reflection_generic_inst_initialize): Added
26099         `MonoArray *events'.
26100         (mono_reflection_event_builder_get_event_info): New function.
26101
26102 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26103
26104         * object.h: add mono_type_initialization_init
26105
26106         * object.c (mono_runtime_class_init): 
26107         implement class constructor synchronization rules
26108         to cope with threading issues.  
26109         add mono_type_initialization_init
26110
26111         * appdomain.c (mono_runtime_init): call 
26112         mono_type_initialization_init
26113
26114         * class.h: removing initializing field from MonoVTable
26115
26116 2004-03-23  Martin Baulig  <martin@ximian.com>
26117
26118         * class.c (my_mono_class_from_generic_parameter): Use
26119         `param->name' if it's not NULL. 
26120
26121 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26122
26123         * class.c: do not insert non-virtual methods in the vtable.
26124         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26125         that means the method is non-virtual. This never would have
26126         happened before.
26127
26128 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26129
26130         * profiler.c: Added lock for accessing coverage_hash.
26131
26132 2004-03-22  Martin Baulig  <martin@ximian.com>
26133
26134         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26135         `method->method->signature->generic_param_count != 0' to make it
26136         work for interface methods.
26137
26138 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26139
26140         * process.c: quote the string passed to the shell using g_shell_quote.
26141
26142 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26143
26144         * threads.c:
26145         (mono_threads_manage): don't remove the finalizer thread and self
26146         from the threads hash table so that mono_thread_manage can be called
26147         more than once.
26148
26149 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26150
26151         * process.c: quote the arguments when UseShellExecute is true. Fixes
26152         bug #55790.
26153
26154 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26155
26156         * threads.c: set mono_thread_detach as a cleanup routine for every
26157         thread. This way it's always executed upon thread termination, either
26158         aborted or finished normally. No more xsp hangs!
26159
26160 2004-03-17  Martin Baulig  <martin@ximian.com>
26161
26162         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26163         `int count_nested' and a `MonoType **nested'.
26164
26165         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26166         most of the functionality into a new static
26167         do_mono_reflection_bind_generic_parameters() and don't take a
26168         `MonoType *nested_in' argument any more.  Don't compute nested
26169         types here.
26170         (mono_reflection_generic_inst_get_nested_types): New public method
26171         to get nested types.
26172
26173         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26174         we're a nested class.
26175
26176         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26177         mono_reflection_generic_inst_get_nested_types() to compute the
26178         nested types.
26179
26180 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26181
26182         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26183         descriptive error message under windows.
26184         
26185 2004-03-17  Martin Baulig  <martin@ximian.com>
26186
26187         * class.c (dup_type): Added `const MonoType *original' argument;
26188         copy the attrs from the original type.
26189
26190 2004-03-17  Martin Baulig  <martin@ximian.com>
26191
26192         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26193         `m->generic_inst_cache' here.
26194
26195 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26196
26197         * exception.h exception.c: Add stack_overflow_exception.
26198
26199 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26200
26201         * threadpool.c:
26202         (overlapped_callback): call SetEvent *after* invoking the callback.
26203         No need to call CloseHandle.
26204
26205 2004-03-16  Martin Baulig  <martin@ximian.com>
26206
26207         * reflection.c (mono_image_get_fieldref_token): Take a
26208         `MonoReflectionField *' instead of a `MonoClassField *' and a
26209         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26210
26211 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26212
26213         * appdomain.c: don't add the culture to the filename we're looking for
26214         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26215
26216 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26217
26218         * locales.c: don't ignore symbols when doing case insensitive compares.
26219         Thanks Dick! Fixes bug #54046.
26220
26221         * threads.c: surround 'threads' usage with enter/leave in
26222         mono_thread_manage.
26223
26224 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26225
26226         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26227         implicitly marshalled as [Out]. Fixes #55450.
26228
26229         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26230         an exception.
26231
26232 2004-03-16  Martin Baulig  <martin@ximian.com>
26233
26234         * class.c (mono_class_from_generic_parameter): Use the actual
26235         parameter name. 
26236
26237 2004-03-16  Martin Baulig  <martin@ximian.com>
26238
26239         * reflection.c (type_get_signature_size): New static function.
26240         Compues the size of the type in a method signature.
26241         (method_get_signature_size): New static function; calls
26242         type_get_signature_size() to compute the actual size of the
26243         method's signature.
26244         (method_encode_signature): Use method_get_signature_size() to get
26245         the signature's size rather than using `nparams * 10'.
26246
26247 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26248
26249         * file-io.h: define here WapiOverlapped on windows. I don't want the
26250         regular OVERLAPPED one.
26251
26252         * file-io.c:
26253         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26254         Disabling AIO on windows.
26255
26256 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26257
26258         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26259         bug #55385.
26260
26261 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26262
26263         * appdomain.c: upgraded corlib version.
26264
26265         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26266         and BeginWrite. Allow opening files for asynchrnous operations.
26267
26268         * file-io.h: new struct that maps FileStreamAsyncResult.
26269         * icall.c: added new icalls.
26270         * process.[ch]: support setting child process environment variables
26271         and use the SHELL or COMSPEC when UseShellExecute is true.
26272
26273         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26274         callback for async. IO is here and also BindHandle.
26275
26276         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26277         from here.
26278
26279 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26280
26281         * reflection.c (create_custom_attr): Allow len == 0.
26282
26283         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26284         computation on big-endian machines.
26285
26286 2004-03-13  Martin Baulig  <martin@ximian.com>
26287
26288         * class.h (MonoGenericInst): Added `int count_ifaces'.
26289
26290         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26291         `ginst->count_ifaces' instead `klass->interface_count' since we
26292         may get called before the vtable is created.
26293
26294         * loader.c (mono_method_get_param_names): If we're a generic
26295         instance, return and don't initialize the class.
26296
26297         * reflection.c (mono_reflection_setup_generic_class): Don't call
26298         ensure_runtime_vtable().
26299         (mono_reflection_bind_generic_parameters): Set
26300         `ginst->count_ifaces'.
26301
26302 2004-03-11  Jackson Harper <jackson@ximian.com>
26303
26304         * icall.c:
26305         * unicode.c:
26306         * unicode.h: Remove unused System.Char icalls.
26307         
26308 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26309
26310         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26311         code when we P/Invoke the first library in Windows.Forms, instead
26312         of when we first open the assembly.
26313
26314         * assembly.c: Drop the lookup from here.
26315
26316 2004-03-10  Martin Baulig  <martin@ximian.com>
26317
26318         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26319         class for properties, fields and events.  Finally fixes #54945.
26320
26321 2004-03-10  Martin Baulig  <martin@ximian.com>
26322
26323         * metadata.c (mono_metadata_class_equal): New static function;
26324         checks whether two generic instances or two generic parameters are
26325         equal.
26326         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26327         compare classes.        
26328
26329 2004-03-10  Martin Baulig  <martin@ximian.com>
26330
26331         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26332
26333         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26334         argument and write it into the `reflection_info' field.
26335
26336         * icall.c
26337         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26338         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26339
26340 2004-03-09  Jackson Harper  <jackson@ximian.com>
26341
26342         * char-conversions.h: use 8 bits for numeric data its all we need
26343         * icall.c: numeric data is only 8 bits now.
26344
26345 2004-03-09  Martin Baulig  <martin@ximian.com>
26346
26347         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26348
26349         * class.c (init_properties, init_events): Initialize the new
26350         `parent' field.
26351
26352         * reflection.c (typebuilder_setup_properties): Likewise.
26353         (typebuilder_setup_events): Likewise.
26354
26355         * reflection.h (MonoEventInfo): Replaced `parent with
26356         `declaring_type' and `reflected_type'.
26357
26358         * icall.c (ves_icall_get_property_info): Distinguish between
26359         declaring and reflected type.
26360         (ves_icall_get_event_info): Likewise.
26361
26362 2004-03-09  Martin Baulig  <martin@ximian.com>
26363
26364         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26365         (ves_icall_Type_GetField): Correctly set field->klass.
26366
26367 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26368
26369         * loader.h: Fix warning.
26370
26371 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26372
26373         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26374         library routine if present.  Notice that it will still continue
26375         executing even if its missing, for those working on the Gtk#
26376         edition of Windows.Forms.
26377
26378         * assembly.c (do_mono_assembly_open): If loading the
26379         System.Windows.Forms call mono_loader_wini_init.
26380
26381 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26382
26383         * class.h: Added MonoRemoteClass struct.
26384         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26385         function for MonoStrings.
26386         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26387         Added internal call for getting the proxy type.
26388         * marshal.c: Get the type of transparent proxies from its remote_class.
26389         Added methods that generate the IL for type checks and casts:
26390         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26391         mono_marshal_get_proxy_cancast.
26392         * marshal.h: Declaration of the previous new methods.
26393         * object.c: Added new moethods for creating and updating MonoRemoteClass
26394         instances: mono_remote_class, mono_upgrade_remote_class, 
26395         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26396         * verify.c: FIx transparent_proxy_fields layout.
26397         * appdomain.c: Bump corlib version.
26398
26399 2004-03-04  Jackson Harper  <jackson@ximian.com>
26400
26401         * icall.c: Add icall to access char conversion tables.
26402         * char-conversions.h: Character conversion tables.
26403         * Makefile.am: Add char-conversions.h private header file.
26404         
26405 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26406
26407         * appdomain.c (unload_thread_main): Increase unloading timeout to
26408         10 sec as a temporary workaround for Nant problems.
26409
26410 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26411
26412         * gc.c: Add checks for GC_enable and GC_disable.
26413
26414         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26415         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26416         (bug #54988).
26417         
26418 2004-02-27  Martin Baulig  <martin@ximian.com>
26419
26420         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26421         `MonoReflectionType *' instead of a `MonoType *'.
26422
26423 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26424
26425         * gc.c (run_finalize): Avoid finalizing the object representing the
26426         finalizer thread.
26427         (finalizer_thread): Fix warning.
26428
26429 2004-02-25  Martin Baulig  <martin@ximian.com>
26430
26431         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26432         argument for nested types.
26433         (mono_class_create_generic): Added support for nested generictypes.
26434
26435         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26436         `GList *nested'.
26437
26438         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26439
26440         * reflection.c (method_encode_signature): Increase the minimum
26441         value of `size' from 10 to 11.
26442         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26443         and `MonoType **types' arguments instead of the `MonoArray
26444         *types'; added `MonoType *nested_in'.  Recursively instantiate
26445         nested classes. 
26446
26447 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26448
26449         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26450         stack_overflow_ex members which are used by exception handling.
26451
26452         * appdomain.c (mono_runtime_init): Initialize the new members.
26453
26454         * gc.c (mono_gc_enable): New helper function.
26455         * gc.c (mono_gc_disable): New helper function.
26456
26457 2004-02-23  Martin Baulig  <martin@ximian.com>
26458
26459         * icall.c: I must have been really stupid - make it actually work
26460         this time ;-)
26461
26462 2004-02-23  Martin Baulig  <martin@ximian.com>
26463
26464         * loader.c (method_from_memberref): Only inflate the method if
26465         it's in another klass.
26466
26467 2004-02-23  Martin Baulig  <martin@ximian.com>
26468
26469         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26470         (mono_class_init): If we're a generic instance and an interface,
26471         compute `class->interface_id'; also create `class->interfaces'
26472         here and inflate them.
26473
26474         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
26475         `ginst->is_open'.
26476         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
26477
26478         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
26479
26480 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
26481
26482         * reflection.c (method_encode_code): Improved the error message
26483         generated by the exception.
26484
26485 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26486
26487         * icall.c: Martin did not do what he said in the ChangeLog for
26488         2004-02-18, but put back the changes for properties and events.
26489         Commenting those changes out again and adding comment to bug #54518.
26490         
26491         * process.c: removed warning.
26492
26493 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
26494
26495         * marshal.c (emit_struct_conv): Print an error message instead of
26496         asserting when a type does not have the StructLayout attribute.
26497
26498 2004-02-20  Martin Baulig  <martin@ximian.com>
26499
26500         * reflection.c (mono_type_get_object): Also use the cache for
26501         generic instances.
26502         (mono_reflection_bind_generic_parameters): Always compute
26503         `ginst->ifaces'.        
26504
26505 2004-02-20  Martin Baulig  <martin@ximian.com>
26506
26507         * class.h (MonoGenericMethod): Removed `klass'.
26508
26509         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26510         *klass' argument.
26511
26512 2004-02-20  Martin Baulig  <martin@ximian.com>
26513
26514         * reflection.c (method_encode_methodspec): Actually use the
26515         uninflated signature for the memberref.
26516
26517 2004-02-20  Martin Baulig  <martin@ximian.com>
26518
26519         * class.h (MonoGenericMethod): Removed `declaring'.
26520
26521         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
26522         is NULL, compute it here.
26523
26524 2004-02-20  Martin Baulig  <martin@ximian.com>
26525
26526         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
26527
26528         * metadata.c (mono_metadata_generic_inst_hash): New method.
26529         (mono_metadata_generic_inst_equal): New method.
26530
26531         * reflection.c (mono_reflection_bind_generic_parameters): Use the
26532         `klass->image->generic_inst_cache' cache to avoid creating
26533         duplicate MonoGenericInst's.
26534
26535         * class.c (mono_class_inflate_generic_type): Use the cache.
26536
26537 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
26538
26539         * object.c: fixed gc descriptor calculation for embedded valuetypes.
26540
26541 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26542
26543         * icall.c: added Socket.WSAIoctl icall.
26544
26545         * socket-io.[ch]: implemented
26546         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
26547
26548 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26549
26550         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
26551
26552 2004-02-18  Urs C Muff  <umuff@quark.com>
26553
26554         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
26555         this work on PPC and other big-endian architectures.
26556
26557         * debug-mono-symfile.h: Prepended the names of all the `guint32'
26558         fields with an underscore to make sure they're only accessed by
26559         the read32() macro.
26560
26561 2004-02-18  Martin Baulig  <martin@ximian.com>
26562
26563         * icall.c: Put the klass->refclass changes back for methods and
26564         fields, but not for properties and events.  We're currently not
26565         distinguishing between DeclaringType and ReflectedType for
26566         properties and events, that's what caused the regressions.
26567
26568 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26569
26570         * object.c:
26571         (mono_async_result_new): the handle can be NULL.
26572
26573         * threadpool.c: Use an event instead of a semaphore, don't initialize
26574         it until needed. This saves quite a few semaphores from being created
26575         when using the threadpool.
26576
26577 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
26578
26579         * object.c (mono_string_is_interned_lookup): Fix interning of long
26580         strings. Fixes #54473.
26581
26582         * domain.c (ldstr_equal): Optimize if the two strings are equal.
26583
26584         * icall.c: Revert the klass->refclass changes since they introduce
26585         regressions (bug #54518).
26586
26587 2004-02-18  Martin Baulig  <martin@ximian.com>
26588
26589         * class.c (mono_class_init): If we're a generic instance and don't
26590         come from a TypeBuilder, inflate our members here.
26591         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
26592         (mono_class_create_generic): New public method.
26593         (mono_class_initialize_generic): Removed.
26594         (get_instantiation_name): Renamed to
26595         _mono_class_get_instantiation_name() and made it public.
26596
26597 2004-02-18  Martin Baulig  <martin@ximian.com>
26598
26599         * class.c (mono_class_inflate_generic_type): Clear the new
26600         instance's `nginst->klass' when inflating a generic instance.
26601         (mono_class_is_subclass_of): Added (basic) support for generic
26602         instances.
26603
26604 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
26605
26606         * appdomain.h, domain.c: use a MonoCodeManager instead of a
26607         MonoMempool to hold compiled native code.
26608
26609 2004-02-17  Martin Baulig  <martin@ximian.com>
26610
26611         * class.h (MonoDynamicGenericInst): Added `count_properties' and
26612         `properties'.
26613
26614         * reflection.c (mono_reflection_generic_inst_initialize): Added
26615         `MonoArray *properties' argument.
26616
26617         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
26618
26619 2004-02-17  Martin Baulig  <martin@ximian.com>
26620
26621         * icall.c (ves_icall_Type_GetFields): Renamed to
26622         ves_icall_Type_GetFields_internal() and added a
26623         `MonoReflectionType *rtype' argument; pass it to
26624         mono_field_get_object() to set the field's "reflected" type.
26625         (ves_icall_Type_GetConstructors): Likewise.
26626         (ves_icall_Type_GetEvents): Likewise.
26627         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
26628         argument; pass it to mono_method_get_object() to set the method's
26629         "reflected" type.       
26630
26631 2004-02-17  Martin Baulig  <martin@ximian.com>
26632
26633         * class.h (MonoDynamicGenericInst): New type.
26634         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
26635
26636         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
26637         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
26638         (ves_icall_MonoGenericInst_GetFields): New interncall.
26639
26640         * class.c (mono_class_from_generic): Don't call
26641         mono_class_initialize_generic() if this is a dynamic instance;
26642         ie. it's being created from a TypeBuilder.
26643         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
26644         `class->byval_arg.type'.
26645
26646         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
26647         to `inflate_method' and made static.
26648         (mono_reflection_inflate_field): Removed.
26649         (mono_reflection_generic_inst_initialize): New public method.
26650
26651         * reflection.h (MonoReflectionGenericInst): Removed `methods',
26652         `ctors' and `fields'; added `initialized'.
26653
26654 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
26655
26656         * debug-helpers.c (mono_method_full_name): Fix output for empty
26657         namespaces.
26658
26659 2004-02-12  Martin Baulig  <martin@ximian.com>
26660
26661         * class.h (MonoClassField): Added `MonoType *generic_type'.
26662
26663         * reflection.c (mono_image_get_fieldref_token): Added support for
26664         instantiated generic types.
26665         (field_encode_inflated_field): Removed.
26666         (mono_image_get_inflated_field_token): Removed.
26667         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
26668
26669         * reflection.h (MonoReflectionInflatedField): Removed.
26670
26671 2004-02-12  Martin Baulig  <martin@ximian.com>
26672
26673         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
26674         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
26675
26676         * reflection.c (mono_image_get_methodspec_token): Take a
26677         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
26678         (mono_image_create_token): Check whether we have a
26679         `method->signature->gen_method' and call
26680         mono_image_get_methodspec_token() if appropriate.
26681         (inflated_method_get_object): Removed.
26682         (mono_reflection_bind_generic_method_parameters): Return a
26683         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
26684         (mono_reflection_inflate_method_or_ctor): Likewise.
26685
26686         * reflection.h (MonoReflectionInflatedMethod): Removed.
26687
26688 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
26689
26690         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
26691         for custom valuetype marshalling.
26692
26693         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
26694
26695 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26696
26697         * icall.c: fixed WSAGetLastError_internal name.
26698
26699 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26700
26701         * threads.c (mono_thread_attach): Allow this to be called multiple
26702         times for a thread.
26703         
26704         * threads.c (build_wait_tids): Do not wait for ourselves.
26705
26706         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26707         appdomain list is empty.
26708
26709         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26710         memory returned by mono_string_builder_to_utf16, since it points into
26711         managed memory. Thanks to Bernie Solomon for noticing this.
26712
26713         * icall.c: Add AppDomainSetup icalls.
26714
26715         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26716
26717         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26718         types.
26719
26720         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26721         custom attributes to the method_aux struct. Also fix array indexes etc.
26722
26723         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26724         
26725 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26726
26727         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26728         (both static and runtime) and reduce startup time.
26729
26730 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26731
26732         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26733         AsAny marshalling conversion instead of crashing.
26734
26735         * marshal.c: Fix warnings.
26736
26737 2004-02-09  Martin Baulig  <martin@ximian.com>
26738
26739         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26740
26741         * reflection.h (MonoReflectionInflatedMethod): Removed the
26742         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26743
26744         * reflection.c (method_encode_methodspec): Removed the `method'
26745         argument; we get it from `gmethod->declaring'.
26746         (inflated_method_get_object): Removed the `declaring' argument.
26747
26748 2004-02-09  Martin Baulig  <martin@ximian.com>
26749
26750         * class.h (MonoGenericMethod): New type.
26751         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26752         `generic_method'.
26753
26754         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26755         a `MonoGenericMethod *gen_method' one.
26756
26757         * class.c (mono_class_inflate_generic_type): Take an additional
26758         `MonoGenericMethod * argument.  This is only non-NULL if we're
26759         inflating types for a generic method.   
26760         (mono_class_inflate_generic_signature): Renamed to
26761         inflate_generic_signature() and made static; take a
26762         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26763         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26764         instead of a `MonoGenericInst *' one.
26765         (mono_class_inflate_generic_method): Likewise.
26766
26767         * reflection.c (encode_generic_method_sig): Take a
26768         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26769         (method_encode_methodspec): Likewise.
26770         (inflated_method_get_object): Likewise. 
26771
26772         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26773         field with a `MonoGenericMethod *gmethod' one.  
26774
26775 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26776
26777         * class.h (mono_class_has_parent): add parens to expansion
26778         so you can ! this.
26779
26780 2004-02-08  Martin Baulig  <martin@ximian.com>
26781
26782         * image.h (MonoImage): Removed `generics_cache'.
26783
26784         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26785         instead of a `MonoType *' argument; removed the `inflate_methods'
26786         argument.  Don't inflate methods here.
26787
26788         * loader.c (find_method): If it's a generic instance, call
26789         mono_class_init() on the `sclass->generic_inst->generic_type'.
26790
26791         * metadata.c (mono_type_size): Make this work on uninitialized
26792         generic instances; call it on the `ginst->generic_type's class.
26793
26794         * reflection.c (mono_reflection_bind_generic_parameters): Call
26795         mono_class_from_generic() to create the `ginst->klass'.
26796
26797 2004-02-08  Martin Baulig  <martin@ximian.com>
26798
26799         * class.h (MonoClass): Changed type of `generic_inst' from
26800         `MonoType *' to `MonoGenericInst *'.
26801
26802 2004-02-08  Martin Baulig  <martin@ximian.com>
26803
26804         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26805         mono_type_get_object(), this is now creating a `MonoGenericInst'
26806         for MONO_TYPE_GENERICINST.
26807         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26808         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26809
26810         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26811         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26812         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26813         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26814         and reflected type.
26815
26816         * reflection.h (MonoReflectionInflatedMethod): Removed
26817         `declaring_type' and `reflected_type'.
26818
26819 2004-02-08  Martin Baulig  <martin@ximian.com>
26820
26821         * class.h (MonoGenericInst): Added `MonoType *parent' and
26822         `MonoType **ifaces'.
26823
26824         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26825         `parent' and `interfaces'.
26826
26827         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26828         `MonoType *' argument and return a `MonoType *'.
26829
26830         * icall.c
26831         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26832         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26833
26834 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26835
26836         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26837         valuetype marshalling.
26838
26839 2004-02-06  Martin Baulig  <martin@ximian.com>
26840
26841         * class.c
26842         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26843         (my_mono_class_from_generic_parameter): Likewise.
26844
26845 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26846
26847         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
26848         contents of the symbol files lazily.
26849
26850         * object.h (MonoThread): Add 'name' and 'name_len' fields.
26851
26852         * threads.h threads.c icall.c: New icalls for getting and setting the
26853         threads name.
26854
26855 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
26856
26857         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
26858         Raise an exception when the domain is not found.
26859
26860 2004-02-03  Martin Baulig  <martin@ximian.com>
26861
26862         * reflection.c (mono_image_get_methodspec_token): Use the
26863         uninflated signature; fixes gen-33.
26864
26865 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
26866
26867         * gc.c threads.c: Make the finalizer thread a normal managed thread so
26868         the finalizer code can use thread functionality.
26869
26870         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
26871         the finalizer thread.
26872
26873         * threads.c: Make some functions more robust.
26874
26875         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
26876
26877         * metadata.h: Add new marshalling conventions.
26878
26879         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
26880         stringbuilder marshalling. Fixes #53700.
26881
26882         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
26883
26884         * reflection.c (mono_image_get_type_info): Save declarative security
26885         info.
26886
26887         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26888         unmanaged fields as well.
26889
26890         * appdomain.c: Bump corlib version.
26891
26892 2004-02-01  Martin Baulig  <martin@ximian.com>
26893
26894         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26895         method type arguments.  
26896
26897 2004-01-30  Duncan Mak  <duncan@ximian.com>
26898
26899         * marshal.h: Add prototype for
26900         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26901         and
26902         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26903         fix the build.
26904
26905 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26906
26907         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26908         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26909
26910 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26911
26912         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26913         custom marshalling of valuetypes.
26914
26915         * marshal.c: Fix some warnings.
26916
26917 2004-01-29  Martin Baulig  <martin@ximian.com>
26918
26919         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26920         for generic method parameters.
26921
26922         * reflection.c (method_encode_methodspec): Write the uninflated
26923         signature into the methodspec table.
26924         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26925         is always the uninflated method.
26926         (reflection_methodbuilder_to_mono_method): Copy the generic
26927         parameters from the MethodBuilder into `header->gen_params'.
26928
26929 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26930
26931         * class.c (mono_class_from_generic_parameter): Fix warning.
26932
26933 2004-01-27  Martin Baulig  <martin@ximian.com>
26934
26935         * class.c (mono_class_from_generic_parameter): Don't create
26936         `klass->methods' here.  
26937
26938 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
26939
26940         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
26941         extension since it does not work with libraries named lib<FOO>.dll.so.
26942
26943 2004-01-25  Martin Baulig  <martin@ximian.com>
26944
26945         * class.c (mono_class_inflate_generic_type): Added support for
26946         MONO_TYPE_GENERICINST.
26947
26948         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
26949         inflate methods on open constructed types.      
26950
26951 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26952
26953         * object.c: fire ProcessExit event in the root AppDomain after running
26954         Main. Fixes bug #53299.
26955
26956 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
26957
26958         * socket-io.c: include the new socket-wrappers.h header.
26959         Use the wrappers instead of the unix socket functions to make the code
26960         more clear.
26961
26962 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
26963
26964         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
26965
26966         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26967         Fixes #22532.
26968
26969 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
26970
26971         * reflection.c (mono_image_create_pefile): Handle the case when the
26972         entry point is not a MethodBuilder.
26973
26974         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26975         field to ReflectionMethod since it is not allways a builder.
26976
26977         * reflection.c (type_get_fully_qualified_name): New helper function to
26978         return the fully qualified name of a type.
26979
26980         * reflection.c (encode_marshal_blob): Always emit the fully qualified
26981         type name for custom marshallers.
26982
26983         * reflection.c (mono_marshal_spec_from_builder): Ditto.
26984
26985         * class.c (mono_class_setup_vtable): If a parent class already 
26986         implements an interface, use the implementing methods from that class.
26987         Fixes #53148.
26988
26989 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26990
26991         * threadpool.c: just return instead of ExitThread to allow for thread
26992         clean up earlier.
26993
26994 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
26995
26996         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
26997         when closing resource modules.
26998
26999         * reflection.c (mono_image_create_pefile): Handle the case when the
27000         entry point is not a MethodBuilder.
27001
27002         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27003         field to ReflectionMethod since it is not allways a builder.
27004
27005 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
27006
27007         * marshal.c (mono_marshal_get_managed_wrapper): 
27008         mono_marshal_alloc takes native int so CONV_I
27009         the arg for 64bits.
27010
27011 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
27012
27013         * reflection.c (fixup_cattrs): New function to fixup the methoddef
27014         tokens in the cattr table. Fixes #53108.
27015
27016 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27017
27018         * loader.c: don't trim ".dll" before looking up in the config file.
27019         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
27020
27021 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
27022
27023         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
27024         Return the module which contains the resource as well.
27025         (ves_icall_System_Reflection_Module_Close): New icall.
27026
27027         * appdomain.c: Bump corlib version number.
27028
27029         * image.c (mono_image_addref): New public function.
27030
27031         * assembly.c: Call mono_image_addref.
27032
27033         * reflection.c (mono_module_get_object): Increase reference count of 
27034         the image.
27035
27036         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27037         Fixes #22532.
27038
27039         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
27040         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
27041         proper exceptions on DllImport problems.
27042
27043 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27044
27045         * class.c, metadata.c: eliminate CSIZE macro.
27046
27047 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27048
27049         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27050         * object.h: Added async_callback field in MonoAsyncResult.
27051         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27052         * verify.c: Added async_callback in MonoAsyncResult layout.
27053
27054 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27055
27056         * reflection.c (mono_reflection_get_custom_attrs): Add support
27057         for Modules.
27058
27059 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27060
27061         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27062         marshalling.
27063         (mono_marshal_method_from_wrapper): Add null pointer check.
27064
27065 2004-01-16  Martin Baulig  <martin@ximian.com>
27066
27067         * debug-mono-symfile.h: Set version number to 36 and reflect
27068         latest symbol writer changes.
27069
27070 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27071
27072         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27073         multi-dimensional arrays.
27074         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27075         (mono_class_from_mono_type): Use bounded_array_class_get.
27076         
27077         * class.c (mono_bounded_array_class_get): New function which takes
27078         a 'bounded' bool argument to distinguish vectors from one dimensional
27079         arrays.
27080
27081         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27082         bounded_array_class_get if the array has bounds.
27083
27084         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27085         Search modules loaded using AssemblyBuilder:AddModule as well.
27086
27087 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27088
27089         * appdomain.c: increased corlib version.
27090         * filewatcher.c: removed g_print.
27091         * icall.c:
27092         (get_property_info): only allocate what is actually requested.
27093         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27094
27095 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27096
27097         * Makefile.am: added filewatcher.[ch]
27098         * filewatcher.[ch]: FileSystemWatcher runtime support.
27099         * icall.c: added new FSW icalls.
27100
27101 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27102
27103         * string-icalls.c: fix stringbuilder regression as suggested by
27104         Iain McCoy <iain@mccoy.id.au>.
27105
27106 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27107
27108         * process.c (process_read_stringtable_block): Recognize '007f' as
27109         a language neutral stringtable block.
27110
27111 2004-01-12  Patrik Torstensson
27112
27113         * object.h (MonoStringBuilder) : Changed layout to support our
27114         new stringbuilder class.
27115         * marshal.c: Change marshalling to support the new layout of 
27116         string builder.
27117         * appdomain.c: increased version number because new layout of
27118         string builder.
27119
27120 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27121
27122         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27123         assembly name as an string instead of an AssemblyName, since it is
27124         easier to extract info from it.
27125
27126         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27127         the culture subdirectories too. Fixes #52231.
27128
27129 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27130
27131         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27132         It takes 2 new parameters with an optional name for the method to look
27133         for and case ignoring info.
27134
27135         * threadpool.c: removed unused variable.
27136
27137 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27138
27139         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27140         It takes 2 new parameters with an optional name for the property to look
27141         for and case ignoring info.
27142         Fixes bug #52753.
27143
27144 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27145
27146         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27147         Fix #52451.
27148
27149 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27150
27151         * appdomain.c:
27152         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27153         Fixes bug #52630.
27154
27155 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27156
27157         * reflection.c: Add support for more than one unmanaged resource.
27158
27159         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27160         in field->def_value, as done in all other cases.
27161
27162         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27163         TypeBuilders.
27164
27165         * reflection.c (mono_reflection_create_runtime_class): Remove 
27166         errorneous assignment to klass->element_class, since it is already
27167         done in mono_reflection_setup_internal_class.
27168
27169 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27170
27171         * gc.c: added missing LeaveCriticalSection.
27172         * icall.c: indented a couple of lines.
27173         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27174         if we call EndInvoke inside a callback. Fixes bug #52601.
27175
27176 2004-01-07  Martin Baulig  <martin@ximian.com>
27177
27178         * mono-debug-debugger.h
27179         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27180
27181 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27182
27183         * appdomain.c: Use messages in NotImplementedException.
27184
27185         * exception.c (mono_get_exception_not_implemented): Now this takes
27186         a message argument.
27187
27188         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27189         exception instead of g_asserting an aborting when something is not
27190         implemented.
27191
27192         Add some inline docs.
27193
27194 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27195
27196         * reflection.h: Update after changes to object layout.
27197
27198         * reflection.c: Implement saving of unmanaged aka win32 resources.
27199
27200         * appdomain.c: Bump version number.
27201
27202         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27203         Handle missing domains gracefully.
27204
27205 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27206
27207         * file-io.c : On Windows, there are much more invalid_path_chars.
27208
27209 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27210
27211         * class.h, object.c: prepare for GetType () speedup.
27212
27213 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27214
27215         * profiler.c: workaround for --profile null reference exception on
27216           cygwin. Patch by Patrik Torstensson.
27217
27218 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27219
27220         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27221         make work for unaligned access.
27222
27223 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27224
27225         * class.c: small cleanup (class->fields [i] -> field).
27226         * image.c: check address of metadata is valid.
27227
27228 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27229
27230         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27231         search the list of loaded assemblies.
27232
27233         * reflection.c (mono_reflection_type_from_name): Use 
27234         mono_assembly_loaded instead of mono_image_loaded.
27235
27236         * reflection.c: Fix warnings.
27237
27238 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27239
27240         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27241         is dynamic. This is needed since an assembly can contain both dynamic and
27242         non-dynamic images.
27243
27244         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27245         assembly->dynamic.
27246
27247         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27248
27249         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27250         to store modules loaded using AddModule.
27251
27252         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27253         on Modules.
27254
27255         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27256
27257         * reflection.c (mono_image_fill_export_table_from_module): New function to
27258         fill out the EXPORTEDTYPES table from a module.
27259
27260         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27261         into a separate function. Also handle loaded non-dynamic modules.
27262
27263         * reflection.c (mono_image_basic_init): Fix memory allocation.
27264
27265         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27266
27267         * assembly.c (mono_assembly_load_references): Make this public.
27268
27269 2003-12-19  Martin Baulig  <martin@ximian.com>
27270
27271         * class.c (mono_class_initialize_generic): Made this static, take
27272         a `MonoGenericInst *' instead of a `MonoClass *'.
27273         (mono_class_from_generic): Call mono_class_initialize_generic()
27274         unless we're already initialized or being called from
27275         do_mono_metadata_parse_generic_inst().
27276
27277         * class.h (MonoGenericInst): Added `initialized' and
27278         `init_pending' flags.
27279
27280         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27281         `mono_class_init (gklass)' or mono_class_initialize_generic()
27282         here; set `generic_inst->init_pending' while parsing the
27283         `type_argv'.
27284
27285 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27286
27287         * locales.c: include string.h for memxxx prototypes
27288
27289 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27290
27291         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27292         constructor when accessing literal fields.
27293
27294 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27295
27296         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27297
27298         * reflection.c (assembly_add_resource_manifest): New function to fill
27299         the MANIFESTRESOURCE table.
27300
27301         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27302
27303         * reflection.h: Update to changes in class layout.
27304
27305         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27306         Reenable call to mono_runtime_is_shutting_down ().
27307
27308         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27309         determine if the runtime is shutting down.
27310
27311 2003-12-16  Jackson Harper <jackson@ximian.com>
27312
27313         * icall.c: comment out call to mono_runtime_is_shutting_down to
27314         fix build.
27315         
27316 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27317
27318         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27319         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27320
27321 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27322
27323         * reflection.c: move definition of swap_with_size
27324         to before its first call
27325
27326 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27327
27328         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27329
27330         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27331         icall.
27332
27333         * object.c: Fix warnings.
27334
27335         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27336         members if FlattenHierarchy is set.
27337
27338         * reflection.c (mono_image_add_decl_security): New function to emit
27339         declarative security.
27340
27341         * reflection.h reflection.c: Add support for declarative security.
27342
27343         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27344         
27345 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27346
27347         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27348         
27349         * appdomain.c verify.c: Moved corlib version checking into its own
27350         function in appdomain.c since it needs to create vtables etc.
27351
27352 2003-12-13  Patrik Torstensson <p@rxc.se>
27353
27354         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27355         instead of unwrapped server.
27356
27357 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27358
27359         * verify.c (check_corlib): Fix field index.
27360
27361 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27362
27363         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27364         GetGacPath icall.
27365
27366 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27367
27368         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27369         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27370         cope with sizeof(size_t) != sizeof(guint32).
27371
27372 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27373
27374         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27375         in case of failure.
27376
27377 2003-12-10  Mark Crichton <crichton@gimp.org>
27378
27379         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27380         in managed code.
27381
27382         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27383
27384 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27385
27386         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27387         marked as deleted.
27388
27389 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27390
27391         * verify.c (check_corlib): Handle the case when the version field is 
27392         initialized by a static constructor.
27393
27394 2003-12-08  Patrik Torstensson  <p@rxc.se>
27395
27396     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27397
27398 2003-12-08  Martin Baulig  <martin@ximian.com>
27399
27400         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27401         a MonoReflectionGenericParameter, also take the parameter index
27402         and name as arguments.
27403         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27404         (ves_icall_MonoGenericParam_initialize): New interncall.
27405         (ves_icall_Type_make_byref_type): New interncall.
27406
27407         * reflection.h (MonoReflectionGenericParam): Derive from
27408         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27409         `index' fields.
27410
27411         * reflection.c (mono_reflection_define_generic_parameter): Create
27412         and return a new MonoReflectionGenericParam; don't initialize the
27413         constraints here.
27414         (mono_reflection_initialize_generic_parameter): New public method;
27415         initializes the constraints and creates the `param->pklass'.
27416
27417 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27418
27419         * reflection.h reflection.c: Use the new fields 'num_types', 
27420         'num_fields' and 'num_methods' to track the number of types etc.
27421
27422         * verify.c (check_corlib): Check corlib version number.
27423
27424 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27425
27426         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27427         function works on all methods.
27428
27429 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27430
27431         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27432         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27433         the custom_type_info flag of the transparent proxy.
27434         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27435         objects that supports IRemotingTypeInfo.
27436         * object.h: Added custom_type_info field in transparent proxy.
27437
27438 2003-12-06  Martin Baulig  <martin@ximian.com>
27439
27440         * class.c (mono_class_create_from_generic): Removed.
27441         (mono_class_from_generic): Check `ginst->klass' before doing
27442         anything else.  This is important to fully support "recursive"
27443         generic types.
27444
27445         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27446         empty `generic_inst->klass' before doing anything else.
27447
27448 2003-12-06  Dick Porter  <dick@ximian.com>
27449
27450         * verify.c: 
27451         * object.h:
27452         * icall.c:
27453         * locales.c: Use C structs to access class fields.  Don't do a
27454         conversion between MonoString and UChar because both are
27455         platform-endian UTF-16.  Compare now takes startindex and count
27456         parameters.  Add a char overload for IndexOf.  Speed up the
27457         invariant string IndexOf.
27458
27459 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27460
27461         * Makefile.am (monosn_LDADD): Fix parallel build.
27462
27463 2003-12-04  Martin Baulig  <martin@ximian.com>
27464
27465         * icall.c
27466         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27467         (ves_icall_Type_make_array_type): New interncall.       
27468
27469 2003-12-04  Martin Baulig  <martin@ximian.com>
27470
27471         * locales.c: also change it in the !HAVE_ICU case.
27472
27473 2003-12-04  Dick Porter  <dick@ximian.com>
27474
27475         * icall.c:
27476         * locales.c: construct_compareinfo is now in CompareInfo, not
27477         CultureInfo.
27478
27479 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
27480
27481         * image.c (mono_image_load_file_for_image): Cache loaded images in the
27482         image->files array.
27483
27484         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
27485         table as well.
27486
27487         * assembly.c (mono_assembly_load_references): Only load references
27488         once.
27489
27490         * class.c (mono_class_from_name): Avoid linear search of the 
27491         EXPORTEDTYPE table.
27492
27493         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
27494
27495 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
27496
27497         * image.h (MonoImage): Add 'field_cache' field.
27498
27499         * loader.c (mono_field_from_token): Cache field lookups.
27500         
27501         * reflection.c (mono_module_get_object): Fix name property.
27502
27503         * icall.c (ves_icall_get_enum_info): Update after changes to 
27504         mono_metadata_get_constant_index ().
27505
27506         * icall.c: Get rid of get_type_info icall, use a separate icall for
27507         each type property to avoid needless memory allocations. Fixes #51514.
27508
27509         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27510         to avoid needless binary searches.
27511
27512         * class.c (class_compute_field_layout): Move the initialization of
27513         field->def_value to mono_class_vtable ().
27514
27515         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27516         non-corlib types.
27517
27518         * object.c (mono_object_allocate): Make it inline.
27519
27520         * object.c (mono_object_allocate_spec): Make it inline.
27521         
27522 2003-12-02  Dick Porter  <dick@ximian.com>
27523
27524         * locales.c (create_NumberFormat): NumberFormatInfo construction.
27525         Patch by Mohammad DAMT (mdamt@cdl2000.com).
27526
27527 2003-12-01  Dick Porter  <dick@ximian.com>
27528
27529         * threads.c: Fix signature and call in CreateMutex and
27530         CreateEvent.
27531
27532 2003-12-01  Dick Porter  <dick@ximian.com>
27533
27534         * icall.c: 
27535         * locales.c: Implement string compares and searching
27536
27537         * object.h: Add extra Thread field
27538
27539 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
27540
27541         * reflection.c (fixup_method): Add support for MonoCMethod.
27542
27543 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
27544
27545         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
27546
27547         * reflection.c (assembly_name_to_aname): Allow extra characters in
27548         assembly names. Fixes #51468.
27549
27550 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
27551
27552         * exception.c (mono_exception_from_name_domain): New helper function.
27553
27554         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
27555         exception object in the correct domain.
27556
27557         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27558         formatting + make a copy a the input data.
27559
27560         * loader.c (mono_get_method_from_token): Methods which contain
27561         native code do not have entries in the ImplMap.
27562
27563         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
27564         Thanks to Gonzalo for spotting this.
27565         
27566         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
27567         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
27568
27569         * assembly.h (mono_assembly_load_from): Split the second part of 
27570         assembly loading into a new public function.
27571
27572         * exception.h (mono_get_exception_bad_image_format): New function.
27573
27574 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
27575
27576         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27577         Enumerate all modules inside a dynamic assembly. Fixes #51293.
27578         
27579         * icall.c: Add new icall for creating dynamic methods.
27580
27581         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
27582
27583         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
27584
27585         * reflection.c (mono_reflection_create_dynamic_method): New icall to
27586         create a dynamic method.
27587
27588         * reflection.c (resolve_object): New helper function.
27589
27590         * reflection.c: Generalize ReflectionMethodBuilder and the functions
27591         which manipulate it so they can also work on dynamic methods.
27592
27593         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
27594         creating the MonoReflectionMethodAux structure if it is not needed.
27595         
27596         * reflection.h verify.c: Update after changes to object layout.
27597
27598         * reflection.c (method_builder_encode_signature): Fix compilation on
27599         gcc 2.95.x.
27600
27601 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
27602
27603         * appdomain.h: Added support for context static fields. Added static_data
27604           field to MonoAppContext and renamed thread_static_fields to a more
27605           generic special_static_fields in MonoAppDomain, since it can now contain
27606           context static fields.
27607         * domain.c: Updated hashtable name.
27608         * object.c: Replaced field_is_thread_static() for a more generic
27609           field_is_special_static() which also checks for context static attribute.
27610           In mono_class_vtable(), added support for static context fields.
27611         * threads.c: Changed methods that manage thread static fields to more
27612           generic methods so they can be reused both for thread and context static
27613           data.
27614         * threads.h: Declared some new methods.
27615
27616 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
27617
27618         * reflection.h: Update after changes to the managed types.
27619
27620         * reflection.c (encode_custom_modifiers): New helper function.
27621
27622         * reflection.c (method_encode_signature): Emit custom modifiers.
27623
27624         * reflection.c (field_encode_signature): Emit custom modifiers.
27625
27626 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
27627
27628         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
27629
27630         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
27631         implementation.
27632
27633         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
27634         icall.
27635
27636         * object.c (mono_field_get_value_object): New function.
27637
27638         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
27639         specific.
27640
27641 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
27642
27643         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
27644         return a preallocated out-of-memory exception instance.
27645
27646         * object.c (out_of_memory): Use the new function.
27647
27648         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
27649         flag is before the custom modifiers. Fixes #49802.
27650
27651 2003-11-16  Martin Baulig  <martin@ximian.com>
27652
27653         * class.c (mono_class_is_open_constructed_type): Implemented the
27654         MONO_TYPE_GENERICINST case.
27655
27656 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
27657
27658         * assembly.c (mono_assembly_fill_assembly_name): New function to
27659         fill out the MonoAssemblyName structure.
27660         (mono_assembly_open): Use the new function.
27661
27662         * icall.c (fill_reflection_assembly_name): New helper function.
27663
27664         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
27665         new function.
27666
27667         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
27668
27669 2003-11-15  Martin Baulig  <martin@ximian.com>
27670
27671         * class.c (mono_class_is_open_constructed_type): New public
27672         function; checks whether a type is an open constructed type,
27673         ie. whether it still contains type parameters.
27674         (mono_class_inflate_generic_type): If we're a type parameter and
27675         the inflated type is also a MONO_TYPE_(M)VAR, return the original
27676         type.
27677
27678         * class.h (MonoGenericInst): Added `guint32 is_open'.
27679
27680         * loader.c (method_from_methodspec): Check whether we're an open
27681         or closed constructed type and set `ginst->is_open'.
27682
27683         * reflection.c (mono_reflection_bind_generic_parameters): Check
27684         whether we're an open or closed constructed type and set
27685         `ginst->is_open'.
27686         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
27687         from open constructed types.
27688
27689 2003-11-15  Martin Baulig  <martin@ximian.com>
27690
27691         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27692         a generic instance (instead of a generic type declaration) with
27693         unbound generic parameters, bind them to our actual types.
27694
27695 2003-11-14  Martin Baulig  <martin@ximian.com>
27696
27697         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
27698
27699         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27700         an interface type, populate `res->interfaces' with instantiated
27701         versions of all the interfaces we inherit.
27702
27703 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27704
27705         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27706         when MONO_PATH is set but doesn't contain the install dir.
27707
27708 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27709
27710         * icall.c:
27711         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27712         it's also implemented in base classes. Fixes bug #50927.
27713
27714 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27715
27716         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27717         if this method is called from a finalizer. Fixes #50913.
27718
27719 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27720
27721         * threads.c: Implement VolatileRead/VolatileWrite
27722
27723         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27724
27725 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27726
27727         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27728         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27729         2.95.3.
27730
27731         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27732         from Peter Ross (pro@missioncriticalit.com).
27733         
27734 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27735
27736         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27737
27738 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27739
27740         * assembly.c (mono_assembly_load_references): Disable check because it
27741         triggers on older corlibs which lots of people have.
27742
27743 2003-11-12  Jackson Harper  <jackson@ximian.com>
27744
27745         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27746         load corlib.dll if mscorlib.dll is not found.
27747         * assembly.h: Remove corlib name define.
27748         * class.c:
27749         * domain.c:
27750         * image.c: Change corlib name to mscorlib.
27751         
27752 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27753
27754         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27755
27756 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27757
27758         * appdomain.h: Added loader_optimization here to sync with the C#
27759         code, and add disallow_binding_redirects field.
27760
27761 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27762
27763         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27764
27765         * reflection.c (mono_image_build_metadata): Fix crash on modules
27766         with no types.
27767
27768         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27769
27770         * icall.c (ves_icall_get_method_info): Return callingConvention as
27771         well.
27772
27773         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27774         namespaces from the EXPORTEDTYPE table as well.
27775
27776         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27777         from all modules inside the assembly.
27778         
27779 2003-11-11  Martin Baulig  <martin@ximian.com>
27780
27781         * reflection.c (mono_reflection_bind_generic_parameters): Make
27782         this work for interfaces.
27783
27784 2003-11-11  Martin Baulig  <martin@ximian.com>
27785
27786         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27787
27788 2003-11-11  Martin Baulig  <martin@ximian.com>
27789
27790         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27791         "MonoInflatedMethod" and "MonoInflatedCtor".
27792
27793 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27794
27795         * reflection.c (resolution_scope_from_image): Use the assembly table
27796         from the manifest module, since other modules don't have it.
27797
27798         * debug-helpers.c (mono_type_full_name): New helper function.
27799
27800         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27801
27802         * image.c (mono_image_load_file_for_image): New public function which
27803         is a replacement for the load_file_for_image in class.c.
27804
27805         * assembly.c (mono_assembly_load_module): A wrapper for the function
27806         above which does assembly association and reference loading too.
27807
27808         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27809
27810 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27811
27812         * appdomain.c: not all of the attributes for the full assembly name
27813         are required and the order doesn't matter. Fixes bug #50787.
27814
27815 2003-11-10  Dick Porter  <dick@ximian.com>
27816
27817         * locales.c: Use platform-endian UTF16
27818
27819 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27820
27821         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27822         
27823 2003-11-10  Martin Baulig  <martin@ximian.com>
27824
27825         * metadata.c
27826         (mono_metadata_load_generic_params): Make this actually work.
27827
27828         * reflection.c (mono_reflection_bind_generic_parameters): If our
27829         parent is a generic instance, pass all the `types' to it, no
27830         matter whether it has the same number of type parameters or not.
27831
27832 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27833
27834         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27835
27836         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27837         assignment code to this function so it gets called recursively for all
27838         modules.
27839
27840         * image.c (load_modules): Remove the assembly assignment since it is
27841         now done by mono_assembly_load_references.
27842         
27843         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27844         Add 'module' argument.
27845         (mono_module_get_types): New helper function.
27846         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
27847
27848 2003-11-08  Martin Baulig  <martin@ximian.com>
27849
27850         * class.c (mono_class_inflate_generic_method): Interface method
27851         don't have a header.
27852
27853         * reflection.c (mono_image_get_methodspec_token): Take an
27854         additional `MonoGenericInst *' argument instead of reading it from
27855         the header; this is necessary to support interfaces.
27856         (mono_image_create_token): Pass the `MonoGenericInst *' from the
27857         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
27858         (inflated_method_get_object): Take an additional `MonoGenericInst *'
27859         argument.
27860
27861         * reflection.h (MonoReflectionInflatedMethod): Added
27862         `MonoGenericInst *ginst'.
27863
27864 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
27865
27866         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
27867
27868 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
27869
27870         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
27871
27872 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
27873
27874         * reflection.c 
27875         (reflection_methodbuilder_from_method_builder):
27876         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
27877         initialize a ReflectionMethodBuilder structure.
27878         (mono_image_get_methodbuilder_token):
27879         (mono_image_get_ctorbuilder_token): New functions to emit memberref
27880         tokens which point to types in another module inside the same assembly.
27881
27882         * reflection.c: Use the new helper functions.
27883         
27884         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27885
27886         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27887         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27888
27889         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27890         neccesary.
27891
27892         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27893         current module. Emit the manifest only for the main module.
27894
27895         * reflection.c (mono_image_create_token): Add assertion when a 
27896         memberref needs to be created.
27897
27898         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27899
27900         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27901         larger buffer for the custom attribute blob. Fixes #50637.
27902         
27903 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27904
27905         * threadpool.c: notify listener on async processing handles after
27906         invoking the async callback. Thanks to Zoltan.
27907
27908 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27909
27910         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27911         avoid code duplication.
27912
27913         * reflection.h (MonoDynamicImage): New type which is currently unused,
27914         but will be used through the ref.emit code in place of 
27915         MonoDynamicAssembly.
27916
27917         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27918         object layout.
27919
27920         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27921         a MonoDynamicImage instead of just a MonoImage.
27922         
27923         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27924         icalls to ModuleBuilder but keep their semantics, so they will work
27925         with moduleb->assemblyb. This will change later.
27926         
27927 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27928
27929         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27930         object layout.
27931
27932         * reflection.c (mono_image_build_metadata): Avoid creation of a default
27933         main module, since it is now done by the managed code.
27934
27935 2003-11-03  Martin Baulig  <martin@ximian.com>
27936
27937         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
27938         `ginst->klass' here.
27939         (method_encode_methodspec): Don't use the `ginst->generic_method's
27940         klass if it's a generic instance, use `ginst->klass' in this case.
27941
27942 2003-11-03  Martin Baulig  <martin@ximian.com>
27943
27944         * reflection.c (mono_image_get_generic_method_param_info):
27945         Removed, use mono_image_get_generic_param_info() instead.
27946         (mono_image_get_type_info): Write the GenericParam table before
27947         the Method table.  This is neccessary because in the GenericParam
27948         table, type parameters of the class (ie. '!0' etc.) must come
27949         before the ones from its generic methods (ie. '!!0' etc).
27950
27951 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27952
27953         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
27954
27955 2003-11-02  Martin Baulig  <martin@ximian.com>
27956
27957         * reflection.c (create_generic_typespec): Take a
27958         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
27959         the generic parameters from it.
27960
27961 2003-11-02  Martin Baulig  <martin@ximian.com>
27962
27963         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
27964         instead of a `MonoClassField *' since we just need the type.
27965         (create_generic_typespec): New static function.  Creates a
27966         TypeSpec token for a generic type declaration.
27967         (mono_image_get_generic_field_token): New static function.
27968         (mono_image_create_token): If we're a FieldBuilder in a generic
27969         type declaration, call mono_image_get_generic_field_token() to get
27970         the token.
27971
27972 2003-11-02  Martin Baulig  <martin@ximian.com>
27973
27974         * reflection.h
27975         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
27976         `MonoReflectionGenericInst *declaring_type' and
27977         `MonoReflectionGenericInst *reflected_type' fields.
27978
27979         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
27980         `MonoReflectionGenericInst *declaring_type' and a
27981         `MonoReflectionGenericInst *reflected_type' argument instead of a
27982         single `MonoReflectionGenericInst *type' one.  Set
27983         `res->declaring_type' and `res->reflected_type' from them.
27984         (mono_reflection_inflate_field): Likewise.      
27985
27986 2003-11-02  Martin Baulig  <martin@ximian.com>
27987
27988         * class.c (mono_class_setup_vtable): Don't store generic methods
27989         in the vtable.  
27990
27991 2003-11-02  Martin Baulig  <martin@ximian.com>
27992
27993         * reflection.h (MonoReflectionGenericInst): Added
27994         `MonoReflectionType *declaring_type'.
27995
27996         * reflection.c (mono_reflection_bind_generic_parameters): Use
27997         `if (tb->parent)' instead of `klass->parent'.
27998
27999 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
28000
28001         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
28002         with an empty ASSEMBLY table.
28003
28004         * reflection.c (mono_image_build_metadata): Avoid using the same loop
28005         variable in the inner and outer loops.
28006
28007 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
28008
28009         * metadata.h (mono_metadata_make_token): Put parentheses around macro
28010         argument.
28011
28012         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
28013         
28014         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
28015         icalls. Instead, do everything in managed code. This is needed since
28016         it is hard to restore the original domain etc. in unmanaged code in the
28017         presence of undeniable exceptions.
28018
28019         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
28020         New icalls to push and pop appdomain refs.
28021
28022 2003-10-31  Martin Baulig  <martin@ximian.com>
28023
28024         * class.c (inflate_generic_type): Renamed to
28025         mono_class_inflate_generic_type() and made it public.
28026
28027         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
28028         New interncall.
28029
28030         * loader.c (mono_field_from_memberref): Also set the retklass for
28031         typespecs.
28032
28033         * fielder.c (mono_image_get_inflated_field_token): New static
28034         method; creates a metadata token for an inflated field.
28035         (mono_image_create_token, fixup_method): Added support for
28036         "MonoInflatedField".
28037         (fieldbuilder_to_mono_class_field): New static function.
28038         (mono_reflection_inflate_field): New public function.
28039
28040         * reflection.h
28041         (MonoReflectionGenericInst): Added `MonoArray *fields'.
28042         (MonoReflectionInflatedField): New typedef.     
28043
28044 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28045
28046         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28047         for Solaris and other platforms without s6_addr16
28048
28049 2003-10-30  Martin Baulig  <martin@ximian.com>
28050
28051         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28052         argument instead of two.
28053         (mono_class_inflate_generic_signature): Likewise.
28054         (inflate_generic_header): Likewise.
28055         (mono_class_inflate_generic_method): Likewise.  In addition, if
28056         `ginst->klass' is set, it becomes the new `method->klass'.
28057
28058         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28059         field.
28060
28061         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28062         first byte. [FIXME]
28063         (method_encode_methodspec): If we have generic parameters, create
28064         a MethodSpec instead of a MethodRef.
28065         (fixup_method): Added support for "MonoInflatedMethod" and
28066         "MonoInflatedCtor".
28067         (mono_image_create_token): Added support for "MonoInflatedMethod"
28068         and "MonoInflatedCtor".
28069         (inflated_method_get_object): New static function; returns a
28070         managed "System.Reflection.MonoInflatedMethod" object.
28071         (mono_reflection_bind_generic_method_parameters): Return a
28072         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28073         (mono_reflection_inflate_method_or_ctor): Likewise.
28074         (mono_image_get_generic_method_param_info): Initialize unused
28075         fields to zero.
28076         (mono_image_get_generic_param_info): Likewise.
28077
28078         * reflection.h (MonoReflectionInflatedMethod): New public
28079         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28080         "S.R.MonoInflatedCtor" classes.
28081
28082         * loader.c (method_from_memberref): If we're a TypeSpec and it
28083         resolves to a generic instance, inflate the method.
28084
28085 2003-10-28  Dick Porter  <dick@ximian.com>
28086
28087         * object.c (mono_runtime_run_main): Convert command-line arguments
28088         into utf8, falling back to the user's locale encoding to do so.
28089
28090 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28091
28092         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28093         at this time.
28094
28095         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28096
28097         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28098         up icalls at method definition time. Partially fixes #33569.
28099
28100 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28101
28102         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28103         marshalling of arrays. Fixes #50116.
28104
28105         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28106
28107         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28108         points to a vtable in the dying appdomain.
28109
28110         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28111         listeners into unmanaged code inside the lock.
28112
28113         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28114         domains and add some comments.
28115
28116 2003-10-25  Martin Baulig  <martin@ximian.com>
28117
28118         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28119
28120         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28121
28122         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28123         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28124         currently parsing.  Create the generic class and store it in
28125         `generic_inst->klass' before parsing the type arguments.  This is
28126         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28127         for an example.
28128         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28129         to support recursive typespec entries.
28130
28131         * class.c (mono_class_setup_parent): If our parent is a generic
28132         instance, we may get called before it has its name set.
28133         (mono_class_from_generic): Splitted into
28134         mono_class_create_from_generic() and mono_class_initialize_generic().
28135
28136 2003-10-25  Martin Baulig  <martin@ximian.com>
28137
28138         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28139         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28140         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28141         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28142
28143         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28144         (create_typespec): Likewise.
28145         (mono_reflection_bind_generic_parameters): Return a
28146         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28147         (mono_reflection_inflate_method_or_ctor): New public function.
28148
28149         * reflection.h (MonoReflectionGenericInst): New typedef.        
28150
28151 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28152
28153         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28154         inside the domain lock. Fixes #49993.
28155         
28156         * object.c (mono_class_vtable): When typed allocation is used, 
28157         allocate vtables in the GC heap instead of in the mempool, since the
28158         vtables contain GC descriptors which are used by the collector even
28159         after the domain owning the mempool is unloaded.
28160
28161         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28162
28163         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28164         reflect what it does. Also invalidate mempools instead of freeing
28165         them if a define is set.
28166
28167         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28168         of the appdomain.
28169         
28170         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28171         hold the finalizable objects in this domain.
28172
28173         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28174         appdomain.
28175
28176         * appdomain.c (mono_domain_set): New function to set the current
28177         appdomain, but only if it is not being unloaded.
28178
28179         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28180         appdomain which is being unloaded.
28181         
28182         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28183         unloading of the root appdomain.
28184
28185         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28186         icall to execute a method in another appdomain. Intended as a 
28187         replacement for InternalSetDomain, which can confuse the code 
28188         generation in the JIT.
28189
28190         * appdomain.c (mono_domain_is_unloading): New function to determine
28191         whenever an appdomain is unloading.
28192
28193         * appdomain.c (mono_domain_unload): New function to correctly unload
28194         an appdomain.
28195
28196         * assembly.c (mono_assembly_load_references): Check that an assembly
28197         does not references itself.
28198
28199         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28200         domain manually, it asks the finalizer thread to do it, then waits for
28201         the result. Also added a timeout.
28202
28203         * icall.c: Register the new icalls.
28204
28205         * threads.h threads.c: Export the mono_gc_stop_world and 
28206         mono_gc_start_world functions.
28207         
28208         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28209         function to fill out the mempool with 0x2a.
28210
28211 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28212
28213         * reflection.h (MonoReflectionMethodAux): New structure to store
28214         information which is rarely used, thus is not in the MonoMethod
28215         structure.
28216
28217         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28218         store the aux info.
28219
28220         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28221         and marshalling info into the aux structure.
28222
28223         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28224         from the aux structure.
28225
28226         * loader.c (mono_method_get_param_names): Retrieve the param names from
28227         the aux structure.
28228         
28229 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28230
28231         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28232         warning.
28233
28234 2003-10-21  Dick Porter  <dick@ximian.com>
28235
28236         * socket-io.c
28237         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28238         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28239
28240 2003-10-21  Martin Baulig  <martin@ximian.com>
28241
28242         * reflection.c (mono_reflection_bind_generic_parameters):
28243         `klass->parent' is NULL for interfaces.
28244
28245 2003-10-21  Martin Baulig  <martin@ximian.com>
28246
28247         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28248
28249 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28250
28251         * exception.c (mono_exception_from_name_msg): New helper function for
28252         creating exceptions and initializing their message field.
28253
28254         * exception.c: Simplify functions using the new helper.
28255
28256         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28257         New function.
28258
28259         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28260         mono_raise_exception, since otherwise gcc doesn't generate the function
28261         epilog for raise_exception, confusing the stack unwinding in the JIT.
28262         Fixes #45043.
28263
28264         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28265         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28266         Fixes #49499.
28267
28268 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28269
28270         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28271         utf8.
28272
28273 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28274
28275         * icall.c: Removed GetUninitializedObject method because
28276           AllocateUninitializedClassInstance does the same.
28277
28278 2003-10-18  Martin Baulig  <martin@ximian.com>
28279
28280         * class.c (inflate_generic_signature): Renamed to
28281         mono_class_inflate_generic_signature() and made it public.
28282         (my_mono_class_from_generic_parameter): New static function; if we
28283         don't already have the generic parameter's MonoClass, create a
28284         very simple one which is just used internally in the runtime and
28285         not passed back to managed code.
28286
28287         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28288
28289         * metadata.h (MonoMethodSignature): Moved the
28290         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28291         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28292
28293         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28294         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28295         interncall on the MonoMethod class, not on MethodInfo.
28296         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28297         calling mono_reflection_bind_generic_method_parameters() directly.
28298
28299         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28300         return the already computed `method->signature'.
28301         (method_from_methodspec): New static function to load a method
28302         from a MethodSpec entry.
28303         (mono_get_method_from_token): Call the new method_from_methodspec()
28304         for MethodSpec tokens.  
28305         (mono_get_method_from_token): If we're a generic method, load the
28306         type parameters.
28307
28308         * reflection.c (mono_image_get_memberref_token): Allow
28309         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28310         table.
28311         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28312         (mono_image_create_token): First check whether it's a generic
28313         method (so we'd need to create a MethodSpec), then do the other
28314         two alternatives.
28315         (mono_reflection_bind_generic_method_parameters): Return a
28316         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28317         called directly from the interncall.
28318
28319 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28320
28321         * reflection.c (load_public_key): Move loading of the public key
28322         into managed code.
28323
28324         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28325
28326         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28327         fields.
28328
28329         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28330         culture, hash_alg and public_key. Fixes #49555.
28331
28332 2003-10-17  Martin Baulig  <martin@ximian.com>
28333
28334         * class.h (MonoGenericInst): Moved this declaration here and added
28335         `MonoMethod *generic_method'.
28336
28337         * icall.c
28338         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28339         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28340
28341         * metadata.c (mono_metadata_type_equal): Two types of
28342         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28343         index; ie. don't compare the address of the `MonoGenericParam'
28344         structure.
28345         (mono_metadata_load_generic_params): Removed the `MonoMethod
28346         *method' argument.
28347
28348         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28349         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28350
28351         * reflection.c (method_encode_signature): Encode the number of
28352         generic parameters.
28353         (encode_generic_method_sig): New static function.
28354         (method_encode_methodspec): New static function; creates an entry
28355         in the MethodSpec table for a generic method.
28356         (mono_image_get_methodspec_token): New static function.
28357         (mono_image_create_token): Call mono_image_get_methodspec_token()
28358         for generic methods.
28359         (mono_reflection_bind_generic_method_parameters): New public
28360         function.  Instantiates a generic method.
28361
28362 2003-10-16  Martin Baulig  <martin@ximian.com>
28363
28364         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28365         *gen_params' here from MonoMethodHeader.
28366
28367         * metadata.c (mono_metadata_parse_method_signature): If we have
28368         generic parameters, initialize `method->gen_params' and then set
28369         the correct `type->data.generic_param' in all the parameters.
28370
28371 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28372
28373         * threads.c (mono_threads_get_default_stacksize): New function to 
28374         return the default stacksize.
28375
28376         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28377         termination of the finalizer thread, since the previous method had
28378         race conditions. Fixes #49628.
28379
28380         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28381         as for the other managed threads.
28382
28383 2003-10-16  Martin Baulig  <martin@ximian.com>
28384
28385         * class.c (inflate_generic_signature): Copy `generic_param_count'
28386         and `gen_params'.
28387
28388         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28389         New interncall.
28390
28391         * metadata.c (mono_metadata_parse_method_signature): Actually set
28392         the `method->generic_param_count' here.
28393         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28394
28395 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28396
28397         * object.h: Add a new field to TypedRef to simplify the implementation
28398         of the REFANY opcodes in the JIT.
28399
28400         * icall.c: Make use of the new field.
28401
28402         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28403         dynamically.
28404
28405 2003-10-15  Martin Baulig  <martin@ximian.com>
28406
28407         * class.c (mono_class_from_gen_param): Renamed to
28408         mono_class_from_generic_parameter() and moved most of the
28409         functionality from mono_reflection_define_generic_parameter()
28410         here; ie. we create a "real" class here.
28411         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28412         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28413         previously been called.
28414
28415         * class.h (MonoGenericParam): Moved the declaration of this struct
28416         here from metadata.h and added `MonoMethod *method'.
28417
28418         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28419         interncall.
28420
28421         * loader.c (mono_get_method_from_token): If we have any generic
28422         parameters, call mono_metadata_load_generic_params() to read them
28423         from the MONO_TABLE_GENERICPAR.
28424
28425         * metadata.c (mono_metadata_load_generic_params): Added
28426         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28427
28428         * metadata.h (MonoMethodSignature): Replaced
28429         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28430         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28431
28432         * reflection.c (mono_reflection_define_generic_parameter): Moved
28433         most of the functionality into the new
28434         mono_class_from_generic_parameter(); set the `method' field if
28435         we're a method parameter.       
28436
28437 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28438
28439         * marshal.c (emit_struct_conv): if native size is 0
28440         emit no code.
28441
28442 2003-10-14  Martin Baulig  <martin@ximian.com>
28443
28444         * icall.c: The generics API has changed in the spec since it was
28445         added to System.Type; these modifications make it match the spec
28446         again.
28447         (ves_icall_Type_GetGenericParameters): Renamed to
28448         `ves_icall_Type_GetGenericArguments'.
28449         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28450         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28451         `ves_icall_MonoType_get_HasGenericArguments'.
28452         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28453         `ves_icall_MonoType_get_IsGenericParameter'.
28454         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28455         this is no interncall anymore.
28456         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28457         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28458
28459 2003-10-14  Martin Baulig  <martin@ximian.com>
28460
28461         * reflection.c (mono_reflection_bind_generic_parameters): Also
28462         inflate generic methods if we're reading the class from IL.
28463
28464 2003-10-13  Martin Baulig  <martin@ximian.com>
28465
28466         * reflection.c (mono_reflection_define_generic_parameter): This
28467         method isn't called directly from the icall anymore; take a
28468         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28469         method generic parameters.
28470         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28471         (method_builder_encode_signature): Encode generic parameters.
28472         (mono_image_get_method_info): Write generic params to the
28473         MONO_TABLE_GENERICPARAM table.
28474
28475         * reflection.h (MonoReflectionMethodBuilder): Added
28476         `MonoArray *generic_params'.
28477
28478         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
28479
28480         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
28481         wrapper for mono_reflection_define_generic_parameter().
28482         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
28483
28484 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
28485
28486         * marshal.h: Add missing function to fix build.
28487
28488         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
28489         the SetLastError pinvoke attribute.
28490
28491         * marshal.c (mono_marshal_set_last_error): New helper function called
28492         by the generated code.
28493         
28494         * marshal.c (mono_mb_emit_branch): New helper function.
28495
28496         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
28497
28498         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28499         classes as parameters and return values of delegates. Fixes #29256. 
28500
28501 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
28502
28503         * locales.c: use gint32 in non HAVE_ICU case
28504
28505 2003-10-11  Martin Baulig  <martin@ximian.com>
28506
28507         * mono-debug.c (mono_debug_add_method): Added a workaround for
28508         bug #48591.
28509
28510 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28511
28512         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28513         delegates passed to native code must use the STDCALL calling 
28514         convention. Fixes #35987.
28515
28516 2003-10-10  Martin Baulig  <martin@ximian.com>
28517
28518         * class.c (inflate_generic_type): If we're inflating for a generic
28519         type instance (and not for a generic method), return
28520         MONO_TYPE_MVAR unchanged.
28521
28522 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28523
28524         * string-icalls.c: Join ignores null strings in the source array.
28525         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
28526         * threads.c: GetAvailableTheads is slightly more accurate.
28527
28528 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
28529
28530         * threads.h threads.c : add mono_threads_set_default_stacksize
28531         and pass default to CreateThread calls.
28532
28533 2003-10-09  Dick Porter  <dick@ximian.com>
28534
28535         * icall.c:
28536         * locales.h:
28537         * locales.c: Internal calls for constructing CultureInfo and
28538         related objects from libicu (if its available.)
28539
28540 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
28541
28542         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
28543
28544 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28545
28546         * threadpool.c: added an argument to async_invoke_thread that is the
28547         item to process, pass the MonoAsyncResult to the thread start function
28548         when creating a new thread. This way we don't need to acquire any lock
28549         when we're creating a new thread. Readded a semaphore for faster
28550         response times (instead of that Sleep i added).
28551
28552 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
28553
28554         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28555         get daylight change dates better on Windows, fix handling
28556         of platforms without tm_gmtoff.
28557
28558 2003-10-06  Martin Baulig  <martin@ximian.com>
28559
28560         * class.c (inflate_generic_method): Renamed to
28561         mono_class_inflate_generic_method() and made public.
28562         (mono_class_init): Don't inflate the generic methods here.
28563         (mono_class_from_generic): Added `gboolean inflate_methods'
28564         argument.  Inflate the methods here.
28565
28566         * loader.c (mono_method_get_param_names): Ignore instances of
28567         generic types for the moment.
28568
28569         * reflection.c (fixup_method): Added support for inflated methods.
28570         (mono_image_create_token): Use mono_image_get_methodref_token()
28571         for inflated methods.
28572         (mono_custom_attrs_from_param): Ignore instances of generic types
28573         for the moment.
28574         (mono_reflection_bind_generic_parameters): New public function.
28575         Moved all the functionality from
28576         ves_icall_Type_BindGenericParameters() here and added support for
28577         dynamic types.
28578         (mono_reflection_define_generic_parameter): Initialize
28579         `klass->methods' here.
28580
28581         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
28582         functionality into mono_reflection_define_generic_parameter().
28583         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
28584         TypeBuilder, return that TypeBuilder.
28585
28586 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28587
28588         * appdomain.c: removed mono_delegate_semaphore.
28589
28590         * threadpool.c:
28591         (mono_thread_pool_add): moved hash table creation inside and the thread 
28592         creation outside of the critical region.
28593         (mono_thread_pool_finish): removed obsolete code.
28594         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
28595         continue or exit the thread depending on the queue.
28596
28597 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
28598
28599         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
28600         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
28601         handle more bool marshalling options
28602
28603 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
28604
28605         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
28606         arrays of structs. Also add a more descriptive error message when
28607         a structure member is marshalled as LPArray.
28608
28609 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
28610
28611         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28612         marshalling arrays of complex types. Fixes #29098. Also remove an
28613         usused and incomplete function.
28614
28615 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28616
28617         * gc.c: report heap_size - free_bytes as total memory allocated
28618         (bug#49362).
28619
28620 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
28621
28622         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
28623         fix timezone handling problems on Windows.
28624         
28625         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
28626         asserts when the year is outside the range handled by ms the functions.
28627
28628         * class.c (setup_interface_offsets): If the class is an interface,
28629         fill out its interface_offsets slot.
28630
28631 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28632
28633         * threadpool.c: mark threadpool threads as background.
28634
28635 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
28636
28637         * decimal.c - define DECINLINE to nothing if not using GCC
28638
28639 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
28640
28641         * assembly.c: More refcount fixes.
28642
28643 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28644
28645         * string-icalls.c: if we're not trimming, return the same string.
28646         When not splitting, don't create a new string.
28647
28648 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28649
28650         * image.c:
28651         (mono_image_open): increment the ref_count inside the critical section.
28652
28653 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
28654
28655         * image.c (mono_image_open): Fix reference counting bug.
28656
28657 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
28658
28659         * marshal.c (mono_marshal_type_size) struct alignment changed for 
28660         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
28661         64bits. Avoid leak in mono_marshal_get_native_wrapper when
28662         mono_lookup_pinvoke_call throws.        
28663
28664 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
28665
28666         * reflection.c (mono_reflection_parse_type): Fix #49114.
28667
28668         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
28669         temporary workaround for cygwin header problem.
28670
28671         * object.c (mono_object_isinst): Synchronize this with the code
28672         generated by the JIT for casts.
28673
28674 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
28675
28676         * reflection.c (encode_type): Fix #38332.
28677
28678 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
28679
28680         * marshal.c (mono_marshal_method_from_wrapper): New function to return
28681         the original method from the wrapper method.
28682
28683 2003-09-25  Martin Baulig  <martin@ximian.com>
28684
28685         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
28686         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
28687         (ves_icall_Type_get_IsGenericInstance): New interncall.
28688
28689 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
28690
28691         * object.c: fix cast warning in big endian code.
28692
28693 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
28694
28695         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
28696         
28697 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28698
28699         * assembly.c: don't call check_env from mono_assembly_load. It's
28700         already done once in mono_assemblies_init and may cause headaches when
28701         multiple threads are loading assemblies.
28702
28703 2003-09-19  Martin Baulig  <martin@ximian.com>
28704
28705         * reflection.c (mono_reflection_define_generic_parameter): Don't
28706         allocate `klass->methods', set `klass->flags' to
28707         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28708
28709 2003-09-18  Martin Baulig  <martin@ximian.com>
28710
28711         * class.c (mono_class_init): Don't create `class->methods' if it's
28712         already initialized.
28713
28714         * metadata.c (mono_metadata_load_generic_params): Make this
28715         actually work.
28716
28717         * reflection.c (mono_reflection_define_generic_parameter): Set
28718         parent class and interfaces from the constraints.
28719
28720         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28721         to keep this struct in sync with the declaration in TypeBuilder.cs.
28722
28723 2003-09-17  Martin Baulig  <martin@ximian.com>
28724
28725         * metadata.h (MonoType): Replaced the data's `int type_param'
28726         field with `MonoGenericParam *generic_param'.
28727         (MonoGenericParam): Added `MonoClass *klass'.
28728
28729         * class.c (mono_class_from_gen_param): Removed the
28730         `MonoImage *image' and `int type_num' arguments.
28731
28732         * metadata.c (mono_metadata_parse_generic_param): New static
28733         method; creates a MonoGenericParam which just contains the index.
28734         (do_mono_metadata_parse_type): Call
28735         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28736         MONO_TYPE_MVAR.
28737
28738         * reflection.c (mono_image_typedef_or_ref): Generic type
28739         parameters may be in the same assembly, but never use a typedef
28740         for them.
28741         (mono_reflection_define_generic_parameter): We're now creating a
28742         "real" class for the type parameter; it's now safe to call
28743         mono_class_from_mono_type() on the class'es type, it'll do the
28744         right thing.
28745
28746 2003-09-16  Martin Baulig  <martin@ximian.com>
28747
28748         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28749         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28750         the `symfile' data structure must be fully initialized before it
28751         gets added to the table.
28752
28753 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28754
28755         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28756
28757         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28758         class init trampolines.
28759
28760 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28761
28762         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28763         to the built-in profiler to turn off time and allocation profiling
28764         respectively.
28765
28766 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28767
28768         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28769         g_direct_equal.
28770
28771         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28772         in human readable form.
28773
28774 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28775
28776         * reflection.c icall.c: Fixed warnings.
28777
28778         * image.c (load_class_names): Use a temporary hash table to hold the
28779         namespaces in order to avoid doing many string comparisons.
28780
28781         * image.h: Fix typo.
28782
28783         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28784         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28785         since the NULL case is short-circuited inside g_hash_table_lookup, 
28786         leading to better performance.  
28787
28788         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28789         obtain the first custom attribute for a given index. Depends on the
28790         CustomAttribute table being sorted by the parent field.
28791
28792         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28793         for better performance.
28794
28795 2003-09-07  Martin Baulig  <martin@ximian.com>
28796
28797         * class.c (mono_class_init): If we're a generic instance, inflate
28798         all our methods instead of loading them from the image.
28799         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28800
28801 2003-09-07  Martin Baulig  <martin@ximian.com>
28802
28803         * mono-debug-debugger.c: Added support for constructors.
28804
28805 2003-09-06  Martin Baulig  <martin@ximian.com>
28806
28807         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28808         New interncall.
28809
28810         * reflection.c (mono_reflection_setup_generic_class): Call
28811         ensure_runtime_vtable() to create the vtable.
28812
28813 2003-09-05  Martin Baulig  <martin@ximian.com>
28814
28815         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28816         MONO_TYPE_MVAR.
28817
28818 2003-09-04  Martin Baulig  <martin@ximian.com>
28819
28820         * reflection.c (mono_reflection_define_generic_parameter): Generic
28821         parameters start with zero.
28822
28823 2003-09-04  Martin Baulig  <martin@ximian.com>
28824
28825         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28826
28827         * reflection.h (MonoReflectionGenericParam): New typedef.
28828         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28829         the generic parameters from the managed TypeBuilder.
28830
28831         * reflection.c (mono_reflection_define_generic_parameter): New function.
28832         (mono_reflection_create_runtime_class): Encode generic parameters.
28833         (mono_reflection_setup_generic_class): New function; this is
28834         called after adding adding all generic params to the TypeBuilder.
28835         (encode_type): Added MONO_TYPE_VAR.
28836
28837 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28838
28839         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28840         here from the JIT.
28841
28842         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28843         load hook.
28844
28845 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28846
28847         * reflection.h reflection.c class.h class.c: Delete duplicate 
28848         definition of mono_type_get_name () from reflection.c and export the
28849         one in class.c.
28850
28851         * class.c: Class loading fixes from Bernie Solomon 
28852         (bernard@ugsolutions.com).
28853
28854         * reflection.c: Endianness fixes from Bernie Solomon 
28855         (bernard@ugsolutions.com).
28856         
28857 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
28858
28859         * assembly.h assembly.c: Define a file format version for AOT
28860         libraries.
28861         
28862         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
28863
28864         * appdomain.h (MonoJitInfo): New field to determine whenever the
28865         code is domain neutral.
28866         
28867 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
28868
28869         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
28870
28871 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
28872
28873         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
28874         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
28875         Avoid caching the result since strings must be domain specific. Fixes
28876         #48050.
28877
28878 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
28879
28880         * marshal.c (mono_marshal_init): Make this callable multiple times
28881         since it is hard to find a correct place to call it.
28882
28883         * object.c (mono_runtime_class_init): Execute static constructors in
28884         the correct appdomain.
28885
28886         * image.c (build_guid_table): Handle the case when multiple images have
28887         the same GUID.
28888
28889 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28890
28891         * icall.c: added a couple of icalls for System.Web.
28892
28893 2003-08-28  Martin Baulig  <martin@ximian.com>
28894
28895         * icall.c (ves_icall_Type_BindGenericParameters): Use
28896         `klass->generic_inst' instead of `&klass->byval_arg' in the
28897         mono_type_get_object() call.  The returned type must be
28898         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28899
28900 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28901
28902         * NOTES: New file.
28903
28904         * object.c (mono_class_proxy_vtable): Make it thread safe.
28905
28906         * pedump.c: Fix warning.
28907
28908         * object.c appdomain.h: Get rid of metadata_section. 
28909         It is no longer needed and it was causing deadlocks with domain->lock.
28910
28911         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28912
28913 2003-08-26  Martin Baulig  <martin@ximian.com>
28914
28915         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28916
28917 2003-08-26  Martin Baulig  <martin@ximian.com>
28918
28919         * pedump.c (main): Call mono_metadata_init(),
28920         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28921         and mono_loader_init().
28922
28923 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28924
28925         * loader.h: Add missing include to fix build.
28926
28927         * image.h: mono_image_load_references is no more.
28928
28929         * assembly.c: Reworked assembly loading to make it really thread safe.
28930         After these changes, the assembly returned by mono_assembly_open is
28931         fully initialized, i.e. all its references assemblies are loaded.
28932
28933         * assembly.c (mono_image_load_references): Renamed to 
28934         mono_assembly_load_references, and made private, since clients no
28935         longer need to call it.
28936
28937         * class.c: Removed calls to mono_assembly_load_references, since it was
28938         a source of deadlocks.
28939
28940         * loader.h loader.c class.h class.c: Protect data structures using a 
28941         new lock, the loader lock.
28942
28943         * class.c (mono_class_setup_vtable): Create temporary hash tables and
28944         GPtrArrays only when needed.
28945
28946         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
28947         into empty structures by mcs. Fixes pinvoke7.cs.
28948         
28949         * domain.c (mono_init): Call a new initialization function.
28950
28951         * appdomain.c (mono_runtime_init): Call the new initializer function
28952         of the marshal module.
28953
28954         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
28955         inserted into empty structures by mcs. Fixes pinvoke7.cs.
28956
28957         * marshal.h marshal.c: Added locks around the wrapper caches to make
28958         this module thread safe.
28959
28960         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
28961         this argument. Fixes pinvoke1.exe.
28962
28963 2003-08-25  Lluis Sanchez <lluis@ximian.com>
28964
28965         * object.h: Added call_type field to MonoMethodMessage and the corresponding
28966         enumeration of values. Removed fields to store remote call output values in
28967         MonoAsyncResult. Not needed any more.
28968         * object.c: Initialize call_type and async_result fields in mono_message_init.
28969         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
28970         dispatching the message.
28971         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
28972         async call to finish. To do it use a message with EndInvoke call type.
28973
28974 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
28975
28976         * loader.h loader.c (mono_method_hash_marhal_info): New function which
28977         determines whenever a method has marshalling info.
28978
28979 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28980
28981         * assembly.c: fix the build on windows.
28982
28983 2003-08-22 Lluis Sanchez <lluis@ximian.com>
28984
28985         * object.cs: Fixed bug #47785.
28986
28987 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
28988
28989         * string-icalls.c (StringReplace): If their are no occurances of
28990         the old string found return a reference to the supplied
28991         string. This saves some memory and matches MS behavoir.
28992         
28993 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28994
28995         * socket-io.c: fixed compilation for systems that define AF_INET6
28996         and don't define SOL_IP/SOL_IPV6.
28997
28998 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
28999
29000         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
29001         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
29002
29003         * rawbuffer.c rawbuffer.h: Make this module thread safe.
29004
29005         * domain.c: Make this module thread safe.
29006
29007         * domain.c (mono_init): Call new initialization function.
29008
29009         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
29010         reference types too. Fixes #38812.
29011
29012         * image.c (mono_image_init): Fixed warnings.
29013
29014         * class.c (mono_class_from_typeref): Handle assembly load failure
29015         correctly.
29016
29017         * appdomain.c (add_assemblies_to_domain): Handle the case when
29018         the references of an assembly are not yet loaded.
29019
29020         * metadata.c image.c assembly.c: Moved initialization of global
29021         variables to a separate function called at startup since lazy 
29022         initialization of these variables is not thread safe.
29023         
29024         * image.c assembly.c: Made this module thread safe by adding locks in 
29025         the appropriate places.
29026
29027         * domain.c (mono_init): Call the new initialization functions of the
29028         three modules.
29029
29030 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
29031
29032         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
29033           make a direct call. It is proxy's work to make the call asynchronous.
29034           mono_delegate_end_invoke(): If the targe is a proxy, just collect
29035           the return values.
29036         * object.cs: mono_method_call_message_new(): read AsyncResult and
29037           state object from parameters list, if this info is requested.
29038         * object.h: Added fields to store remote call output values in
29039           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
29040
29041 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29042
29043         * object.h: add needed fields to MonoThread.
29044         * threads.c, threads.h: allow registering a function to cleanup data
29045         allocated per thread by the JIT.
29046
29047 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29048
29049         * loader.h: portability fix by Bernie Solomon
29050         * <bernard@ugsolutions.com>.
29051
29052 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29053
29054         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29055         return a MonoArray. This simplifies the code and also ensures that
29056         the cache allways contains an object reference as a value.
29057
29058         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29059         function.
29060
29061 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29062
29063         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29064         fixes a problem with byte ordering when getting the address family for
29065         a socket.
29066
29067 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29068
29069         * .cvsignore: Added monosn.
29070
29071         * reflection.h reflection.c loader.c: Added support for parameter
29072         marshalling to dynamically created types. Fixes #47295.
29073
29074 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29075
29076         * rand.c: remove useless warnings.
29077
29078 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29079
29080         * class.c: implemented ldtoken for methods and fieldrefs.
29081
29082 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29083
29084         * threadpool.c: when mono_async_invoke was called, no one took care of
29085         monitoring the queue. So if the method invoked took some time and we
29086         got new async invoke requests after 500 ms (the thread created waited
29087         that long in WaitForSingleObject), the new async invoke was not called
29088         until the previous one finished.
29089
29090         This is fixed now. Thanks to Totte for helping with it.
29091
29092 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29093
29094         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29095
29096 2003-08-11  Martin Baulig  <martin@ximian.com>
29097
29098         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29099
29100 2003-08-06  Martin Baulig  <martin@ximian.com>
29101
29102         * mono-debug-debugger.c: Added support for static fields,
29103         properties and methods.
29104
29105 2003-08-06  Martin Baulig  <martin@ximian.com>
29106
29107         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29108         make this work for applications with multiple application domains.
29109
29110 2003-08-04  Martin Baulig  <martin@ximian.com>
29111
29112         * mono-debug-debugger.c: Completely reworked the type support; the
29113         most important thing is that we're now just using one single
29114         `MonoType' instance per type.
29115
29116 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29117
29118         * mono-endian.h, mono-endian.c, icall.c: Added icall
29119         ves_icall_System_Double_AssertEndianity to assert double word endianity
29120         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29121
29122 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29123
29124         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29125         support, icalls and fixes.
29126
29127 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29128
29129         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29130         classes that are a punctuation character in .NET is not the same a
29131         g_unichar_ispunct.
29132
29133 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29134
29135         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29136
29137 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29138
29139         * icall.c: Add new MemCopy internalcall.
29140         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29141         Simplified code; It is not necessary to handle all the cases here,
29142         as the C# code takes care of it.  Only handle the case of the name
29143         resource embedded into the assembly.
29144
29145         Changed signature to return the data pointer and the size of the
29146         data. 
29147
29148 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29149
29150         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29151         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29152
29153 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29154
29155         * socket-io.c: ignore EINTR error in select.
29156
29157 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29158
29159         * class.h, class.c: removed unused subclasses field in MonoClass.
29160
29161 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29162
29163         * icall.c: improve fix of get_base_definition(). If the parent class
29164           doesn't have the mehod, look at the parent of the parent.
29165         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29166           to check if a parameter is an in or out parameter
29167           (PARAM_ATTRIBUTE_IN is not set by default).
29168           mono_method_return_message_restore(): Use mono_class_value_size to
29169           get the size of a value type. mono_type_stack_size (parameterType)
29170           does not return the correct value if parameterType is byRef.
29171           mono_load_remote_field(), mono_load_remote_field_new(),
29172           mono_store_remote_field(), mono_store_remote_field_new():
29173           raise exception if the remote call returns an exception.
29174
29175 2003-07-28  Martin Baulig  <martin@ximian.com>
29176
29177         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29178         method.  This is a wrapper around mono_runtime_invoke() which
29179         boxes the instance object if neccessary.
29180
29181 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29182
29183         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29184         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29185
29186 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29187
29188         * icall.c: disable mcs bug workaround.
29189
29190 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29191
29192         * object.c (mono_runtime_class_init): Take the metadata_section
29193         mutex before obtaining the domain mutex.
29194
29195         * appdomain.h: Added definition of metadata_section mutex here. 
29196
29197         * object.c: define metadata_mutex here.
29198
29199 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29200
29201         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29202         fixed.
29203
29204 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29205
29206         * reflection.c: Fix bug #46669
29207
29208 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29209
29210         * exception.c:
29211         * exception.h:
29212         * icall.c:
29213         * object.h: fill in the type name for TypeLoadException.
29214
29215 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29216
29217         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29218         relationship between TypeBuilders while compiling corlib) and bug
29219         45993 (Array types returned from the runtime while compiling
29220         corlib were from the loaded corlib).
29221
29222 2003-07-22  Martin Baulig  <martin@ximian.com>
29223
29224         * mono-debug-debugger.c: Reworked the type support a bit more;
29225         distinguish between types and classes.
29226
29227 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29228
29229         * icall.c: add IsArrayImpl icall.
29230
29231 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29232
29233         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29234         initializing real_size only once. Also fix bug #46602.
29235
29236 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29237
29238         * object.c: Renamed mono_metadata_section to metadata_section.
29239
29240 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29241
29242         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29243           empty array if the type is an array. Fixed.
29244           ves_icall_MonoMethod_get_base_definition: if the base method
29245           is abstract, get the MethodInfo from the list of methods of
29246           the class.
29247         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29248           and it was 1-based. Fixed in mono_param_get_objects.
29249
29250 2003-07-20  Martin Baulig  <martin@ximian.com>
29251
29252         * mono-debug.h: Set version number to 31.
29253         (mono_debug_init): Added `MonoDomain *' argument.
29254
29255         * mono-debug-debugger.c: Reworked the type support; explicitly
29256         tell the debugger about builtin types; pass the `klass' address to
29257         the debugger.
29258
29259 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29260
29261         * image.c: Allow new metadata tables to be loaded without a
29262         warning. Also update the warning message to give the new constant value.
29263                 
29264 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29265
29266         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29267         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29268         array type representation changes.
29269
29270 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29271
29272         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29273         on Environment.Exit () call.
29274
29275 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29276
29277         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29278         requires a matching corlib.
29279
29280 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29281
29282         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29283           Committed again without the CRs.
29284         
29285 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29286
29287         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29288           getting it from the "this" socket instance. Did not work
29289           if the socket is a subclass of Socket.
29290           Also fixed bug #35371.
29291
29292 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29293
29294         * metadata.c: fixed size for TypedByRef.
29295         * loader.c: when searching for a method, consider the vararg amrker.
29296         * unicode.c, decimal.c: constify some arrays.
29297
29298 2003-07-15  Dick Porter  <dick@ximian.com>
29299
29300         * socket-io.c: Fixed compilation for gcc < 3.2.
29301
29302         Fixed compilation for machines that don't have AF_INET6 (thanks to
29303         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29304
29305         Fixed compile warnings.
29306         
29307         Fixed formatting and line endings.
29308
29309 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29310
29311         * socket-io.h:
29312         * socket-io.c: Added IPv6 support.
29313
29314 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29315
29316         * class.c (mono_class_is_assignable_from): New function to implement
29317         the is_assignable_from logic. Used by mono_object_isinst, 
29318         Type::IsAssignableFrom () and the interpreter.
29319
29320         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29321         Object, even interfaces.
29322         
29323         * object.c (mono_object_isinst): Implement in terms of 
29324         is_assignable_from.
29325
29326         * icall.c (ves_icall_type_is_assignable_from): New icall.
29327
29328 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29329
29330         * domain.c (foreach_domain): fix compiler warning.
29331
29332 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29333
29334         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29335         not available on all plattforms
29336
29337 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29338
29339         * image.h image.c: Store the metadata version string in MonoImage.
29340         * icall.c: New icall to retrieve the image version.
29341         * reflection.c (create_dynamic_image): Fill in the image version field
29342         * reflection.c (build_compressed_metadata): Use the image version
29343         from the image structure.
29344
29345 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29346
29347         * appdomain.c: modified comment.
29348         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29349         That will be its last iteration when mono_gc_cleanup is called from
29350         mono_runtime_cleanup and before the domain is unloaded.
29351
29352         Fixes bug #45962.
29353
29354 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29355
29356         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29357         attributes.
29358
29359 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29360
29361         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29362         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29363         Bernie Solomon <bernard@ugsolutions.com>.
29364
29365 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29366
29367         * object.c, object.h: provide mono_object_new_fast() for faster
29368         allocation in some special cases.
29369
29370 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29371
29372         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29373         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29374
29375 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29376
29377         * threadpool.c: fix leaks.
29378
29379 2003-07-01  Dick Porter  <dick@ximian.com>
29380
29381         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29382         using MonoGHashTables.  Fixes threadpool bug posted to list.
29383
29384 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29385
29386         * image.h, image.c: added support to load an assembly from a byte array.
29387         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29388         assembly bundle support.
29389
29390 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29391
29392         * threadpool.c (mono_thread_pool_add): keep a reference to the
29393         AsyncResult to prevent GC
29394
29395 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29396
29397         * class.c: leak fix.
29398
29399 2003-06-25  Dick Porter  <dick@ximian.com>
29400
29401         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29402         for the async object, the WaitHandle object will close the handle.
29403         Fixes bug 45321.
29404
29405 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29406
29407         * class.c: in mono_array_class_get (), lookup from the hash with the
29408         same type we insert: this works around a bug in
29409         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29410         lluis. The real fix will have to wait for after the release.
29411
29412 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29413
29414         * icall.c: fix memory leak when getting type members.
29415
29416 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29417
29418         * reflection.c: added more pubtoken special cases.
29419
29420 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29421
29422         * class.c: handle field offset correctly when class size
29423         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29424
29425 2003-06-20  Martin Baulig  <martin@ximian.com>
29426
29427         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29428         *image' field.
29429
29430 2003-06-20  Martin Baulig  <martin@ximian.com>
29431
29432         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29433
29434 2003-06-20  Martin Baulig  <martin@ximian.com>
29435
29436         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29437         just distinguish between variables in registers and variables at
29438         an offset relative to a register.
29439
29440 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29441
29442         * icall.c: #ifdef out latest changes until mcs is fixed.
29443
29444 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29445
29446         * icall.c: return members in metadata order.
29447
29448 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29449
29450         * icall.c: avoid infinite loop in GetTimeZoneData.
29451
29452 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29453
29454         * icall.c: added Marshal.Prelink/All icalls.
29455
29456 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29457
29458         * object.c, object.h: fix warnings and do some overflow checking
29459         when creating arrays.
29460
29461 2003-06-17  Dick Porter  <dick@ximian.com>
29462
29463         * file-io.h:
29464         * file-io.c: File attributes need to be tweaked slightly when
29465         passed from the managed to the w32 world.
29466
29467 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29468         * profiler.h profiler-private.h profiler.c: Rework last patch
29469         based on suggestion by Paolo.
29470         
29471 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29472
29473         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
29474         instruction level coverage data collection.
29475         * profiler.h profiler.c (: Added new callback function which can be
29476         used by the profiler to limit which functions should have coverage
29477         instrumentation.
29478         * profiler.c (mono_profiler_load): Call g_module_build_path to
29479         generate the file name of the profiler library.
29480
29481 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29482
29483         * profiler.c, profiler.h, profiler-private.h: added basic block 
29484         coverage profiling API.
29485
29486 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
29487
29488         * reflection.c (mono_reflection_create_runtime_class): Add support
29489         for events in dynamically generated code.
29490
29491         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
29492         not allocated.
29493
29494 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29495
29496         * icall.c: when getting timezone info, return reasonable values if we
29497         can't get the actual data.
29498
29499 2003-06-14  Dick Porter  <dick@ximian.com>
29500
29501         * threads.c (start_wrapper): Remove the reference to the thread
29502         object in the TLS data, so the thread object can be finalized.
29503         This won't be reached if the thread threw an uncaught exception,
29504         so those thread handles will stay referenced :-( (This is due to
29505         missing support for scanning thread-specific data in the Boehm GC
29506         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
29507
29508 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29509
29510         * reflection.c: ensure streams and tables are first allocated with
29511         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29512
29513 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29514
29515         * icall.c: fixed GetElementType for byrefs (bug# 44792).
29516
29517 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
29518
29519         * reflection.c (mono_reflection_create_runtime_class): Add support for
29520         properties to dynamically created classes.
29521         * reflection.c: Fix a few places where non-MonoObjects were inserted
29522         into the tokens hashtable.
29523
29524 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29525
29526         * object.c: some support to handle out of memory exceptions.
29527
29528 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
29529
29530         * marshal.c (mono_marshal_get_native_wrapper): support reference
29531         return types
29532
29533 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29534
29535         * object.h, object.c: more portability stuff from Bernie Solomon.
29536         Unexport mono_object_allocate(). Added mono_object_unbox ().
29537         Set exitcode when an unhandled exception is thrown.
29538
29539 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
29540
29541         * marshal.c (mono_marshal_get_native_wrapper): use custom
29542         marshaler for return types.
29543
29544 2003-06-10  Dick Porter  <dick@ximian.com>
29545
29546         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
29547         ip_mreq is available
29548
29549 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
29550
29551         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
29552         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
29553         by Bernie Solomon <bernard@ugsolutions.com>.
29554
29555 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
29556
29557         * gc.c (mono_gc_init): Avoid error message on shutdown when
29558         GC_DONT_GC=1 is used.
29559
29560         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
29561         New icall to return the GUID of a module.
29562
29563 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29564
29565         * class.c: ensure instance size always includes the parent's size
29566         even whem class size is set explicitly (fixes bug#44294).
29567
29568 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29569
29570         * profiler.h, profiler.c: made the simple profiler thread-safe,
29571         get more accurate timing info. Allow the loading of an
29572         externally-developed profiler module.
29573
29574 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
29575
29576         * marshal.c (mono_marshal_get_native_wrapper): improved
29577         class/byref arguments.
29578         (mono_marshal_get_native_wrapper): better string marshaling support.
29579
29580 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
29581
29582         * class.c: ensure .pack and .size are handled correctly and
29583         simplified layout of static fields.
29584
29585 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
29586
29587         * appdomain.c
29588         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
29589
29590         * loader.c (mono_lookup_pinvoke_call): look for modules in the
29591         current directory (fix bug 44008)
29592
29593 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
29594
29595         * marshal.c (mono_marshal_get_native_wrapper): started support for
29596         custom marshalers.
29597         (mono_delegate_to_ftnptr): consider marshalling specifications
29598
29599 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
29600
29601         * reflection.c, reflection.h: emit custom marshal info.
29602
29603 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29604
29605         * object.c: free the GError.
29606         * icall.c: added CloseEvent_internal.
29607         * threads.[ch]:
29608         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
29609         call.
29610
29611 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
29612
29613         * loader.c (mono_method_get_signature): Add support for dynamic
29614         assemblies.
29615
29616 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
29617
29618         * reflection.c: fixed bug #43905.
29619
29620 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29621
29622         * class.c, domain.c, icall.c, metadata.h, object.h: support for
29623         handling TypedReference and ArgIterator.
29624         * loader.c, loader.h: added function to get signature at call site.
29625
29626 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29627
29628         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
29629         data readonly. Buglets and warning fixes. Some MethodSpec support.
29630
29631 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29632
29633         * class.h, class.c, object.c: remove relative numbering support.
29634
29635 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
29636
29637         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
29638         free the string, until we get a chance to fix Gtk#
29639
29640 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29641
29642         * marshal.c: revert last patch.
29643
29644 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
29645
29646         * icall.c: updates for new mono_class_vtable() not calling
29647         the type constructor anymore.
29648
29649 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29650
29651         * object.h, object.c: separate vtable creation from type
29652         initialization. Make running the .cctor thread safe.
29653
29654 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
29655
29656         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
29657
29658 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
29659
29660         * loader.c (mono_get_method): consider calling convention
29661
29662 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
29663
29664         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
29665         to return the invisible global type for a module.
29666
29667         * reflection.c (mono_image_build_metadata): Emit global fields too.
29668
29669 2003-05-20  Peter Williams  <peterw@ximian.com>
29670
29671         * loader.c (mono_lookup_internal_call): Add a few newlines.
29672
29673 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
29674
29675         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
29676         literal strings.
29677
29678         * appdomain.c (set_domain_search_path): Recalculate search path when
29679         AppDomainSetup.PrivateBinPath changes.
29680
29681         * object.c (mono_class_compute_gc_descriptor): It turns out some
29682         parts of the class libs (like System.Thread) holds pointers to
29683         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
29684         to treat native int a pointer type here.
29685         
29686 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
29687
29688         * appdomain.h, domain.c: add hashtable for jump target resolution.
29689
29690 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
29691
29692         * reflection.h reflection.c icall.c: Added new icalls 
29693         GetManifestResourceInfoInternal, GetModulesInternal and support
29694         infrastructure.
29695
29696 2003-05-16  Dick Porter  <dick@ximian.com>
29697
29698         * icall.c:
29699         * file-io.h:
29700         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29701
29702 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29703
29704         * object.c: mono_store_remote_field: little fix to previous patch.
29705
29706 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29707
29708         * class.c: add constructors to array classes.
29709         * icall.c: special case array construction for InternalInvoke (),
29710
29711 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29712
29713         * class.h class.c reflection.c object.c: Added support for field
29714         defaults in dynamically generated classes.
29715
29716 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29717
29718         * reflection.c: properly encode charset for ddlimport.
29719
29720 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29721
29722         * threads.c: allow compiling without GC.
29723
29724 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29725
29726         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29727         handling of thread static data.
29728
29729 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29730
29731         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29732
29733 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29734
29735         * class.c (mono_array_class_get): always set the serializable flags
29736         (mono_array_class_get): always set the SEALED attribute for array types
29737
29738 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29739
29740         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29741         attributes (fix for bug 42021).
29742
29743 2003-05-12  Dick Porter  <dick@ximian.com>
29744
29745         * gc.c: Don't run finalizers when the finalizer thread is
29746         finishing up, because the default domain has already been
29747         destroyed.
29748
29749 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29750
29751         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29752         value is null, we should throw an exception.   This is slightly
29753         different than the other conventions used for the constructor.
29754
29755 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29756
29757         * socket-io.c: fixed windows build.
29758
29759 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29760
29761         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29762
29763 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29764
29765         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29766         compilers.
29767
29768 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29769
29770         * class.c (mono_class_layout_fields): Add experimental GC aware
29771         auto layout facility. Requires class library changes to work correctly.
29772
29773         (mono_class_setup_vtable): Avoid overriding explicit interface
29774         method implementations. Fixes iface3.exe test.
29775
29776         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29777         object reference.
29778         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29779         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29780
29781         * metadata.h: Add new type classification macro which determines
29782         whenever the type holds an object reference.
29783
29784 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29785
29786         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29787
29788 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29789
29790         * gc.c (finalizer_thread): Work around a GC bug.
29791
29792 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29793
29794         * marshal.c (emit_struct_conv): allow unions
29795
29796         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29797
29798 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29799
29800         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29801
29802 2003-05-06  Martin Baulig  <martin@ximian.com>
29803
29804         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29805
29806 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29807
29808         * socket-io.c:
29809         (Select_internal): allow NULLs, don't create arrays if not needed.
29810         Coupled with Socket.cs changes.
29811
29812         * threadpool.c:
29813         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29814         register a finalizer for it that will close the semaphore handle. This
29815         fixes the leak and make Lupus' test run with > 4080 loops.
29816
29817 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29818
29819         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29820         Jerome Laban (bug #42287)
29821
29822 2003-05-02  Martin Baulig  <martin@ximian.com>
29823
29824         * debug-mono-symfile.h
29825         (MonoSymbolFile): Moved declaration into mono-debug.h.
29826         (MonoDebugMethodJitInfo): Likewise.
29827         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29828         argument.
29829         (_mono_debug_address_from_il_offset): Take a
29830         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29831
29832         * mono-debug.h
29833         (MonoDebugDomainData): New struct.
29834         (mono_debug_get_domain_data): New function.
29835         (mono_debug_add_method): Take an additional `MonoDomain *'
29836         argument.
29837         (mono_debug_source_location_from_address): Likewise.
29838         (mono_debug_il_offset_from_address): Likewise.
29839         (mono_debug_address_from_il_offset): Likewise.
29840
29841 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29842
29843         * reflection.c: one more check for null type in custom attrs.
29844
29845 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29846
29847         * reflection.c: avoid warning (comparison is always false due to limited
29848         range of data type).
29849
29850 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29851
29852         * icall.c: throw an exception in Type.GetField if the argument 'name'
29853         is NULL.
29854
29855 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
29856
29857         * reflection.c: fixed handling of enums in named arguments to custom
29858         attributes (bug #42123).
29859
29860 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
29861
29862         * reflection.c: use the right array element type and handle
29863         a null for a Type argument, too.
29864
29865 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
29866
29867         * reflection.c: handle arrays as arguments to custom attributes.
29868
29869 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29870
29871         * reflection.c: handle a string value in a custom attr
29872         ctor that takes an object.
29873
29874 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
29875
29876         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
29877         (fix bug #42063)
29878
29879 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
29880
29881         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
29882
29883 2003-04-27  Martin Baulig  <martin@ximian.com>
29884
29885         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29886         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29887         MONO_DEBUGGER_EVENT_BREAKPOINT.
29888         (mono_breakpoint_trampoline_code): Removed.
29889         (mono_debugger_event_handler): The last argument is now a
29890         `guint32'.
29891         (mono_debugger_insert_breakpoint_full): Removed the
29892         `use_trampoline' argument.
29893         (mono_debugger_method_has_breakpoint): Likewise.
29894         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29895         mono_debugger_breakpoint_callback(); take the method and
29896         breakpoint number as arguments.
29897
29898 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29899
29900         * metadata.c: fix off by one when loading parameters attributes.
29901
29902 2003-04-24  Martin Baulig  <martin@ximian.com>
29903
29904         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29905
29906 2003-04-24  Martin Baulig  <martin@ximian.com>
29907
29908         * mono-debug-debugger.c: Moved all code which interacts with the
29909         Mono Debugger here.
29910
29911         * debug-mono-symfile.c: This code now just deals with the symbol
29912         file itself, the debugger code is now in mono-debug-debugger.c.
29913
29914 2003-04-23  Martin Baulig  <martin@ximian.com>
29915
29916         * mono-debug.c (mono_debug_source_location_from_il_offset):
29917         New method; like mono_debug_source_location_from_address(), but
29918         takes an IL offset instead of a machine address.
29919
29920 2003-04-23  Martin Baulig  <martin@ximian.com>
29921
29922         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29923         `line' field; this is now computed by the debugger.
29924
29925 2003-04-23  Martin Baulig  <martin@ximian.com>
29926
29927         * mono-debug.[ch]: New files.  This is the new debugging interface.
29928
29929         * mono-debug-debugger.[ch]: New files.  Moved all code which
29930         interacts with the Mono Debugger here.
29931
29932 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
29933
29934         * domain.c (mono_init): initialize mono_defaults.monitor_class
29935
29936 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
29937
29938         * reflection.c (method_encode_code): Add a spicy exception to help
29939         future compiler authors.
29940
29941 2003-04-21  Martin Baulig  <martin@ximian.com>
29942
29943         * icall.c
29944         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29945         Make this work with relative pathnames; g_filename_to_uri() needs
29946         an absolute filename.
29947
29948 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
29949
29950         * icall.c: Track name changes in Object and ValueType.
29951
29952 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
29953
29954         * metadata.c (mono_type_stack_size): size should be a multiple of
29955         sizeof (gpointer)
29956
29957 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29958
29959         * gc.c:
29960         (internal_domain_finalize): moved into mono_domain_finalize. No need
29961         to create another thread because the finalizers will be run in the
29962         finalizer thread.
29963         
29964         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
29965         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
29966         to be run (MS does this too).
29967
29968 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
29969
29970         * object.c (mono_class_compute_gc_descriptor): Update comment.
29971
29972         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
29973
29974         * image.h: Add synchronized wrapper cache.
29975
29976         * image.c (do_mono_image_open): Initialize cache.
29977
29978         * reflection.c (create_dynamic_mono_image): Initialize cache.
29979
29980 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29981
29982         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
29983         ves_icall_System_Buffer_ByteLengthInternal.
29984
29985 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29986
29987         * reflection.c: setup klass->nested_in earlier. Allow
29988         a dash in the assembly name.
29989
29990 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
29991
29992         * metadata.c (mono_type_to_unmanaged): dont access
29993         type->data.klass for MONO_TYPE_OBJECT
29994         (mono_type_to_unmanaged): consider System.Delegate class
29995
29996 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
29997
29998         * class.c: just setup supertypes in the proper place instead of
29999         initializing the full element class for arrays.
30000
30001 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30002
30003         * class.c: ensure the element class of arrays is initialized.
30004         Setup the supertype info for array classes, too.
30005
30006 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
30007
30008         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
30009
30010 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30011
30012         * Makefile.am: re-added -m option when running cygpath. This way,
30013         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
30014         separator.
30015         * mono-config.c: same codepath for locating mono config file for WIN32
30016         and the rest.
30017         * assembly.c: if mono_assembly_setrootdir is called, don't override
30018         the value set.
30019
30020 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30021
30022         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
30023         MONO_ASSEMBLIES variable.
30024
30025 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
30026
30027         * icall.c: added Assembly::GetNamespaces() icall.
30028
30029 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30030
30031         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
30032
30033 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
30034
30035         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
30036         * object.c: fixed bug in the construction of vtable for proxies
30037
30038 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
30039
30040         * object.c (mono_array_new): Mark mono_array_new as an icall.
30041
30042 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30043
30044         * class.c: fixed test for public method when overriding interfaces.
30045         Closes bug #40970.
30046
30047 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30048
30049         * appdomain.h, domain.c: added mono_domain_foreach() to
30050         be able to access the currently loaded appdomains.
30051         * object.c: make string interning work across sppdomains.
30052         Mark some functions for use as icalls.
30053
30054 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30055
30056         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30057
30058         * reflection.h reflection.c: Allocate long living data using 
30059         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30060
30061         * reflection.c: Double the allocation size in streams instead of
30062         increasing it, to prevent unneccesary copying on large assemblies.
30063         
30064         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30065         creation if the assembly does not have the Run flag set.
30066
30067 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30068
30069         * class.h: avoid the C++ keywords in header files (Jerome Laban
30070         spotted and fixed this).
30071
30072 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30073
30074         * object.c:
30075         (mono_unhandled_exception): fill in the arguments for the
30076         UnhandledException event. Only trigger that event for the default
30077         domain (as MS does).
30078
30079 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30080
30081         * object.c: Improve typed allocation stuff based on suggestions from
30082         Paolo. Also turn it on if the GC library supports it.
30083
30084 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30085
30086         * object.c object.h class.h: Added experimental typed allocation
30087         facility using the interfaces in gc_gcj.h.
30088
30089         * os/gc_wrapper.h: Added new include files.
30090         
30091 2003-04-03  Martin Baulig  <martin@ximian.com>
30092
30093         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30094         which is not yet enabled by default.
30095
30096         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30097         functions.
30098         (mono_gc_lock, mono_gc_unlock): New static functions.
30099
30100         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30101         functions; stop/start the world for the garbage collector.  This
30102         is using the windows API; we need to complete the SuspendThread()/
30103         ResumeThread() implementation in the io-layer to make this work on Unix.
30104         (mono_gc_push_all_stacks): New public function; tells the garbage
30105         collector about the stack pointers from all managed threads.
30106
30107 2003-04-03  Martin Baulig  <martin@ximian.com>
30108
30109         * object.h (MonoThread): Added `gpointer stack_ptr'.
30110
30111         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30112
30113 2003-04-03  Martin Baulig  <martin@ximian.com>
30114
30115         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30116
30117 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30118
30119         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30120         field.last.
30121
30122 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30123
30124         * loader.c (mono_lookup_internal_call): Report the corlib that is
30125         out of sync.
30126
30127 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30128
30129         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30130         System.DBNull (it's class not valuetype).
30131
30132 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30133
30134         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30135         if the array method was already assigned a token (fixes bug#40646).
30136
30137 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30138
30139         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30140         if no assembly is given.
30141
30142 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30143
30144         * metadata.h: Added the new tables.
30145
30146         * row-indexes.h: Added definitions for new tables.
30147
30148         * metadata.c: Add schemas for new tables, and add support for
30149         computing the sizes of them.
30150
30151         * class.c: Update for handling the new type cases.
30152
30153 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30154
30155         * metadata.h (MONO_TYPE_IS_VOID): new macro
30156
30157 2003-03-31  Martin Baulig  <martin@ximian.com>
30158
30159         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30160
30161         * threads.c (mono_thread_new_init): Call `thread_created' in the
30162         mono_thread_callbacks.
30163
30164 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30165
30166         * loader.h: added marshalbyrefobject_class to mono_defaults
30167         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30168         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30169           generation of output parameters.
30170           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30171         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30172           contextbound and the target object belongs to the context of the caller.
30173         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30174         * object.c: Implemented support for interfaces and abstract classes
30175           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30176           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30177
30178 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30179
30180         * class.h class.c (mono_class_is_subclass_of): New function.
30181         
30182         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30183         routines for most common case (calls from ArrayList::ToArray).
30184
30185         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30186         routine so programs which call Environment::Exit() can be profiled.
30187
30188         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30189         Added MONO_ARCH_SAVE_REGS.
30190
30191         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30192
30193 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30194
30195         * blob.h: Add a couple of new MonoType types definitions.
30196
30197         * tabledefs.h: Add a couple of new call convs.
30198
30199 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30200
30201         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30202         the layout of the class.
30203
30204         * reflection.c (alloc_table): double the size on overflow to avoid
30205         unnecessary copying.
30206
30207         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30208         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30209         null so it can be garbage collected.
30210         
30211 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30212
30213         * reflection.c (mono_reflection_get_type): Return the resolved type
30214         only if it is in the assembly we searched.
30215
30216         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30217
30218         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30219         method.
30220
30221 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30222
30223         * appdomain.c:
30224         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30225         the right one is 'file:///blah', but MS allows it.
30226         * assembly.c:
30227         (mono_assembly_open): allow 'file://blah'
30228
30229         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30230
30231 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30232
30233         * socket-io.c: fixes bug #40310.
30234
30235 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30236
30237         * reflection.c (mono_reflection_parse_type): handle deeply nested
30238         types correctly.
30239
30240         * reflection.c (mono_image_create_token): Use unique token values
30241         since they will be put into a hash table.
30242
30243         * class.c (mono_class_setup_vtable): If a method occurs in more than
30244         one place in the vtable, and it gets overriden, then change the
30245         other occurances too.
30246
30247         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30248         object as return type.
30249
30250 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30251
30252         * icall.c: Deleted "ToString" implementation for double and float
30253         because they are full implemented in managed code.
30254
30255 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30256
30257         * reflection.c, reflection.h: implemented and exported functions
30258         to retrieve info about custom attributes.
30259
30260 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30261
30262         * appdomain.c: moved Uri handling to assembly.c
30263         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30264         work when using a file Uri in *nix and windows.
30265
30266         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30267         GetReferencedAssemblies.
30268
30269 2003-03-18  Dick Porter  <dick@ximian.com>
30270
30271         * icall.c: Rename a couple of internal calls
30272
30273         * threads.c: Set the thread state to Stopped when a thread exits.
30274         Fixes bug 39377.
30275
30276 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30277
30278         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30279         New icall.
30280
30281         * object.c (mono_class_vtable): fix warning.
30282
30283 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30284
30285         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30286
30287         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30288         memory.
30289         (method_encode_clauses): Create exception info structures in the right
30290         order.
30291         (mono_reflection_setup_internal_class): Initialize supertypes field.
30292
30293         * class.c object.c: Handle interfaces which implement other interfaces 
30294         correctly.
30295
30296         * class.h class.c: Move the supertypes array initialization code into 
30297         a separate function so it can be used for dynamic types too. Also call
30298         it earlier, in mono_class_init(), since it can be used before the
30299         type is initialized.
30300
30301 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30302
30303         * Makefile.am:
30304         * assembly.c:
30305         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30306
30307         * appdomain.c:
30308         * appdomain.h:
30309         * marshal.c:
30310         * object.c: remove warnings.
30311
30312 2003-03-13  Martin Baulig  <martin@ximian.com>
30313
30314         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30315         (MonoDebugLexicalBlockEntry): New types.
30316
30317         * debug-mono-symfile.c
30318         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30319
30320 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30321
30322         * process.c: ret can be any non-zero value accroding to MS doc.
30323
30324 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30325
30326         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30327         fixing a warning for a miss-used prototype, would have cause
30328         random memory corruption.
30329
30330 2003-03-07  Martin Baulig  <martin@ximian.com>
30331
30332         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30333         getting really annoying ....
30334
30335 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30336
30337         * reflection.c (fixup_method): added support for array methods.
30338
30339 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30340
30341         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30342         (pointed out by Michael Adams).
30343
30344 2003-03-04  Dick Porter  <dick@ximian.com>
30345
30346         * icall.c: Temporarily reverted the Double and Single ToString()
30347         change, because it broke nunit.
30348
30349 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30350
30351         * object.h, threads.h: make include files compatible with C++
30352         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30353
30354 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30355
30356         * icall.c: Erased ToString helper functions for Double and Single.
30357         Now, that implementations ar all in managed code (Double and Single
30358         Formatters).
30359
30360 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30361
30362         * appdomain.c: Added method for initializing the default context of
30363         a domain. Added internal call for getting the default context.
30364         * appdomain.h: Added context variable in MonoDomain struct.
30365         * domain.c: mono_domain_set also sets the default context of the domain
30366         * icall.c: Mapped internal method InternalGetDefaultContext.
30367         * object.c: mono_object_get_virtual_method returns always a remoting
30368         wrapper if the object is a transparent proxy.
30369         mono_runtime_invoke_array: when creating an object by calling the
30370         constructor, if the created object is a proxy, then the constructor should
30371         be called using the a remoting wrapper.
30372
30373 2003-03-03  Dick Porter  <dick@ximian.com>
30374
30375         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30376         variable so it compiles on solaris.  Problem spotted by
30377         Christopher Taylor <ct@cs.clemson.edu>
30378
30379 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30380
30381         * appdomain.c:
30382         (get_info_from_assembly_name): don't leak value.
30383
30384         * icall.c:
30385         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30386         result.
30387
30388 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30389
30390         * assembly.c: export mono_image_load_references ().
30391         * class.c: handle function pointers. mono_class_from_name() now
30392         supports nested type names directly.
30393
30394 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30395
30396         * reflection.h reflection.c: Encode already created dynamic methods 
30397         and fields correctly as a DEF instead of a REF.
30398
30399         * reflection.c: Get rid of the force_ref argument to 
30400         mono_image_typedef_or_ref since it was wrong in the first place.
30401
30402         * string-icalls.c: add error checking to string constructors according
30403         to the MSDN docs.
30404
30405         * reflection.c: Emit types in the order their TypeBuilders were 
30406         created. Previously, a new table index was assigned to each type before
30407         the tables were emitted. This was wrong because the signature blob
30408         might already refer to a type by its original table index.
30409
30410 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30411
30412         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30413         change.
30414         
30415 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30416
30417         * Makefile.am: make assemblies dir have \ instead of / on windows.
30418
30419 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30420
30421         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30422         iterate over the NESTEDCLASS table using a linear search since the
30423         table is not guaranteed to be sorted by the secondary key.
30424
30425         * class.c (mono_class_create_from_typedef): fixed up call to
30426         mono_metadata_nesting_typedef.
30427         
30428 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30429
30430         * marshal.c (mono_string_to_byvalstr): clear the memory as
30431         suggested by Jerome Laban <jlaban@wanadoo.fr>
30432
30433 2003-02-26  Dick Porter  <dick@ximian.com>
30434
30435         * process.c: Cope with padding in .rsrc blocks
30436
30437 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30438
30439         * metadata.h: reverted the filter_len change, it breaks reflection
30440         
30441 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30442
30443         * metadata.h: added a new field to store the filter_len
30444         
30445
30446 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30447
30448         * reflection.c: handle custom attributes for types and members
30449         created with Reflection.Emit (bug#38422).
30450
30451 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30452
30453         * reflection.c: define RTSpecialName automatically for constructors for
30454         compatibility with MS.NET.
30455
30456         * reflection.c (mono_reflection_create_runtime_class): initialize
30457         nested_in field of dynamically created classes.
30458
30459 2003-02-22  Martin Baulig  <martin@ximian.com>
30460
30461         * debug-mono-symfile.h: Incremented version number.
30462
30463 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30464
30465         * object.h icall.c process.c: fix warnings.
30466
30467 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30468
30469         * appdomain.h appdomain.c:
30470         (mono_domain_try_type_resolve): split the 
30471         name_or_tb argument into a name and a tb argument.
30472         (mono_domain_has_type_resolve): new function to check whenever the
30473         application has registered a TypeResolve event handler.
30474         
30475         * icall.c reflection.h reflection.c: move the type resolve logic into
30476         mono_reflection_get_type () so it will be invoked when 
30477         Assembly::GetType () is called.
30478
30479         * reflection.c:
30480         (mono_reflection_get_type): renamed to get_type_internal.
30481         (mono_reflection_get_type): fixed type name generation so it works 
30482         for nested types too.
30483         (mono_reflection_get_type): call has_type_resolve () to avoid the 
30484         costly type name generation if there is no resolve event handler.
30485
30486 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30487
30488         * class.c, image.c: load exported types from file references.
30489
30490 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
30491
30492         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
30493           used to cache the managed methods used to create proxies and make 
30494           remote invocation of methods.
30495         * class.h: Added in MonoVTable a flag to indicate that a class needs 
30496           to be remotely created.
30497         * object.c: Modified the method mono_class_vtable(). It now initializes 
30498           the remote flag of the vtable. Modified mono_object_new_specific(), 
30499           so now it checks the remote flag.
30500         * icall.c: Added a couple of internal methods, one for enabling instance 
30501           creation interception for a type, and one for creating objects bypassing
30502           the remote check.
30503
30504 2003-02-18  Martin Baulig  <martin@ximian.com>
30505
30506         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
30507         New interncall to get a method's metadata token.
30508
30509         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30510         New interncall for the debugger.
30511
30512 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30513
30514         * class.c (mono_class_setup_vtable): allocate supertype array
30515
30516 2003-02-18  Martin Baulig  <martin@ximian.com>
30517
30518         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
30519
30520 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30521
30522         * reflection.c:
30523         (assembly_name_to_aname): jump over unknown properties (i've found
30524         something like: 'type, assembly, version=xxx, custom=null, public...',
30525         so now will ignore custom=null and still get the rest of the values).
30526
30527 2003-02-17  Dick Porter  <dick@ximian.com>
30528
30529         * threads.c: Have Thread.Start() wait for a semaphore to signal
30530         that the thread has set up all its local data.  This fixes bug
30531         34323, where Abort() raced the new thread's TLS data.
30532
30533         Also removes the handle_store() call from start_wrapper, because
30534         threads are now always created suspended and there is no longer a
30535         race between the parent and child threads to store the info.
30536
30537 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
30538
30539         * image.c: explain the #- heap issue in a message, hopefully
30540         avoiding FAQs on mono-list.
30541
30542 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30543
30544         * icall.c:
30545         (GetEntryAssembly): if the domain has not invoked
30546         AppDomain.ExecuteAssembly yet, return the assembly of the default
30547         AppDomain.
30548
30549 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
30550
30551         * class.c (mono_ldtoken): make it work in dynamic assemblies.
30552
30553 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
30554
30555         * metadata.c, reflection.c: simple speedup to type hash
30556         and equals code.
30557
30558 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
30559
30560         * image.c, image.h, class.c, assembly.c: move module loading
30561         to MonoImage. When loading metadata, consider alignemnet from
30562         the start of metadata, not from the metadata address in memory.
30563
30564 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
30565
30566         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
30567         AssemblyBuilder objects. Factored out custom attribute creation into
30568         a separate function.
30569         (create_custom_attr): new function to create custom attributes.
30570
30571 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
30572
30573         * Makefile.am: Got tired of typing the full pathname to pedump.
30574         Until there is another option, am installing this.
30575
30576 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
30577
30578         * class.c (class_compute_field_layout): always set field->parent 
30579         (mono_ldtoken): use mono_defaults.fieldhandle_class;
30580
30581 2003-02-11  Dick Porter  <dick@ximian.com>
30582
30583         * threads-types.h:
30584         * monitor.c: Rewrote Monitor, making lock much faster and
30585         Pulse/Wait work as specified.  Also uses much fewer handles, and only
30586         creates them as needed.
30587
30588         * exception.c: Added SynchronizationLockException
30589
30590         * threads.c: Deleted old Monitor implementation.  The new one is
30591         in a new file.
30592
30593 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
30594
30595         * class.c: handled TypedReference type code. Set the correct size for
30596         class data. Setup interface_offsets for interface classes, too.
30597
30598 2003-02-09  Martin Baulig  <martin@ximian.com>
30599
30600         * debug-mono-symfile.h: Reflect latest symbol writer changes.
30601
30602 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
30603
30604         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
30605         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
30606         * object.c: fixed mono_object_get_virtual_method () for interfaces.
30607         * verify.c: check for code that runs after the end of the method.
30608
30609 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30610
30611         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
30612         "System.Math::Round2".
30613         * sysmath.h: Added Floor, Round and Round2 definitions.
30614         * sysmath.c: Modified certain functions that were not 100% compliant
30615         with MS.NET (math precision) and added the implementation of Floor,
30616         Round and Round2.
30617
30618 2003-02-07  Martin Baulig  <martin@ximian.com>
30619
30620         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
30621
30622 2003-02-07  Martin Baulig  <martin@ximian.com>
30623
30624         * debug-mono-symfile.c: Reflected latest symwriter changes.
30625         (mono_debug_create_mono_symbol_file): Removed.
30626         (mono_debug_open_mono_symbol_file): Take an argument which
30627         specifies whether to create a dynamic symbol file.
30628
30629 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
30630
30631         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
30632
30633 2003-02-05  Martin Baulig  <martin@ximian.com>
30634
30635         * reflection.c (mono_image_build_metadata): Make this public,
30636         protect it against being called multiple times, don't create
30637         resources and don't build the compressed metadata here.
30638         (mono_image_create_pefile): Do this here.
30639
30640         * icall.c
30641         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
30642
30643 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30644
30645         * socket-io.c: fixed bug #36322.
30646
30647 2003-02-06  Piers Haken <piersh@friskit.com>
30648
30649         * appdomain.[ch]:
30650         * class.h:
30651         * debug-mono-symfile.c:
30652         * icall.c:
30653         * loader.c:
30654         * mono-config.c:
30655         * monosn.c:
30656         * reflection.c:
30657         * socket-io.c: warning cleanups
30658
30659 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
30660
30661         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
30662         function. works like remoting invoke, but does a check for the Proxy first.
30663
30664 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
30665
30666         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
30667
30668 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
30669
30670         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
30671         array of pointers.
30672         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
30673         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
30674
30675         * object.c (mono_store_remote_field_new): used by the new jit
30676         instead of mono_store_remote_field
30677         (mono_load_remote_field_new): used by the new jit
30678         instead of mono_load_remote_field
30679
30680 2003-02-05  Patrik Torstensson
30681
30682         * appdomain.c: changed unload to take the domain id instead
30683         of domain
30684         
30685         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
30686
30687
30688 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30689
30690         * appdomain.c: don't look for assemblies in ApplicationBase if
30691         PrivateBinPathProbe is set.
30692
30693 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30694
30695         * object.c: make the first argument in main_args contain the absolute
30696         path to the assembly. Fixes bug #37511.
30697
30698 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30699
30700         * icall.c: get correct UTC offset for countries not using daylight
30701         time saving. Fixes bug #30030.
30702
30703 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30704
30705         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30706         and 1 are the family).
30707
30708 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30709
30710         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30711
30712         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30713
30714 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30715
30716         * reflection.c: added support for SignatureHelper tokens, which is
30717         needed by the Calli opcode.
30718
30719         * reflection.h: track changes to SignatureHelper class.
30720
30721         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30722
30723 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30724
30725         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30726
30727 2003-02-03  Patrik Torstensson
30728         * appdomain.[c|h], domain.c : 
30729          - Added support for getting a domain via domain id
30730          - Support for setting and getting domain from System.AppDomain 
30731            (used in cross appdomain channel)
30732          - Added support for get/set for a MonoAppContext on a thread 
30733            (Context class in System.Runtime.Remoting.Contexts),
30734          - Removed hack in Get/SetData and ExecuteAssembly.
30735         
30736         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30737         the managed world to get control when a proxy is created.
30738
30739         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30740         
30741 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30742
30743         * icall.c
30744         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30745         Populate the codebase field as well.
30746
30747 2003-02-02  Martin Baulig  <martin@ximian.com>
30748
30749         * debug-mono-symfile.c
30750         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30751         (mono_debug_symfile_add_method): Allow interncalls.
30752
30753 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30754
30755         * icall.c: throw parse exception if strtod fails or the string is empty.
30756
30757 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30758
30759         * marshal.c: handle object type separately from defined
30760         class types.
30761
30762 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30763
30764         * marshal.c: handle NATIVE_LPSTR for strings when it's
30765         explicitly specified.
30766
30767 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30768
30769         * reflection.c, reflection.h, icall.c: setup the reflection
30770         handle cache for ModuleBuilders and AssemblyBuilders.
30771
30772 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30773
30774         * reflection.c (reflection_methodbuilder_to_mono_method): set
30775         pinvoke flag
30776
30777 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30778
30779         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30780
30781 2003-01-29  Dick Porter  <dick@ximian.com>
30782
30783         * threads.c: No need for the fake_thread kludge now that Thread
30784         doesn't run a class constructor
30785         
30786 2003-01-29  Dick Porter  <dick@ximian.com>
30787
30788         * threads.c: Use g_direct_hash instead of the rather bogus
30789         g_int_hash
30790
30791 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30792
30793         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30794         (fix pinvoke12.exe)
30795         (mono_marshal_get_struct_to_ptr): generate valid IL code
30796         (mono_marshal_get_ptr_to_struct): generate valid IL code
30797         (*): correctly set sig->pinvoke, we need to memdup the signature
30798         to do that
30799
30800 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30801
30802         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30803         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30804
30805 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30806
30807         * profiler.c: provide more callers information.
30808
30809 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30810
30811         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30812
30813         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30814
30815         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30816
30817 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30818
30819         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30820         exception instead of going into an infinite loop on dates which it 
30821         can't yet handle.
30822
30823         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30824         out-of-range exception if needed.
30825
30826         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30827         an implementation for an interface method and to override an inherited
30828         method at the same time. 
30829         Imagine a scenario when a virtual method is used to override a
30830         virtual abstract method in a parent class, and this same method 
30831         provides an implementation for an method inherited from an interface. 
30832         In this case, the interface resolution code will set im->slot, which 
30833         means that the virtual method override pass will skip this method 
30834         which means a pointer to the abstract method inherited from the parent
30835         will remain in the vtable of this non-abstract class.
30836
30837         * class.c: (mono_class_setup_vtable): continue search for a real 
30838         method if only an abstract method is found.     
30839
30840 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30841
30842         * reflection.c: add size to encoding for ByValStr and ByValArray
30843         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30844
30845 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30846
30847         * class.c (mono_class_setup_vtable): pass the override info as an
30848         argument.
30849
30850         * class.c (mono_class_setup_vtable): set the slot of overriding methods
30851         correctly.
30852         
30853         * reflection.c (ensure_runtime_vtable); add support for method 
30854         overrides.
30855         
30856 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30857
30858         * reflection.c (resolution_scope_from_image): Hack to work to work with
30859         dynamic assemblies.
30860
30861         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
30862         added a 'force_ref' argument to force this function to allways return 
30863         a TypeRef. This is needed by mono_image_get_memberref_token ().
30864         
30865 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30866
30867         * reflection.c (mono_image_get_type_info): interfaces really don't have
30868         a parent.
30869
30870         * reflection.c (mono_image_basic_init): fill out missing fields of
30871         image structure.
30872
30873         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
30874         dynamic assemblies. This is required so dynamic assemblies show up in
30875         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
30876         Type::GetType() etc. This is consistent with MS behaviour.
30877
30878         * image.c image.h reflection.c: add newly created classes to the name 
30879         cache so mono_class_get () will find them.      
30880
30881 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30882
30883         First part of changes to get IKVM.NET running under mono.
30884         
30885         * appdomain.h, appdomain.c: added new function 
30886         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30887         This function will call AppDomain::DoTypeResolve to do the actual work.
30888
30889         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30890         moved existing code dealing with dynamic tokens to a new function 
30891         called mono_reflection_lookup_dynamic_token (). This function will 
30892         raise TypeResolve events when appropriate. Since reflection.c is not 
30893         part of libmetadata, a new hook function called 
30894         mono_lookup_dynamic_token() is added to class.c which will call this.
30895
30896         * assembly.h assembly.c: make the invoke_load_hook function public,
30897         so it can be called for dynamic assemblies.
30898
30899         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30900
30901         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30902         type isn't found.
30903
30904         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30905         MonoGHashTable, since it contains pointers to objects which the GC 
30906         needs to track.
30907
30908         * assembly.c (search_loaded): remove unused variable.
30909         
30910 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30911
30912         * object.c: fixed issue exposed by gcc-generated IL programs
30913         that use RVA data for pointers.
30914
30915 2003-01-25  Martin Baulig  <martin@ximian.com>
30916
30917         * threads.c (start_wrapper): Moved the initialization of
30918         `start_func' above the mono_new_thread_init() call to which we
30919         pass it as argument.
30920
30921 2003-01-24  Martin Baulig  <martin@ximian.com>
30922
30923         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30924         the MonoThread pointer.
30925
30926 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30927
30928         * icall.c: Rename `PowImpl' to Pow.
30929
30930 2003-01-23  Dick Porter  <dick@ximian.com>
30931
30932         * threads.c (start_wrapper): Create a Thread object if needed, so
30933         the Main() thread can do the class initialisation in a subthread
30934         that has been set up to allow managed code execution.
30935
30936         Pass the thread ID instead of the MonoThread pointer to the thread
30937         start and attach callbacks.  This change is required, because the
30938         jit thread start callback must be called _before_ the Thread
30939         object can be created.
30940         
30941         (mono_thread_init): Removed much object creation code that is no
30942         longer needed.  No managed code is called from here now.
30943
30944         * object.c (mono_runtime_exec_managed_code): Create a subthread
30945         for Main, and call back to the runtime to use it.
30946         Set the exit code when Main exits.
30947
30948         * gc.c: Make sure domain finalisation happens in a subthread.
30949         Re-enable threaded GC, fixing bug 31333 (again).
30950
30951         * environment.c: System.Environment internall calls (so far just
30952         ExitCode is here, the others are still in icall.c)
30953
30954         * appdomain.c (mono_runtime_cleanup): All threads running managed
30955         code should have finished before mono_runtime_cleanup() is
30956         reached, so no need to clean up threads.
30957
30958 2003-01-22  Martin Baulig  <martin@ximian.com>
30959
30960         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
30961         `gpointer func' arguments.      
30962         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
30963         but added `MonoThread *thread' argument.
30964         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
30965
30966         * threads.c (mono_new_thread_init): Added `gpointer func' argument
30967         and pass it to the mono_thread_start_cb callback.
30968         (mono_install_thread_callbacks): New public function to install a
30969         set of callbacks which are set by the debugger.
30970         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
30971
30972 2003-01-22  Martin Baulig  <martin@ximian.com>
30973
30974         * Makefile.am: Install debug-mono-symfile.h.
30975
30976 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
30977
30978         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
30979
30980 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
30981
30982         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
30983         * class.c (mono_ptr_class_get): correctly set access levels of pointers
30984         (mono_array_class_get): correctly set access levels of arrays
30985
30986 2003-01-20      Patrik Torstensson
30987         * image.h (MonoAssemblyName): changed major, minor, build, revision
30988         from signed to unsigned.
30989
30990 2003-01-20  sean kasun <skasun@azstarnet.com>
30991
30992         * reflection.c (load_cattr_value): Now this handles
30993         MONO_TYPE_SZARRAY.  Fixes bug #35629
30994
30995 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
30996
30997         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
30998         integer value
30999
31000 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31001
31002         * decimal.c: fixed bug #26056.
31003
31004 2003-01-17  Martin Baulig  <martin@ximian.com>
31005
31006         * gc.c: Raise an ExecutionEngineException instead of using g_error().
31007
31008 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31009
31010         * exception.[ch]:
31011         (mono_get_exception_type_initialization): new function.
31012
31013         * object.c: throw a TypeInitializationException when an exception is
31014         thrown invoking the class constructor.
31015
31016 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31017
31018         * reflection.c: fixed attribute reading.
31019
31020 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31021
31022         * icall.c:
31023         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
31024         provided, look for the type in the calling assembly and then in
31025         mscorlib; if the assembly name is provided, only try that one.
31026
31027 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
31028
31029         * object.c: register the vtable before there is a chance it's
31030         queried again recursively.
31031
31032 2003-01-13  Duncan Mak  <duncan@ximian.com>
31033
31034         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
31035         gc-internal.h. 
31036         
31037 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
31038
31039         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
31040
31041 2003-01-11  Martin Baulig  <martin@ximian.com>
31042
31043         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31044         this to 20 for the release.
31045
31046 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31047
31048         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31049
31050         * loader.c (mono_method_get_marshal_info): bug fix
31051
31052         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31053         structures with explicit layout
31054
31055 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31056
31057         * profiler.c: made the output more readable (and sorted). 
31058         Added caller information for the allocation profiler.
31059
31060 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31061
31062         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31063
31064 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31065
31066         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31067         to get value types.
31068         
31069 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31070
31071         * object.c, profiler.h, profiler.c, profiler-private.h:
31072         Added object allocation profiler.
31073
31074 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31075
31076         * reflection.h, reflection.c: handle global methods.
31077         Compress blob entries.
31078
31079 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31080
31081         * marshal.c: fix compilation.
31082
31083 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31084
31085         * loader.c (mono_method_get_marshal_info): impl.
31086
31087         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31088
31089 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31090
31091         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31092         for reference types.
31093
31094 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31095
31096         * loader.c: fixed off by one error in loaded parameter names.
31097
31098 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31099
31100         * marshal.c (mono_marshal_get_icall_wrapper): like
31101         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31102         instead of a MonoMethod.
31103
31104 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31105
31106         * decimal.c: fixed bug #36537.
31107
31108 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31109
31110         * marshal.c: throw a missing method exception if a
31111         P/Invoke method is not found.
31112
31113 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31114
31115         * icall.c: allow a null this for constructors.
31116
31117 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31118
31119         * icall.c: raise the proper exceptions if the arguments to the
31120         internal Invoke are incorrect.
31121
31122 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31123
31124         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31125
31126 2003-01-03  Martin Baulig  <martin@ximian.com>
31127
31128         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31129
31130 2002-12-31  Martin Baulig  <martin@ximian.com>
31131
31132         * debug-mono-symfile.c: Completely rewrote the type section.
31133         Instead of using individual malloc()ed fields, we use one big
31134         continuous memory area and offsets into this area.
31135         See the comments in the source code for details.
31136
31137 2002-12-30  Martin Baulig  <martin@ximian.com>
31138
31139         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31140
31141 2002-12-30  Martin Baulig  <martin@ximian.com>
31142
31143         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31144         line number table in this data blob instead of using an external
31145         pointer.
31146
31147 2002-12-28  Martin Baulig  <martin@ximian.com>
31148
31149         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31150
31151 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31152
31153         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31154         as a boxed return type.
31155
31156 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31157
31158         * appdomain.c
31159         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31160         g_build_filename to properly get separators on the filename created.
31161
31162         * object.h: Small change, introduce MonoMarshalByRefObject to
31163         track the layout of that structure in the C# universe as we make
31164         changes there.
31165
31166 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31167
31168         * object.c: removed assert to allow static fields on interfaces.
31169         * loader.c: a TypeSpec may be used for any type, not just arrays.
31170
31171 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31172
31173         * class.c, class.h: added mono_class_array_element_size ().
31174         Ignore static methods in interfaces.
31175
31176 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31177
31178         * threads.c: fixed the build under cygwin.
31179
31180 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31181
31182         * reflection.c: handle nullref constants. Allocate keys for
31183         reflection handles with the GC.
31184
31185 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31186
31187         * threads.c, threads.h: added mono_thread_get_abort_signal()
31188         to get a suitable signal for thread abort.
31189
31190 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31191
31192         * metadata.c: fix handling of ExportedType table.
31193
31194 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31195
31196         * icall.c: added WriteWindowsDebugString internal call.
31197
31198 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31199
31200         * reflection.h: added fields to match C# implementation.
31201
31202 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31203
31204         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31205
31206 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31207
31208         * gc.h, gc-internal.h: Rename header for GC internal calls to
31209         gc-internal.h from gc.h as to not clash with Boehm GC having its
31210         header installed as <gc.h> in outside include paths.
31211         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31212         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31213
31214 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31215
31216         * icall.c: assign minor, build and revision in FillName.
31217
31218 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31219
31220         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31221         Added support for running code generated by Reflection.Emit.
31222
31223 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31224
31225         * appdomain.c: check for NULL argument in LoadFrom.
31226
31227 2002-12-10  Dick Porter  <dick@ximian.com>
31228
31229         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31230
31231 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31232
31233         * appdomain.c: fix buglet when building exe file name.  Handle full
31234         assembly name (needed after latest changes to AssemblyName).
31235         * image.c:
31236         (mono_image_close): free some hashtables.
31237
31238 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31239
31240         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31241         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31242         on some systems (redhat 7.3) 
31243
31244 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31245
31246         * threads.c: delete the critical section of a sync block,
31247         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31248
31249 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31250
31251         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31252
31253 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31254
31255         * appdomain.[ch]: handle the assembly preload event to try loading the
31256         assemblies using the paths we have in the current domain.
31257
31258         * assembly.[ch]: created an assembly preload hook that is called to try
31259         loading the assembly by other means that the ones provided here.
31260
31261         * domain.c: initialize the domain search path.
31262
31263         From now on, assemblies (TODO: except corlib and System) are loaded
31264         according to these rules when using mono_assembly_load ():
31265
31266                 1. It tries to load the assembly from the ApplicationBase
31267                 of the current domain appending .dll and .exe (TODO: have to
31268                 try loading from name/name.dll and name/name.exe).
31269
31270                 2. It tries the search path specified in PrivateBinPath for the
31271                 current domain (if any).
31272
31273                 3. Previous behavior.
31274
31275 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31276
31277         * icall.c: implemented GetInterfaceMap() related icall.
31278         * domain.c, loader.h: load MethodInfo in mono_defaults.
31279
31280 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31281
31282         * gc.c: disable the finalizer thread for now, untill all the issues
31283         with it are resolved.
31284
31285 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31286
31287         * string-icalls.c: handle embedded nulls in string ctor when the
31288         length is specified.
31289
31290 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31291
31292         * class.c: look for explicit interface implementation in parent
31293         classes, too.
31294
31295 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31296
31297         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31298
31299 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31300
31301         * gc.c: protect handles with a critical section.
31302
31303 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31304
31305         * icall.c:
31306         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31307         parameters. If no assembly specified, try getting the type from all
31308         the assemblies in the current domain, else, load the assembly and get
31309         the type from it.
31310
31311 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31312
31313         * marshal.c: applied patch from Aleksey Demakov that fixes
31314         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31315
31316 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31317
31318         * icall.c: fixed get_location.
31319
31320 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31321
31322         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31323         declarations to make it work with older gcc. 
31324
31325         * loader.c (mono_get_method): set signature->pinvoke for native calls
31326
31327 2002-11-20  Dick Porter  <dick@ximian.com>
31328
31329         * threads.c (mono_thread_init): Set the main thread's handle
31330
31331 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31332
31333         * gc.c: allow compilation without GC support. Changed to match the
31334         mono coding style.
31335
31336 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31337
31338         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31339
31340 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31341
31342         * reflection.c: set a public key token on the core assemblies.
31343
31344 2002-11-18  Dick Porter  <dick@ximian.com>
31345
31346         * threads.c: Split out some thread initialisation so that other
31347         files can set the start callback function.
31348
31349         * gc.c: Run finalisers in a separate thread, to avoid stack
31350         overflow.  Fixes bug 31333.
31351
31352         * appdomain.c: Set up GC finalisation thread.
31353
31354         * reflection.c: 
31355         * object.c: 
31356         * domain.c: Use gc.h macros for GC_malloc
31357         
31358 2002-11-15  Dick Porter  <dick@ximian.com>
31359
31360         * threadpool.c: 
31361         * threads.c:
31362         * appdomain.c: Removed mono_runtime_init_with_attach(),
31363         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31364         merging the extra parameter with the existing function.  Removed
31365         unneeded code in mono_thread_attach().
31366
31367 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31368
31369         * image.c (mono_image_loaded_by_guid): a method to get loaded
31370         images by guid. 
31371         (load_metadata_ptrs): we store the guid as string.
31372
31373 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31374
31375         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31376
31377         * metadata.c (mono_guid_to_string): imported method form Zoltan
31378         Varga (slightly modified)
31379
31380         * assembly.c (mono_assembly_open): load precompiled code
31381
31382         * loader.h (MonoMethod): we store the method token for use in the
31383         aot compiler. 
31384
31385 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31386
31387         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31388         the hook function called when an assembly is loaded.
31389         
31390         * domain.c: Modified file.
31391         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31392
31393         Fixes bug #33196.
31394
31395 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31396
31397         * reflection.c: Map PEFileKind to the value expected by the WinNT
31398         image loader. 
31399
31400 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31401
31402         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31403         Read until the buffer is filled completely.
31404
31405 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31406
31407         * icall.c: implemented MonoType.InternalGetEvent ().
31408
31409 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31410
31411         * appdomain.c: implemented InitAppDomainSetup. Delayed
31412         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31413         the entry_assembly.
31414
31415         * assembly.c: base_dir is now an absolute path ending with
31416         G_DIR_SEPARATOR.
31417
31418         * icall.c: modified get_location according to the above changes.
31419
31420         * object.c: init AppDomain.SetupInformation for the default domain after
31421         we have the entry assembly.
31422
31423         * domain.c: when unloading a domain, setup = NULL.
31424
31425 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31426
31427         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31428
31429 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31430
31431         * object.h, object.c: introduced mono_object_get_virtual_method ()
31432         to lookup the method invoked on an object when a callvirt is done on
31433         a method.
31434         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31435
31436 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31437
31438         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31439         current domain when loaded an assembly and failed to load it.
31440
31441         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31442
31443 2002-10-31  Dick Porter  <dick@ximian.com>
31444
31445         * icall.c: 
31446         * file-io.h: 
31447         * file-io.c: Return the error status in a parameter, as the
31448         GetLastError() value has long since been blown away if we try and
31449         look it up in a subsequent internal call invocation.  Delete the
31450         GetLastError() internal call, because it's useless.
31451
31452 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31453
31454         * class.[ch]: added cast_class to fix bug 29517
31455
31456 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31457
31458         * marshal.c: create valid IL code in the filter clause:
31459         the new JIT is less forgiving:-)
31460
31461 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31462
31463         * icall.c: removed get_property internal call.
31464
31465 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31466
31467         * appdomain.h domain.c: Added an ID to appdomains.
31468         
31469         * threads.c threads.h icall.c: Implement icall
31470         Thread:GetDomainID(), and remove unused icall 
31471         CurrentThreadDomain_internal.
31472
31473 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31474
31475         * icall.c: Don't recurse through the base types in GetConstructor.
31476         Fixes bug #32063. 
31477
31478 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31479
31480         * mempool.h, mempool.c: added mono_mempool_empty() and
31481         mono_mempool_stats().
31482
31483 2002-10-23  Dick Porter  <dick@ximian.com>
31484
31485         * file-io.c: 
31486         * file-io.h: 
31487         * icall.c: Added MonoIO.GetFileType internal call
31488
31489 2002-10-17  Dick Porter  <dick@ximian.com>
31490
31491         * appdomain.c (mono_runtime_cleanup): Don't signal the async
31492         delegate semaphore before waiting for all threads to finish,
31493         because new threads can also call async delegates.  Fixes bug
31494         32004.
31495
31496         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
31497         of 3 seconds, in case another async job is queued.  (This part is
31498         needed because the bug fix reintroduced the 3s exit lag.)  This
31499         makes the mono_runtime_shutdown flag superfluous.
31500
31501 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31502
31503         * reflection.c: include ehader size in method section headers.
31504         Really check for suplicated modules entries.
31505
31506 2002-10-17  Martin Baulig  <martin@gnome.org>
31507
31508         * debug-mono-symfile.c: Added back support for locals.
31509
31510 2002-10-14  Martin Baulig  <martin@gnome.org>
31511
31512         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31513         MONO_TYPE_VOID.
31514
31515 2002-10-14  Martin Baulig  <martin@gnome.org>
31516
31517         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
31518         mono_class_get() instead of looking in the class cache. 
31519
31520 2002-10-13  Martin Baulig  <martin@gnome.org>
31521
31522         * debug-mono-symfile.c: Set version number to 28, include the
31523         signature in method names.
31524
31525 2002-10-13  Martin Baulig  <martin@gnome.org>
31526
31527         * debug-mono-symfile.h: Set version number to 27.
31528
31529 2002-10-11  Martin Baulig  <martin@gnome.org>
31530
31531         * gc.c: Don't register/unregister NULL pointers as disappearing links.
31532
31533 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31534
31535         * metadata.c, metadata.h: added helper function to allocate signatures.
31536
31537 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31538
31539         * icall.c: added internal call to get the location of machine.config.
31540
31541 2002-10-08  Martin Baulig  <martin@gnome.org>
31542
31543         * debug-mono-symfile.c: Ignore classes with a pending init for the
31544         moment.
31545
31546 2002-10-03  Dick Porter  <dick@ximian.com>
31547
31548         * threads.c: Freebsd pthread_t is a pointer
31549
31550 2002-10-03  Dick Porter  <dick@ximian.com>
31551
31552         * socket-io.c: Implemented GetHostName_internal
31553
31554 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31555
31556         * mono-config.c:
31557         (mono_config_parse_file): don't leak the text.
31558
31559 2002-10-02  Martin Baulig  <martin@gnome.org>
31560
31561         * debug-mono-symfile.c: Added support for methods.
31562
31563 2002-10-01  Martin Baulig  <martin@gnome.org>
31564
31565         * debug-mono-symfile.c: Don't emit methods and line numbers for
31566         the dynamic symbol file, just write the type table.  We can easily
31567         have an external helper program which creates a symbol file for an
31568         IL file.        
31569
31570 2002-10-01  Dick Porter  <dick@ximian.com>
31571
31572         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
31573         Only add the handle to the cleanup array when we're about to
31574         launch the thread.  Bug 31425 deadlocked when the test was run on
31575         mono under w32.
31576
31577 2002-10-01  Martin Baulig  <martin@gnome.org>
31578
31579         * debug-mono-symfile.c: Added support for properties.
31580
31581 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31582
31583         * reflection.c: unaligned store fix from Mark Crichton
31584         <crichton@gimp.org>.
31585
31586 2002-09-27  Martin Baulig  <martin@gnome.org>
31587
31588         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
31589         New interncall.
31590
31591 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
31592
31593         * assembly.h, assembly.c: use a sane API to hook into the assembly
31594         loading process instead of a useless special-purpouse hack
31595         (ngen needs a hook, too, for example).
31596
31597 2002-09-27  Dick Porter  <dick@ximian.com>
31598
31599         * threads.c (mono_thread_init): Call GetCurrentProcess() so
31600         io-layer can set up some process handle info.  Not needed on w32,
31601         but doesn't hurt either.
31602
31603         * process.c: Pass the program name in the second parameter to
31604         CreateProcess, so the path is searched.  Include the working
31605         directory. Implemented process name, process enumeration, and some
31606         process detail internal calls.
31607         
31608         * icall.c: Added internal calls for process lookup, and some
31609         process details
31610
31611 2002-09-26  Martin Baulig  <martin@gnome.org>
31612
31613         * assembly.c (mono_install_open_assembly_hook): New global
31614         function to install a function to be invoked each time a new
31615         assembly is loaded.
31616         (mono_assembly_open): Run this callback function if set.
31617
31618         * debug-mono-symfile.c: Put back line numbers for the dynamic
31619         symbol file and also record the .il file as source file.  This
31620         allows us to install the temporary symbol file as `file.dbg' just
31621         like a compiler-generated one.
31622
31623 2002-09-26  Nick Zigarovich <nick@chemlab.org>
31624
31625         * Corrected typo in gc.c (BOHEM vs BOEHM).
31626
31627 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31628
31629         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
31630         GetProperties. Also avoid calling g_slist_length in GetProperties and
31631         GetMethods.
31632
31633 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31634
31635         * reflection.c: avoid unaligned stores (bug spotted by
31636         Mark Crichton  <crichton@gimp.org>).
31637
31638 2002-09-25  Martin Baulig  <martin@gnome.org>
31639
31640         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
31641         instead of guint64 for addresses and added prologue/epilogue info.
31642
31643 2002-09-25  Martin Baulig  <martin@gnome.org>
31644
31645         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
31646         store line number info.  For the dynamic symbol file, we only need
31647         to provide the JIT generated dynamic line number info for the dynamic
31648         symbol file.
31649
31650 2002-09-25  Martin Baulig  <martin@gnome.org>
31651
31652         * debug-mono-symfile.h: Incremented version number.
31653
31654 2002-09-24  Martin Baulig  <martin@gnome.org>
31655
31656         * class.c (mono_debugger_class_init_func): New global function
31657         pointer variable.
31658         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
31659         call it.
31660
31661         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
31662         function.  This is called via the mono_debugger_class_init_func
31663         hook to add all types to the dynamic type table.
31664         (ves_icall_MonoDebugger_GetType): New interncall to get a class
31665         from its metadata token.
31666
31667         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
31668         New interncall for the debugger.
31669
31670 2002-09-24  Nick Drochak <ndrochak@gol.com>
31671
31672         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
31673         before using it in case it is null.
31674         
31675 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31676
31677         * metadata.c: allow custom modifiers in local var signatures
31678         (bug spotted by Zoltan Varga).
31679
31680 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31681
31682         * class.c: deal with the <Module> class that may have a NULL vtable.
31683         Eliminate warnings.
31684
31685 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31686
31687         * image.c, image.h: more strong name helpers.
31688         * monosn.c: more work: convert pem keys to cryptoapi format.
31689
31690 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31691
31692         * string-icalls.c: speedup IndexOf.
31693
31694 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31695
31696         * icall.c: updates from Zoltan.2.Varga@nokia.com.
31697
31698 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31699
31700         * icall.c: cleanup: use mono_object_domain ().
31701
31702 2002-09-23  Martin Baulig  <martin@gnome.org>
31703
31704         * debug-mono-symfile.c: Improved type support.
31705
31706 2002-09-22  Martin Baulig  <martin@gnome.org>
31707
31708         * debug-mono-symfile.c: Added support for reference types and strings.
31709
31710 2002-09-22  Martin Baulig  <martin@gnome.org>
31711
31712         * debug-mono-symfile.c: Started to work on the type table.
31713
31714 2002-09-21  Martin Baulig  <martin@gnome.org>
31715
31716         * debug-mono-symfile.c: Largely reworked the symbol table format.
31717         The symbol table is now incrementally updated each time a new
31718         method is added.  We're now also using our own magic and version
31719         so that you don't need to recompile all your classes if the
31720         dynamic table changes.
31721         (mono_debug_update_mono_symbol_file): Removed.
31722         (mono_debug_symfile_add_method): New function to add a method.
31723
31724 2002-09-21  Martin Baulig  <martin@gnome.org>
31725
31726         * icall.c
31727         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31728         New interncall.
31729
31730         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31731         New interncall to get a method from its metadata token.
31732
31733 2002-09-21  Martin Baulig  <martin@gnome.org>
31734
31735         * debug-mono-symfile.c: Create type table.
31736
31737 2002-09-20  Martin Baulig  <martin@gnome.org>
31738
31739         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31740
31741 2002-09-20  Martin Baulig  <martin@gnome.org>
31742
31743         * debug-mono-symfile.c: Provide information about params and locals.
31744
31745 2002-09-20  Martin Baulig  <martin@gnome.org>
31746
31747         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31748         New interncall.
31749
31750         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31751         interncall to get a method from its metadata token.
31752
31753 2002-09-20  Martin Baulig  <martin@gnome.org>
31754
31755         * debug-mono-symfile.c: Added a few checks for method->header
31756         being non-NULL.  This should never happen, but for the moment
31757         let's use a g_warning() rather than a g_assert().
31758
31759 2002-09-19  Mark Crichton  <crichton@gimp.org>
31760
31761         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31762         even if support for it isn't present.  Added an #ifdef to fix this.
31763
31764         * socket-io.c: Added checks back for Solaris support.
31765
31766 2002-09-19  Martin Baulig  <martin@gnome.org>
31767
31768         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31769         changes in the symbol file format.
31770
31771 2002-09-18  Martin Baulig  <martin@gnome.org>
31772
31773         * debug-mono-symfile.c: Set version number to 21.
31774
31775 2002-09-18  Dick Porter  <dick@ximian.com>
31776
31777         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31778         on netbsd.  Fixes bug 30051.
31779
31780 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31781
31782         * reflection.c:
31783         (set_version_from_string): little fix.
31784
31785 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31786
31787         * monosn.c, Makefile.am: added strong name utility.
31788         * reflection.h, reflection.c: implemented delayed signing,
31789         locale, version and hash id assembly attributes.
31790
31791 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31792
31793         * loader.c, metadata.c: load param attributes in signatures.
31794
31795 2002-09-16  Martin Baulig  <martin@gnome.org>
31796
31797         * debug-mono-symfile.c: Added string table with all method names.
31798
31799 2002-09-14  Martin Baulig  <martin@gnome.org>
31800
31801         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31802         fast method lookup.
31803
31804 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31805
31806         * reflection.c: record the public key token of referenced assemblies.
31807
31808 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31809
31810         * image.c, image.h: added functions to get the strong name and the
31811         public key of an assembly.
31812         * pedump.c: use them.
31813
31814 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31815
31816         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31817
31818 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31819
31820         * marshal.c (mono_marshal_get_managed_wrapper): Added
31821         MONO_TYPE_BOOLEAN 
31822
31823 2002-09-11  Martin Baulig  <martin@gnome.org>
31824
31825         * gc.c: Call GC_unregister_disappearing_link() on all links when
31826         finalizing them, this is necessary to aviod a crash in boehm's
31827         finalize handler.
31828
31829 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31830
31831         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31832         nick@chemlab.org.
31833
31834 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31835
31836         * icall.c: implemented MonoType::Module.
31837         * reflection.c, reflection.h: mono_module_get_object () from
31838         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31839
31840 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31841
31842         * icall.c: ignore overridden methods in GetMethods ().
31843         Fix for FieldInfo::SetValue().
31844         * object.c: handle float/double in runtime invoke.
31845
31846 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31847
31848         * object.c: allow a constructor to be called again on an object.
31849
31850 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31851
31852         * class.h, class.c: move field layout code to it's own function and
31853         export it. Get an interface id earlier. Move fields in MonoClass
31854         so they are more cache friendly and align the bitfields.
31855         * loader.c: temporary handle get_param_names() for a runtime method.
31856         * reflection.c, reflection.h: more code to handle runtime creation of
31857         types.
31858
31859 2002-09-09  Martin Baulig  <martin@gnome.org>
31860
31861         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
31862         signature with the pinvoke field being set for the actual call.
31863
31864 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31865
31866         * icall.c: removed some unused icalls. Start of map of glib charsets
31867         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
31868
31869 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31870
31871         * debug-helpers.c: break infinite loop (found and fixed by
31872         Holger Arnold <harnold@gmx.de>).
31873
31874 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31875
31876         * icall.c: target may be null in create_delegate.
31877
31878 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31879
31880         * marshal.c: handle a boolean return type.
31881
31882 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31883
31884         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31885
31886 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31887
31888         * gc.c: fix weakreferences.
31889
31890 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31891
31892         * icall.c: added icall to get default codepage.
31893
31894 2002-09-03  Dick Porter  <dick@ximian.com>
31895
31896         * threads.h: 
31897         * threads.c: Use MonoThread instead of MonoObject where
31898         apropriate.
31899
31900         Store running thread objects in a hash table, so that we have all
31901         the info to hand when waiting for them to finish
31902         (means we don't need OpenThread() any more, so mingw builds should
31903         be fully functional again.)
31904
31905         * verify.c:
31906         * object.h: Added thread ID to MonoThread
31907
31908 2002-09-03  Martin Baulig  <martin@gnome.org>
31909
31910         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31911
31912 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31913
31914         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31915
31916 2002-09-03  Martin Baulig  <martin@gnome.org>
31917
31918         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31919         argument to store the end address of the disassembled instruction.
31920
31921         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31922         here from debug-symfile.h.
31923         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31924         JIT into this struct.
31925         (MonoSymbolFile): Added `char *image_file' field.
31926         (MonoDebugGetMethodFunc): Removed.
31927         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31928         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
31929         (mono_debug_find_method): New method.
31930
31931         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
31932         create a full symbol file.
31933         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
31934         and static symbol files.
31935         (mono_debug_find_method): The symbol file keeps an internal method hash,
31936         call this to get a MonoDebugMethodInfo from a MonoMethod.
31937
31938         * debug-symfile.[ch]: Removed.
31939
31940 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
31941
31942         * image.c (do_mono_image_open): Remove linker version check.
31943
31944 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
31945
31946         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
31947         wrappers for instance methods.
31948         
31949 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31950
31951         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
31952
31953 2002-08-28  Dick Porter  <dick@ximian.com>
31954
31955         * Makefile.am: Export HOST_CC for w32 builds
31956
31957 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31958
31959         * file-io.c process.c: MonoString are null terminated, no
31960         need for mono_string_to_utf16() anymore.
31961
31962 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31963
31964         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
31965
31966 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
31967
31968         * icall.c, reflection.h: speedup System.MonoType.
31969
31970 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31971
31972         * reflection.c: allow null as the value of a string argument in
31973         custom attributes constructors.
31974
31975 2002-08-27  Martin Baulig  <martin@gnome.org>
31976
31977         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
31978         `trampoline_address' field.
31979
31980 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
31981
31982         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
31983         check (fixes bug #29486) 
31984
31985 2002-08-27  Martin Baulig  <martin@gnome.org>
31986
31987         * debug-mono-symfile.c: Changed the file format in a way that allows us
31988         open it read-only and to use a specially malloced area for all the
31989         dynamic data.  We can now also generate a symbol file on-the-fly if we're
31990         debugging IL code and there is no MCS generated symbol file for it.
31991
31992 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31993
31994         * object.c: added a define for a good string and array
31995         creation speedup (not enabled by default because we need to deal with
31996         the synch stuff).
31997
31998 2002-08-26  Martin Baulig  <martin@gnome.org>
31999
32000         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
32001         function to create a dynamic symbol file.  This is used by the
32002         debugger to create a symbol file for IL code on-the-fly.
32003
32004 2002-08-26  Martin Baulig  <martin@gnome.org>
32005
32006         * loader.c (mono_lookup_pinvoke_call): Include the error message
32007         from g_module_error() in the error message.
32008
32009 2002-08-24  Martin Baulig  <martin@gnome.org>
32010
32011         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
32012         function to update the symbol file.  The symbol file is mmap()ed
32013         writable, but private.  This allows us to install the symbol file
32014         together with the assembly.
32015
32016 2002-08-24  Martin Baulig  <martin@gnome.org>
32017
32018         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
32019         but they can read the new symbol file format which mcs is now creating.
32020
32021         * debug-symfile.c (mono_debug_find_source_location): Moved to
32022         debug-mono-symfile.c; this is now operating on the new symbol file.
32023
32024 2002-08-23  Martin Baulig  <martin@gnome.org>
32025
32026         * debug-helpers.c (mono_method_desc_from_method): New function to get
32027         a MonoMethodDesc from a MonoMethod.
32028
32029 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32030
32031         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
32032         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
32033
32034 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32035
32036         * string-icalls.[ch]: make helper methods static.
32037
32038 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32039
32040         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
32041         types to it and to SetValueInternal.
32042
32043         * object.c: Moved handle_enum label to its proper place. This was the
32044         f... bug! ;-)
32045
32046         This time i compiled mcs and gtk-sharp and they both work.
32047
32048 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32049
32050         * icall.c: reverted partially my previous patch until 
32051         object.c:set_value handles enums correcly.
32052
32053 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32054
32055         * icall.c:
32056         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32057         (ves_icall_System_Environment_get_MachineName): removed warning when
32058         compiling under cygwin.
32059
32060 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32061
32062         * object.c: fixed field_get_value() for reference types.
32063
32064 2002-08-22  Dick Porter  <dick@ximian.com>
32065
32066         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32067         Don't free a buffer while it's still needed.  Patch from Jonathan
32068         Liger <Jonathan.liger@wanadoo.fr>
32069
32070 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32071
32072         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32073         internal call.
32074
32075 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32076
32077         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32078         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32079
32080         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32081         we call unmanaged code which throws exceptions.
32082
32083 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32084
32085         * appdomain.h: added per-domain entry_assembly.
32086         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32087         arguments.
32088         * icall.c: Assembly::GetEntryAssembly icall.
32089         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32090         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32091
32092 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32093
32094         * appdomain.h, gc.c: added mono_domain_finalize ().
32095
32096 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32097
32098         * object.c:
32099         (mono_print_unhandled_exception): changed g_warning by g_printerr
32100         because g_log has a 1024 characters limit (yeah, i got a big stack
32101         trace). Don't print exception name, that should be in ToString 
32102         returned string.
32103
32104 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32105
32106         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32107         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32108
32109 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32110
32111         * object.c:
32112         (mono_print_unhandled_exception): after previous commit, i realized
32113         that MS calls ToString on the exception. I changed this function to
32114         do that. This way we get stack_trace for free.
32115
32116 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32117
32118         * object.c:
32119         (mono_print_unhandled_exception): invoke Message property instead of
32120         getting 'message' field from Exception. Don't allocate memory for
32121         'trace' and 'message' if not needed.
32122
32123 2002-08-18  Dick Porter  <dick@ximian.com>
32124
32125         * unicode.c: Fix asserts to match Encoder.cs checks
32126
32127 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32128
32129         * marshal.c: fix unaligned store issue and a few wrong
32130         opcode argument types.
32131
32132 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32133
32134         * icall.c: added GetUninitializedObjectInternal internal call.
32135
32136 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32137
32138         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32139         to the right domain.
32140
32141 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32142
32143         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32144
32145         * class.c (class_compute_field_layout): set blittable to false for Strings
32146
32147         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32148
32149 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32150
32151         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32152         first chunk of code to create types at runtime. Code to
32153         handle ReflectedType/DeclaringType. Make reflection handles
32154         domain specific.
32155
32156 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32157
32158         * class.c: set correct name in arrays.
32159
32160 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32161
32162         * appdomain.c (mono_domain_transfer_object): make it work with
32163         valuetypes. bug fixes.
32164
32165 2002-08-12  Dick Porter  <dick@ximian.com>
32166
32167         * object.h: Rename some parameters to avoid c++ keywords (Patch
32168         from Joseph Wenninger <kde@jowenn.at>)
32169
32170 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32171
32172         * icall.c: added icall to implement Assembly.GetFile*.
32173
32174 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32175
32176         * reflection.h, reflection.c: code to embed managed resources.
32177
32178 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32179
32180         * class.c: move all the type size stuff into
32181         class_compute_field_layout().
32182
32183 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32184
32185         * class.c: ensure enums have always the correct instance size.
32186         * unicode.c: remove wrong assert.
32187
32188 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32189
32190         * assembly.c: fix mem corruption issue.
32191         * image.h, image.c: added mono_image_get_resource () to access
32192         managed resources.
32193         * icall.c: implemented Assembly.EntryPoint property and some
32194         Managed Resources related internalcalls.
32195
32196
32197 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32198
32199         * image.c, image.h: impemented mono_image_get_entry_point ().
32200         * appdomain.c: use mono_image_get_entry_point.
32201
32202 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32203
32204         * reflection.c: support the object type argument when loading
32205         custom attributes.
32206
32207 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32208
32209         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32210         String as return type.
32211
32212 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32213
32214         * reflection.c: fix encoding of named args for custom attrs to match
32215         the ms implementation. Read them back when instantiating custom
32216         attributes.
32217
32218 2002-08-02  Radek Doulik  <rodo@ximian.com>
32219
32220         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32221         by Dietmar as quick fix
32222         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32223         16 as stack size, used on more places as quick fix before Dietmar
32224         will fix it properly
32225
32226 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32227
32228         * object.h, object.c: added accessors for fields and properties.
32229
32230 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32231
32232         * class.c, class.h: made mono_class_get_field_from_name ()
32233         loop on parent types.
32234         Added mono_class_get_property_from_name ().
32235
32236 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32237
32238         * class.c, class.h: move the code to setup the type vtable in its own
32239         function so that it can be reused also for types created at runtime.
32240         Eliminate the "class" identifier from the header file.
32241         * reflection.c: setup the vtable for enums so that we can create
32242         objects for use in SetConstant ().
32243
32244 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32245
32246         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32247         instead of the delegate itself as this pointer (bug #28383)
32248
32249 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32250
32251         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32252         conversions.
32253
32254 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32255
32256         * loader.c: don't set the pinvoke bit on icalls.
32257
32258 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32259
32260         * debug-helpers.c (mono_method_full_name): only print a number to
32261         indicate wrapper type (so that the output is more readable in traces).
32262
32263 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32264
32265         * class.c (mono_class_init): include method override patch from Paolo
32266
32267 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32268
32269         * icall.c: fixed GetTypeCode().
32270
32271 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32272
32273         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32274         use real delegate invoke function to make it work with multicast
32275         delegates (fix bug# 28291).
32276
32277 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32278
32279         * object.c: load constant strings.
32280
32281 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32282
32283         * reflection.c: no magic numbers.
32284         * tabledefs.h: security action enum.
32285
32286 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32287
32288         * assembly.c: fix possible memory corruption.
32289
32290 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32291
32292         * reflection.h, reflection.c: added support for linking resources.
32293         * verify.c: check we have an updated corlib.
32294
32295 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32296
32297         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32298         string arrays.
32299         (mono_marshal_string_array): null terminate unmanaged string arrays.
32300         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32301
32302 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32303
32304         * icall.c: Type.GetType () can now return also types from the
32305         calling assembly.
32306
32307 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32308
32309         * loader.h, loader.c: stack walking support.
32310         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32311         GetCallingAssembly.
32312
32313 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32314
32315         * marshal.c: added optimisations for blittable types 
32316
32317         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32318         (mono_class_setup_mono_type): set blittable attribute for single
32319         and double.
32320
32321         * marshal.c (mono_string_utf8_to_builder): impl.
32322         (mono_string_builder_to_utf8): impl.
32323         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32324
32325 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32326
32327         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32328         (mono_marshal_get_managed_wrapper): impl. byref types
32329
32330 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32331
32332         * icall.c:
32333         (search_method): don't display debug message. 
32334
32335 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32336
32337         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32338
32339 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32340
32341         * appdomain.c: set the missing filename when throwing exception.
32342
32343 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32344
32345         * metadata.c (mono_type_size): code cleanup
32346         (mono_type_stack_size): removed some test code
32347
32348 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32349
32350         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32351         mono_get_exception_file_not_found now.
32352
32353         * exception.c (mono_exception_from_name_two_strings): New version
32354         that will call a constructor with two string arguments. 
32355         (mono_get_exception_file_not_found): New helper routine, used to
32356         report file-not-found errors.
32357
32358 2002-07-20  Dick Porter  <dick@ximian.com>
32359
32360         * process.h:
32361         * process.c: Pass file handles to CreateProcess
32362         
32363         * icall.c:
32364         * file-io.h:
32365         * file-io.c: Implemented CreatePipe
32366
32367 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32368
32369         * metadata.c (mono_get_param_info): set alignment for value types
32370
32371 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32372
32373         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32374         Constify mono_domain_assembly_open().
32375         * loader.c: handle null namespace in icalls.
32376
32377 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32378
32379         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32380         (emit_str_to_ptr_conv): marshal object as structs
32381
32382         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32383
32384         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32385
32386 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32387
32388         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32389         (mono_marshal_get_native_wrapper): we an now return value types
32390
32391 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32392
32393         * verify.c: more checks implemented.
32394
32395 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32396
32397         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32398         (fix bug #27695)
32399         (mono_marshal_get_native_wrapper): allow byref arguments
32400         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32401         impl. PtrToStringXXX methods
32402         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32403         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32404         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32405         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32406         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32407
32408 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32409
32410         * reflection.c: fix buglet in parsing an assembly name.
32411
32412 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32413
32414         * marshal.c (emit_ptr_to_str_conv): first impl.
32415
32416 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32417
32418         * object.c, class.h: cache the vtable in the class as suggested by
32419         vargaz@freemail.hu (Zoltan Varga).
32420
32421 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32422
32423         * class.h, loader.c: added mono_field_from_token().
32424         * verify.c: first cut of type checking code.
32425
32426 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32427
32428         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32429
32430 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32431
32432         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32433         (fix bug #27782)
32434         (mono_marshal_get_remoting_invoke): impl.
32435         (mono_delegate_begin_invoke): impl.
32436         (mono_mb_emit_save_args): impl.
32437         (mono_delegate_end_invoke): impl.
32438         (mono_marshal_get_delegate_begin_invoke):
32439         (mono_marshal_get_delegate_end_invoke):
32440         (mono_marshal_get_delegate_invoke): generate a special name for
32441         those methods (including the signature) and associate them whith
32442         the delegate class. 
32443
32444 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32445
32446         * reflection.[ch]: 
32447         (mono_reflection_type_from_name): now it has a MonoImage parameter
32448         which is used as the default image to search the type in. If the image
32449         is NULL or getting the type from it fails, it defaults to corlib.
32450
32451         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32452         new parameter.
32453
32454 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32455
32456         * reflection.c: update the parameter table index.
32457
32458 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32459
32460         * domain.c: don't include the mark byte in the string hash.
32461
32462 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32463
32464         * icall.cs: icall for Type.GetTypeCode ().
32465         * verify: a couple of fixes and disabled local initialization checks.
32466
32467 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32468
32469         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32470
32471         * debug-helpers.c (mono_method_full_name): print the type of the
32472         runtime wrapper
32473
32474         * metadata.c (mono_signature_hash): a hash function for signatures
32475         (mono_signature_hash): better hash algorithm
32476
32477         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
32478
32479         * debug-helpers.c (mono_method_full_name): this can now generate
32480         method names with signatures
32481
32482         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
32483         method dont have this pointers.
32484
32485 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32486
32487         * reflection.c: fixup typebuilder tokens.
32488         * image.c: fix buglet.
32489         * marshal.h: remove whitespace.
32490         * metadata.h, metadata.c: reinstate code that was removed.
32491         * verify.c: handle catch directives and fix another couple of bugs.
32492
32493 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
32494
32495         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
32496         (mono_marshal_get_native_wrapper): make it comp. with the old code
32497         (mono_marshal_get_native_wrapper): support boolean
32498         (mono_marshal_get_managed_wrapper): support more types
32499
32500 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
32501
32502         * class.c (class_compute_field_layout): compute class->blittable attribute.
32503
32504 2002-07-09  Dick Porter  <dick@ximian.com>
32505
32506         * threads.c: Make the thread cleaning up cope with threads that
32507         call ExitThread()
32508
32509 2002-07-08  Radek Doulik  <rodo@ximian.com>
32510
32511         * reflection.c (method_encode_code): use non-translated values to
32512         compute finally_start, this fixes exception handling on ppc, yay!
32513
32514         * decimal.h (struct signscale): fix endianess
32515
32516 2002-07-07  Radek Doulik  <rodo@ximian.com>
32517
32518         * reflection.c: swap box_val and not val
32519
32520 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32521
32522         * reflection.c, reflection.h: handle full assembly info in type name.
32523         Handle Type arguments when loading custom attributes.
32524         * icall.c: updated to use new mono_reflection_type_from_name () method.
32525
32526 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32527
32528         * loader.c:
32529         (method_from_memberref): also print assembly name when method not found.
32530
32531 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32532
32533         * icall.c:
32534         (ves_icall_TypeGetProperties): fixed bug #27473. 
32535
32536 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32537
32538         * reflection.c: display image name and token when cannot find the
32539         .ctor for an attribute.
32540
32541 2002-07-05  Martin Baulig  <martin@gnome.org>
32542
32543         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32544
32545 2002-07-04  Dick Porter  <dick@ximian.com>
32546
32547         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
32548         compile on mingw.  This will cause mingw builds to not wait for
32549         subthreads to terminate after the main thread does.  I've lodged a
32550         bug with the mingw developers for them to wrap OpenThread().
32551
32552 2002-07-03  Dick Porter  <dick@ximian.com>
32553
32554         * threads.c: Store thread IDs instead of handles, because
32555         GetCurrentThread() returns a pseudohandle and therefore stores
32556         useless values.  mono_thread_cleanup() continues checking the
32557         array of threads until it is empty, to cope with subthreads
32558         spawning new threads after the main thread has finished.
32559
32560         * profiler.h:
32561         * profiler.c:
32562         * profiler-private.h: Pass the thread ID to thread profiler
32563         functions, instead of a handle
32564
32565 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32566
32567         * verify.c: fixes to make it more usable.
32568         * pedump.c: added --verify code to verify IL code in an assembly.
32569
32570 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32571
32572         * reflection.c: turn errors into warnings to allow compiling corlib.
32573
32574 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32575
32576         * reflection.c: add special cases to compile corlib.
32577
32578 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32579
32580         * reflection.c: handle properties with only a set method.
32581
32582 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32583
32584         * opcodes.h: add enum with opcodes in opval order.
32585
32586 2002-07-01  Dick Porter  <dick@ximian.com>
32587         
32588         * object.h:
32589         * object.c (mono_runtime_run_main): Removed unneeded argument
32590
32591 2002-06-28  Martin Baulig  <martin@gnome.org>
32592
32593         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32594
32595 2002-06-27  Dick Porter  <dick@ximian.com>
32596
32597         * threads.c: Store the handle in both the parent thread and in the
32598         subthread, to minimise the time between starting a new thread and
32599         storing its ID.
32600
32601 2002-06-26  Dick Porter  <dick@ximian.com>
32602
32603         * appdomain.c (mono_runtime_cleanup): Close the socket library
32604         after all the threads have finished, not before
32605
32606 2002-06-26  Martin Baulig  <martin@gnome.org>
32607
32608         * debug-symfile.c (mono_debug_find_source_location): Added
32609         `guint32 *line_number' argument.  If it's not NULL, store the line number
32610         there and return the file name without the line number.
32611
32612 2002-06-25  Dick Porter  <dick@ximian.com>
32613
32614         * icall.c:
32615         * process.h:
32616         * process.c: Process forking and other support functions
32617
32618 2002-06-25  Dick Porter  <dick@ximian.com>
32619
32620         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
32621         things dont happen when the image is closed.
32622         (mono_image_lookup_resource): Walk the resource section looking
32623         for a particular entry
32624
32625         * cil-coff.h: PE resource section decoding
32626
32627 2002-06-25  Dick Porter  <dick@ximian.com>
32628         
32629         * assembly.h:
32630         * assembly.c: 
32631         (mono_assembly_foreach): Accessor functions to walk the list of
32632         loaded assemblies
32633         (mono_assembly_set_main):
32634         (mono_assembly_get_main): Process methods need to know which
32635         assembly is the "main" one
32636
32637         * object.c (mono_runtime_run_main): Record the main assembly
32638
32639         * debug-helpers.c: Fix typo
32640
32641 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
32642
32643         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
32644         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
32645
32646 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32647
32648         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
32649
32650 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
32651
32652         * image.c (do_mono_image_open): Initialize reference count,
32653         otherwise we leak the MonoImage.
32654
32655 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32656
32657         * reflection.c: small tweak to handle self-hosting.
32658
32659 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32660
32661         * reflection.c: fix type name parse code.
32662
32663 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32664
32665         * reflection.c: break out of the loop.
32666         * image.c: special case corlib.
32667
32668 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32669
32670         * reflection.c: add all the custom attrs at the end to ensure the
32671         ctors have been properly initialized when the attributes are defined
32672         in the current assembly.
32673
32674 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32675
32676         * reflection.c: handle correctly multiple-nested types.
32677
32678 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32679
32680         * row-indexes.h: fix typos.
32681         * reflection.c: adjust for typos and fix method_def_or_ref
32682         encoding in MethodImpl table.
32683
32684 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32685
32686         * reflection.c: fix entry point patching (thanks Serge!).
32687
32688 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
32689
32690         * verify.c: add check for System.Exception
32691
32692 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32693
32694         * image.c, class.c: minifix for code just c&p'ed.
32695         * reflection.c: warning fix.
32696         * object.h, loader.h, domain.c: load also StringBuilder.
32697
32698 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32699
32700         * marshal.h, marshal.c: some support code to handle complex marshaling.
32701
32702 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32703
32704         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32705         Better signatures with vtable error dump.
32706
32707 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32708
32709         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32710
32711 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32712
32713         * icall.c (ves_icall_Type_GetField): impl.
32714
32715 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32716
32717         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32718         to retrieve a marshal description blob for a field or param.
32719
32720 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32721
32722         * reflection.h, reflection.c: change order of nested type emission
32723         to avoid table corruption. The NestedTypes table is sorted.
32724         * icall.c: change order of GetConstructor results to workaround mcs bug.
32725
32726 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32727
32728         * reflection.h, reflection.c: handle field and param marshal
32729         information.
32730
32731 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32732
32733         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32734
32735 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32736
32737         * reflection.c: fix call convention.
32738
32739 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32740
32741         * reflection.h, reflection.c: mono_image_get_memberref_token()
32742         takes a type instead of a class, now. Added
32743         mono_image_get_array_token() to create tokens for the special
32744         multi-dim array methods.
32745
32746 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32747
32748         * assembly.c: handle modules (no assembly table). Split
32749         loading references in its own function.
32750         * class.c: handle moduleref resolution scope.
32751         * image.c, image.h: cache module name in image.
32752
32753 2002-06-07  Martin Baulig  <martin@gnome.org>
32754
32755         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32756         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32757
32758 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32759
32760         * icall.c: more signature fixes that used uint instead of int.
32761
32762 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32763
32764         * reflection.c: fixed signature of field refs.
32765
32766 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32767
32768         * class.c, reflection.c: handle typerefs of nested types
32769         (both on read and when writing files).
32770
32771 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32772
32773         * icall.c: fix method signatures that tried to workaround the previous
32774         typo, d'oh!
32775
32776 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32777
32778         * debug-helpers.c: fix typo.
32779
32780 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32781
32782         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32783         rewrote the PE/COFF writing code (our programs are understood by the
32784         ms runtime, now).
32785
32786 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32787
32788         * gc.c, gc.h, icall.c: weakreference support.
32789
32790 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32791
32792         * Makefile.am, mono-config.c: use $(sysconfdir).
32793
32794 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32795
32796         * icall.c: changed default precision of Double.ToString() to 15.
32797         Fixed memory leak. Unified with Single.ToString.
32798
32799 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32800
32801         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32802
32803 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32804
32805         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32806         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32807         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32808         and myself.
32809
32810 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32811
32812         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32813
32814 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32815
32816         * reflection.c, socket-io.c: more compilation fixes.
32817
32818 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32819
32820         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32821         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32822         unicode.c: warning and compiler compatibility fixes.
32823
32824 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32825
32826         * class.h, metadata.c: fixed warnings/compilation errors.
32827
32828 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32829
32830         * Makefile.am, mono-config.c, mono-config.h: configuration file
32831         support routines.
32832         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32833         config file. Export methods to insert and lookup mappings.
32834
32835 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32836
32837         * reflection.c: handle types and boxed objects in custom attr
32838         constructors.
32839
32840 2002-05-30  Martin Baulig  <martin@gnome.org>
32841
32842         * debug-symfile.c
32843         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32844
32845 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32846
32847         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
32848         to lookup the implmap row for a P/Invoke method.
32849         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
32850         P/Invoke method from the runtime on an as needed basis.
32851
32852 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
32853
32854         * metadata.c (mono_metadata_parse_signature): impl.
32855
32856 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32857
32858         * class.c: handle .pack directive.
32859
32860 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32861
32862         * object.c: initialize static fields with RVA data.
32863
32864 2002-05-25  Martin Baulig  <martin@gnome.org>
32865
32866         * debug-symfile.c
32867         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
32868
32869 2002-05-24  Martin Baulig  <martin@gnome.org>
32870
32871         * debug-symfile.c
32872         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
32873         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
32874         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
32875
32876 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32877
32878         * object.c: special case string ctros in invoke.
32879         * gc.c: silly whitespace changes.
32880
32881 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
32882
32883         * threadpool.[ch]: impl. a threadpool that can
32884         be used by mint and mono.
32885
32886 2002-05-22  Martin Baulig  <martin@gnome.org>
32887
32888         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32889         The first argument is now a `MonoReflectionModuleBuilder *', the return
32890         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32891         `methods' field to get the method builder.  The `token' argument is the
32892         unfixed token.
32893
32894         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32895         invalid characters instead of g_assert_not_reached()ing.  This seems
32896         to be the behaviour of mscorlib.
32897
32898 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32899
32900         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32901         Hestilow to fix bug #25104
32902
32903 2002-05-21  Martin Baulig  <martin@gnome.org>
32904
32905         * debug-symfile.c (mono_debug_find_source_location): New function.
32906         Looks up an IL offset in the line number table and returns the source
32907         location as a string.
32908
32909 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32910
32911         * icall.c:
32912         (mono_double_ToStringImpl): changed %f by %g until we have something
32913         better.
32914
32915 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32916
32917         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32918         parameters first in C#.
32919
32920 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32921
32922         * icall.c, reflection.h: added icall to get info about an event.
32923
32924 2002-05-20  Radek Doulik  <rodo@ximian.com>
32925
32926         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32927         endian
32928         (mono_value_box): don't use memcpy for small sizes on
32929         architectures with unaligned access
32930
32931 2002-05-20  Martin Baulig  <martin@gnome.org>
32932
32933         * reflection.c (mono_reflection_setup_internal_class): Don't crash
32934         if `tb->parent == NULL'.
32935         (mono_reflection_create_internal_class): New function.  This is
32936         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
32937         for enum types.
32938
32939         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
32940         New interncall.
32941
32942 2002-05-19  Martin Baulig  <martin@gnome.org>
32943
32944         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
32945         argument to get the length, don't default to the array length.
32946
32947 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
32948
32949         * assembly.c (mono_assembly_setrootdir): New function used to
32950         override the MONO_ASSEMBLIES directory.
32951
32952 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32953
32954         * icall.c: ValueType_GetHashCode() initialize local var.
32955
32956 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32957
32958         * reflection.c: sort custom attributes table.
32959
32960 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32961
32962         * reflection.c: support named args in custom attributes (write support).
32963
32964 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32965
32966         * reflection.c: fix finally position calculation.
32967
32968 2002-05-15  Radek Doulik  <rodo@ximian.com>
32969
32970         * reflection.c: fixed endianess at many places
32971
32972         * icall.c (ves_icall_InitializeArray): comment out debug msg
32973
32974 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
32975
32976         * object.c (mono_unhandled_exception): new function to handle
32977         unhandled exceptions.
32978         (mono_unhandled_exception): call the UnhandledException event.
32979         (mono_runtime_delegate_invoke): impl.
32980
32981 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
32982
32983         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
32984         returns the RVA, not the direct pointer to the data. Handle the case
32985         when the class size is fixed.
32986
32987 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32988
32989         * reflection.c: fix some endianess issues.
32990
32991 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
32992
32993         * object.c (mono_runtime_invoke): is now able to catch exceptions.
32994
32995         * threads.c (mono_thread_init): added a callback which is invoked
32996         at thread start.
32997
32998 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32999         
33000         * icall.c: make GetHashCode return non-negative values.
33001
33002 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33003
33004         * object.c, icall.c, gc.c: revert to address-based hashcode.
33005
33006 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
33007
33008         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
33009
33010 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33011
33012         * icall.c, class.c: special case <Module>.
33013
33014 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
33015
33016         * icall.c: fix bug in GetNow().
33017
33018 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
33019
33020         * object.c (mono_runtime_class_init): make sure that we call all
33021         static class constructors.
33022
33023 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33024
33025         * reflection.c: sort methodsemantics table.
33026
33027 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33028
33029         * reflection.h, reflection.c: honour init locals setting.
33030
33031 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
33032
33033         * icall.c: copied Double ToStringImpl for Single ToStringImpl
33034
33035 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33036
33037         * reflection.c: support ContructorBuilders in attribute blob creation.
33038
33039 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33040
33041         * reflection.c: some changes to build a binary that can be run
33042         directly in windows.
33043
33044 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33045
33046         * loader.c: print a big message when an icall can't be found.
33047
33048 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33049
33050         * string-icalls.c: fix bug 24248.
33051
33052 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33053
33054         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33055         icall.c, reflection.h: separate assembly loading by pathname and by
33056         assembly name. Use the MONO_PATH env var to search for assemblies.
33057
33058 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33059
33060         * assembly.c, image.h: add some support for assemblies
33061         with multiple modules.
33062         * class.c, class.h: export mono_class_from_typeref().
33063         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33064         instead.
33065
33066 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33067
33068         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33069         documentation says (the ECMA one is correct).
33070
33071 2002-05-02  Dick Porter  <dick@ximian.com>
33072
33073         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33074         Don't name the synchronisation mutex.
33075
33076 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33077
33078         * rand.c
33079         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33080         Make the prototypes match.
33081         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33082         Same.
33083
33084         * icall.c
33085         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33086         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33087         all systems have tm.tm_zone, so use strftime() with %Z to print
33088         the timezone abreviation into a temp string.
33089
33090         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33091         rather than mono_array_addr() on a MonoString on Big Endian
33092         machines.
33093
33094 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33095
33096         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33097         fix bug 24041
33098
33099 2002-04-30  Dick Porter  <dick@ximian.com>
33100
33101         * socket-io.c: Cope with SOCKET being an integer rather than a
33102         pointer now.
33103
33104         * threads.c: Added Thread_free_internal, to deal with thread
33105         handle cleanup.  Moved calls to handle_store() and handle_remove()
33106         to start_wrapper(), so each can only be called once.  Allocate
33107         synchronisation blocks with GC_malloc(), and use GC finalisation
33108         to close the handles.
33109
33110         * icall.c: added System.Threading.Thread::Thread_free_internal
33111
33112 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33113
33114         * icall.c: support Environment.Exit, CommandLineArgs().
33115
33116 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33117
33118         * object.c, object.h: added mono_runtime_run_main () and
33119         mono_runtime_get_main_args () for use in System.Environment.
33120
33121 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33122
33123         * gc.c: fix thinko, enable actual finalization since the jit is now
33124         fixed.
33125
33126 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33127
33128         * gc.c, object.c: take into account that an object may be offset wrt the address
33129         returned by GC_malloc().
33130
33131 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33132
33133         * image.c: handle files without entries in the assembly table (modules).
33134
33135 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33136
33137         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33138         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33139         allowed to be null when it's System.Object class setup.
33140
33141 2002-04-27  Martin Baulig  <martin@gnome.org>
33142
33143         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33144         if `tb->parent == NULL' rather than crashing.
33145
33146 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33147
33148         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33149         calling acos() where asin() should have been called.
33150
33151 2002-04-26  Martin Baulig  <martin@gnome.org>
33152
33153         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33154         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33155         there's a subdirectory called `System', but we don't want to read that
33156         subdirectory as an assembly.
33157
33158 2002-04-25  Martin Baulig  <martin@gnome.org>
33159
33160         * debug-symfile.c: Reflect latest MonoString changes.
33161
33162 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33163
33164         * rand.c, rand.h: instance method icalls need to have an explicit
33165         this pointer as first argument in the C implementation.
33166
33167 2002-04-25  Nick Drochak <ndrochak@gol.com>
33168
33169         * icall.c: Fix typo in map for GetNonZeroBytes
33170
33171 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33172
33173         * string-icalls.c : String does now passes unit tests without any 
33174         errors, the following changes has been made:
33175         
33176         Implemented replace methods.
33177         Renaming of methods to (try) follow the standard.
33178         Fixed compare ordinal
33179         Made all memory allocated directly to function instead of via icall function.
33180         Small performance fix in is_in_array function
33181                         
33182  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33183
33184         c (mono_string_Internal_ctor_charp_int_int):
33185         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33186         sindex < 0, throw ArgumentOutOfRangeException instead of
33187         ArgumentNullException.
33188
33189         Added new check for length == 0, however
33190         I need to make it return String.Empty from the C code.
33191         
33192         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33193         that calculate the length for us here.
33194         
33195         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33196         mono_string_new_utf16 with mono_string_new, since value is utf8.
33197
33198 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33199
33200         * object.c: register the object for finalization if needed.
33201         Allocate one more char in the string for the terminating 0 char.
33202
33203 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33204
33205         * class.c, class.h, image.c: check if a type implemenst a destructor.
33206         Use the proper key for array class lookups.
33207         * icall.c: register the icalls in the System.GC class.
33208         * gc.c, gc.h: GC-related functions and icalls.
33209
33210 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33211
33212         * icall.c:
33213         * socket-io.c:
33214         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33215         changed a couple of free () by g_free ().
33216
33217         * decimal.c: one-liner in the comments for decimal2string ().
33218
33219 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33220
33221         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33222
33223 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33224
33225         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33226         * object.c (mono_runtime_invoke_array) : handle null in params
33227
33228 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33229
33230         * string-icalls.c: fixed bug in split (one off bug)
33231
33232 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33233
33234         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33235         * icalls.c: added String::Equals as internal method
33236
33237 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33238
33239         * threads.c: fixed bug in the double interlocked functions
33240
33241 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33242
33243         * threads.c: implemented all of the new interlocked icalls.
33244         * string-icalls.c: fix a bug in insert.
33245         * icalls.c: added the icalls for interlocked, removed old string functions.
33246         
33247 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33248
33249         * loader.c: fix off-by-one error when reading argument names.
33250
33251 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33252
33253         * profiler.c: win32 counter implementation (untested).
33254         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33255         (the latter needs testing and more complete impl. from win32 folks).
33256
33257 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33258
33259         * object.c: mono_array_new_full workaround mono_array_class_get
33260         problem.
33261
33262 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33263
33264         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33265         * object.h (mono_string_chars): Changed casting type.
33266
33267 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33268
33269         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33270                            method signatures to use gunichar2 instead of gint16.
33271
33272 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33273
33274         * object.h, object.c: domain-specific versions of mono_object_new and
33275         mono_array_new.
33276
33277 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33278
33279         * object.c: changed String layout
33280
33281         * string-icalls.c (mono_string_Internal_ctor_chara): added
33282         internal string constructors.
33283
33284 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33285
33286         * threads.c: pass 'this' to the thread start routine.
33287
33288 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33289
33290         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33291         InternalCompareStr don't call twice mono_string_cmp_char for the last
33292         character. Improved performance in mono_string_cmp_char.
33293
33294 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33295
33296         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33297         code into its own library: libmonoruntime.
33298
33299 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33300
33301         * object.h, object.c: changed array format so that szarrays do not
33302         require a bounds structure.
33303         * icall.c, appdomain.c: support for new szarray format.
33304
33305 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33306
33307         * metadata.c: compare also the retuns type when comparing signatures:
33308         we didn't do this as an optimization since really overloaded methods
33309         must differ also in the arguments, but this doesn't work with
33310         low-level IL code (or when using explicit conversion operators: see
33311         bug#23498 for an example).
33312
33313 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33314
33315         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33316
33317 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33318
33319         * icall.c: make MonoType::GetElementType its own icall.
33320
33321 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33322
33323         * icall.c: remove MonoMethod_get_Name().
33324         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33325         object.
33326
33327 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33328
33329         * string-icalls.c: optimized a few methods.
33330
33331 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33332
33333         * icall.c: added all new string internal calls
33334         * string-icalls.c: added, new string internal call implementation.
33335         * object.c: added mono_string_new_size for allocating a string a size
33336
33337 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33338
33339         * object.c (mono_object_isinst): use the same code as in the
33340         optimized x86 version.
33341
33342 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33343
33344         * profiler.c: TSC-based timer code (faster and more accurate).
33345         Not hooked up in configure, yet (set USE_X86TSC to 1).
33346
33347 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33348
33349         * profiler.c, profiler.h: track time spent compiling methods.
33350         * threads.c: track thread creation/destruction.
33351
33352 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33353
33354         * profiler.c, profiler.h, profiler-private.h: profiling interface
33355         and sample implementation. Moved here so that it can be used also by
33356         the jit.
33357
33358 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33359
33360         * reflection.c, reflection.h: keep types and other handles separate in
33361         the hash tables for referred tokens. Add guid for modules.
33362
33363 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33364
33365         * assembly.c: fix bugs found with valgrind.
33366         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33367
33368 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33369
33370         * threads: added icall support for getting current domain for
33371                    the thread.
33372  
33373 2002-04-13  Martin Baulig  <martin@gnome.org>
33374
33375         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33376         (MonoDebugVarInfo): Added `index' field for register based addresses.
33377         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33378         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33379         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33380         `MonoDebugVarInfo *this_var'.
33381
33382         * debug-symfile.c (relocate_variable): New static function to write
33383         a location description for a local variable or method parameter.
33384
33385 2002-04-12  Martin Baulig  <martin@gnome.org>
33386
33387         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33388         stack offset and begin/end scope address of a local variable.
33389         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33390         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33391         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33392
33393         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33394         Added new relocation types for start/end scope of a local variable.
33395
33396 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33397
33398         * object.h: add mono_object_domain() macro.
33399         * reflection.c: handle typespecs.
33400         * icall.c: MonoMethod::get_Name() implementation.
33401
33402 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33403
33404         * icall.c: String::GetHashCode() icall implementation.
33405
33406 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33407
33408         * icall.c: String::IndexOfAny icall.
33409         * object.c, object.h: make array->max_length more useful.
33410         Intrduced mono_object_class() and mono_string_length() macros.
33411
33412 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33413
33414         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33415         instead of g_unichar_isdigit.
33416
33417 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33418
33419         * icall.c: Implement a simple Double.ToString().
33420
33421 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33422
33423         * appdomain.h: only io-layer.h is supposed to be included.
33424         * icall.c: explicitly import environ. Fix warning.
33425
33426 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33427
33428         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33429                 return true even if it's not Daylight Savings time.
33430                 Only return false for the case where the function isn't
33431                 implemented for a plaform (read Windows).
33432
33433 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33434
33435         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33436         data with a mutex.
33437
33438 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33439
33440         * mempool.c (mono_mempool_alloc): only use g_malloc when
33441         absolutely necessary.
33442
33443 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33444
33445         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33446
33447         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33448         (mono_class_proxy_vtable): use domain mempool
33449
33450 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33451
33452         * appdomain.h, appdomain.c: split initialization that requires the
33453         execution engine support into mono_runtime_init().
33454
33455 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33456
33457         * class.c (mono_class_init): don't include vtable inside MonoClass
33458         to save some memory, gather some statistics.
33459         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33460
33461 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33462
33463         * icall.c: internalcall implementation for ValueType.Equals().
33464
33465 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33466
33467         * object.c (mono_message_init): moved 
33468         (mono_runtime_exec_main): new arch. independent impl.
33469         (mono_runtime_invoke_array): new method - like
33470         mono_runtime_invoke, but you can pass an array of objects.
33471         (mono_remoting_invoke): new arch. independent impl.
33472         (mono_message_invoke): new arch. independent impl.
33473         (mono_runtime_class_init): new arch. independent impl.
33474         (mono_runtime_object_init): new arch. independent impl.
33475
33476 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33477
33478         * metadata.c, object.c, reflection.c: documented the exported
33479         functions.
33480
33481 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33482
33483         * icall.c: simpler code to pass the assembly builder data to corlib.
33484         Implement GetNestedTypes() internalcall.
33485
33486 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33487
33488         * class.c: warn if a type can't be loaded.
33489
33490 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
33491
33492         * image.h: typedef MonoImageOpenStatus
33493         * types.h: removed unused file
33494         
33495 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
33496
33497         * icall.c: Enum_ToObject accepts enum value arguments.
33498
33499 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33500
33501         * class.c: move initialization of properties, events and nested
33502         classes, so that they happen for interfaces, too.
33503
33504 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33505
33506         * icall.c: cleanup some ugly casts in Array_SetValue*.
33507
33508 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33509
33510         * icall.c: the values array fro enums is of the correct type, now.
33511         Implement (correctly) getFullName instead of assQualifiedName for
33512         MonoType.
33513         * reflection.h, reflection.c: added mono_type_get_name ().
33514
33515 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33516
33517         * assembly.c, image.h: for each MonoImage, record from wich assembly
33518         it was loaded.
33519         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
33520         Make Type.Assembly work.
33521
33522 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
33523
33524         * debug-symfile.h: use char* instead of gpointer to avoid
33525         unnecessary casts.
33526
33527         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
33528
33529         * icall.c (ves_icall_InternalExecute): impl. FielSetter
33530         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
33531
33532 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
33533
33534         * icall.c (mono_message_init): impl. (code cleanup)
33535         (ves_icall_InternalExecute): impl. FieldGetter
33536
33537         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
33538         defined we call all (non-static)methods through the vtable. 
33539
33540 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
33541
33542         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
33543         finalizer even though the memory is still referenced (and the chunk of
33544         memory is not freed).
33545
33546 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33547
33548         * assembly.c: fix brokeness.
33549
33550 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
33551
33552         * class.c: kill some warnings. Check explicit interface method
33553         implementation also without considering the namespace.
33554         Load also literal strings in static class data.
33555
33556 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
33557
33558         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
33559         (default_assembly_name_resolver): Make the resolver take the
33560         "base" directory where the assembly was originally defined, so we
33561         can load DLLs that are in the same directory as the assembly that
33562         is being referenced.
33563
33564 2002-03-28  Dick Porter  <dick@ximian.com>
33565
33566         * file-io.h: 
33567         * file-io.c:
33568         * socket-io.c: 
33569         * unicode.h: 
33570         * unicode.c: Warning cleanups
33571
33572 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
33573
33574         * object.h, reflection.h: use the correct type instead of MonoObject.
33575
33576 2002-03-28  Martin Baulig  <martin@gnome.org>
33577
33578         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
33579         (mono_debug_update_symbol_file): Initialize classes if necessary.
33580
33581 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33582
33583         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
33584         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
33585
33586 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
33587
33588         * assembly.h: fix function prototype.
33589         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
33590         * mono-endian.h: use const cast.
33591
33592 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33593
33594         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
33595
33596 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33597
33598         * loader.c: don't assert when a typeref can't be loaded, give
33599         a chance to the runtime to trow an exception instead.
33600         * loader.h: fix warning.
33601
33602 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33603
33604         * class.c (mono_class_proxy_vtable): added proxy support
33605
33606 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
33607
33608         * icall.c: removed last of PAL calls, added System.Environment
33609         * file-io.h, file-io.c: MonoIO implementation
33610         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
33611
33612 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33613
33614         * appdomain.c: do not use the byte marker in ldstr table lookup.
33615         * debug-helpers.c: allow two ':' to separate class and method name.
33616         * object.c: allocate arrays bounds with the GC, too.
33617         * verify: add a few more checks.
33618
33619 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
33620
33621         * reflection.c: output also literal strings. Allocate parameter data
33622         with GC_malloc() (thanks, Martin, for catching this!).
33623
33624 2002-03-26  Martin Baulig  <martin@gnome.org>
33625
33626         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
33627         include the `this' offset in the `param_offsets'.
33628
33629 2002-03-25  Martin Baulig  <martin@gnome.org>
33630
33631         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
33632         mono_debug_get_class() function to get the classes. Added new
33633         relocation types for arrays and strings.
33634         (mono_debug_get_class): New static function to search in all
33635         referenced assemblies for a metadata token.
33636
33637         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
33638
33639 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33640
33641         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
33642         hold gc-allocated objects. Make the string heap a stream like the
33643         others. Removed duplicated code when writing stream info.
33644         Added asserts to catch possible buffer overflows. Set the sorted map
33645         for tables that need sorting. Added some documentation.
33646
33647 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
33648
33649         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
33650         for interned strings and vtables.
33651
33652 2002-03-24  Martin Baulig  <martin@gnome.org>
33653
33654         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
33655         it in the array since it was created with g_slist_prepend().
33656
33657 2002-03-24  Martin Baulig  <martin@gnome.org>
33658
33659         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
33660         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
33661         (mono_debug_method_from_token): Renamed to
33662         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
33663         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
33664
33665         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
33666         relocation types.
33667
33668         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
33669
33670 2002-03-24  Martin Baulig  <martin@gnome.org>
33671
33672         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
33673         (mono_debug_method_from_token): New func.
33674
33675         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
33676         New interncall, calls mono_debug_local_type_from_signature().
33677         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
33678         calls mono_debug_method_from_token().
33679
33680 2002-03-23  Martin Baulig  <martin@gnome.org>
33681
33682         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
33683         specifies the number of bytes to be converted, not the array size.
33684         Return the number of chars, not the number of bytes.
33685         (ves_icall_iconv_get_chars): The `byteCount' argument
33686         specifies the number of bytes to be converted, not the array size.
33687
33688 2002-03-23  Martin Baulig  <martin@gnome.org>
33689
33690         * reflection.h (MonoReflectionSigHelper): New type.
33691
33692         * reflection.c (mono_reflection_sighelper_get_signature_local),
33693         (mono_reflection_sighelper_get_signature_local): New functions.
33694
33695         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
33696         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
33697         interncalls.
33698
33699 2002-03-23  Martin Baulig  <martin@gnome.org>
33700
33701         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33702         is_writeable is set.
33703         (mono_raw_buffer_update): New function to write the modified map
33704         back to disk.
33705
33706         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33707
33708         * debug-symfile.c (mono_debug_update_symbol_file): Call
33709         mono_raw_buffer_update() when done writing.
33710
33711 2002-03-23  Martin Baulig  <martin@gnome.org>
33712
33713         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33714
33715         * debug-symfile.c: Added support for arguments and local variables.
33716
33717 2002-03-23  Dick Porter  <dick@ximian.com>
33718
33719         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33720         protected by ifdefs, hence breaking the w32 build.
33721
33722 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33723
33724         * object.c: implement is_interned() the right way.
33725
33726 2002-03-21  Martin Baulig  <martin@gnome.org>
33727
33728         * debug-symfile.[ch]: New files to handle debugging information
33729         files. There's also support to dynamically update these symbol
33730         files to include machine dependent information.
33731
33732 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33733
33734         * threads.c (mono_thread_create): new function to create thread
33735         from C
33736
33737 2002-03-20  Martin Baulig  <martin@gnome.org>
33738
33739         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33740         method is a constructor.
33741         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33742         points to ves_icall_InternalInvoke().
33743
33744 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33745
33746         * file-io.c: Flush shouldn't throw exceptions.
33747
33748 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33749
33750         * file-io.c: FileStream flush support; FileSetLength now
33751         restores file pointer.
33752
33753 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33754
33755         * class.c: set image for pointer classes.
33756
33757 2002/03/19  Nick Drochak <ndrochak@gol.com>
33758
33759         * sysmath.c: Forgot one.
33760
33761 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33762
33763         * sysmath.c: Avoid redefining existing names.
33764
33765 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33766
33767         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33768         handled by runtime as icall rather than dllimport from libm.so
33769         * file-io.c, file-io.h: fixed handle argument type.
33770
33771 2002-03-18  Dick Porter  <dick@ximian.com>
33772
33773         * reflection.c (mono_image_get_type_info): rename interface to
33774         iface, because of "#define interface struct" on windows.
33775
33776 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33777
33778         * class.c, class.h: rename and export mono_ptr_class_get().
33779         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33780         * reflection.c, reflection.h, icall.c: better/saner type name
33781         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33782         method signatures.
33783
33784 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33785
33786         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33787
33788         * icall.c (ves_icall_InternalInvoke): impl.
33789
33790 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33791
33792         * reflection.c: output the interface map table, too.
33793
33794 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33795
33796         * class.c (class_compute_field_layout): separate computation of 
33797         static field layout
33798
33799 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33800
33801         * icall.c: added System.Buffer support.
33802         * file-io.c: moved file icalls from PAL to FileStream.
33803
33804 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33805
33806         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33807
33808 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33809
33810         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33811
33812 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33813
33814         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33815
33816 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33817
33818         * debug-helpers.{c,h}: moved here from monograph some useful functions
33819         to locate a method by name/signature in a class or image. Included
33820         also a small and flexible IL disassembler.
33821
33822 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33823
33824         * reflection.c: fixup tokens in methods with small header size, too.
33825
33826 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33827
33828         * object.c (mono_string_to_utf8): remove assert(!error), instead
33829         print a warning. 
33830
33831 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33832
33833         * icall.c: update to the new mono_Array_class_get interface.
33834
33835 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33836
33837         * appdomain.c, object.c: Boehm-GC enable.
33838         * icall.c: make get_data_chunk() support split data requests.
33839         Ensure a class is initialized in more cases. Return only the first
33840         property found in GetProperties() or the compiler gets confused. 
33841         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33842         * reflection.h, reflection.c: add fixup mechanism for field and method
33843         tokens. Initialize assembly->typeref in a single place. Output
33844         properties after events. Support custom attributes for events, too.
33845         Typo fix for paramter custom attrs.
33846
33847 2002-03-07  Martin Baulig  <martin@gnome.org>
33848
33849         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
33850
33851 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
33852
33853         * class.c (mono_array_class_get): fix. for multi. dim. arrays
33854
33855 2002-03-06  Martin Baulig  <martin@gnome.org>
33856
33857         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
33858         non-zero lower bounds. See testcases #F10-#F13.
33859
33860 2002-03-05  Martin Baulig  <martin@gnome.org>
33861
33862         * exception.c (mono_get_exception_argument_out_of_range): New exception.
33863
33864         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
33865         ves_icall_System_Array_GetValue(), only calculate the absolute array position
33866         here.
33867         (ves_icall_System_Array_SetValue): Likewise.
33868         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
33869         as argument and does the actual work. This function is used when copying a
33870         multi-dimensional array.
33871         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
33872         now do all the widening conversions of value types.
33873         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
33874
33875 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33876
33877         * class.c: remove some magic numbers and use the smbolic names,
33878         instead. Added init_events() to load event info at class init time.
33879         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
33880         and mono_metadata_methods_from_event().
33881         * reflection.h, reflection.c: added support for writing out the evnets
33882         related information.
33883
33884 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33885
33886         * reflection.h, icall.c: use a different method (GetInterfaces)
33887         to gather interface info and add isbyref, isprimitive and
33888         ispointer to the ves_icall_get_type_info() return value.
33889
33890 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33891
33892         * class.h: stared adding support for events.
33893         * icall.c: split find_members implementation. Added debug icall to get
33894         the address of an object.
33895         * reflection.c: handle TypeBuilders in mono_type_get_object().
33896
33897 2002-03-01  Martin Baulig  <martin@gnome.org>
33898
33899         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33900         ArgumentOutOfRangeException(), not an ArgumentException().
33901         (ves_icall_System_Array_GetLowerBound): Likewise.
33902         (ves_icall_System_Array_GetValue): Improved argument checking.
33903         (ves_icall_System_Array_SetValue): Improved argument checking.
33904
33905 2002-03-01  Martin Baulig  <martin@gnome.org>
33906
33907         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33908         called with invalid arguments rather than just dying with g_assert().
33909         (ves_icall_System_Array_SetValue): Likewise.
33910         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33911         raise a NotImplementedException instead.
33912         (ves_icall_System_Array_GetLength): Added argument checking.
33913         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33914
33915 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33916
33917         * object.h (mono_assert): new macros mono_assert and
33918         mono_assert_not_reached
33919
33920 2002-02-28  Martin Baulig  <martin@gnome.org>
33921
33922         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33923         and "System::String::IsInterned" to "System::String::_IsInterned".
33924
33925 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33926
33927         * icall.c: remove hacks for typebuilder. Added icall to create a
33928         modified type from a tybebuilder.
33929         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
33930         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
33931         to create a backing MonoClass for a TypeBuilder.
33932
33933 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33934
33935         * class.c, class.h: more refactoring of class init.
33936         Export mono_class_setup_mono_type() and mono_class_setup_parent().
33937
33938 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
33939
33940         * marshal.c, marshal.h: start of marshaling interface.
33941
33942 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33943
33944         * icall.c: fix order in assembly qualified name icall.
33945
33946 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33947
33948         * class.c: do not free str, since we store it in the hash table.
33949         * reflection.h: add label field to MonoILExceptionInfo.
33950         * reflection.c: handle references to more than one assembly. Handle
33951         case when there isn't a module created in the assembly.
33952
33953 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33954
33955         * class.c: Fix typo. Start refactoring of class init code.
33956
33957 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33958
33959         * appdomain.c: exit with 1 on error.
33960         * class.c: we already have the name in MonoClassField.
33961         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
33962         MonoStreamHeader instead of an offset of image->raw_metadata.
33963
33964 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
33965
33966         * appdomain.c (mono_init): Be even more descriptive about the error.
33967
33968 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
33969
33970         * appdomain.c: give the user an informative message when corlib can't
33971         be loaded.
33972
33973 2002-02-26  Martin Baulig  <martin@gnome.org>
33974
33975         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
33976         New icall to get the time zone data.
33977
33978 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33979
33980         * reflection.c: set virtual and raw size of section correctly.
33981         * threads.c: transfer domain information to newly created threads.
33982
33983 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33984
33985         * class.c: when instancing a class in a domain, load the default
33986         vaules for static fields from the constant table. Fix System.Enum to
33987         not be an enum.
33988         * icall.c: implement Object::GetType() internalcall. Implemented
33989         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
33990         Fixed checking of binding flags in find_members().
33991         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
33992         * reflection.c: handle enumerations when writing to the constant
33993         table. Use a different object cache for types.
33994
33995
33996 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
33997
33998         * object.c (mono_object_isinst): fix for arrays
33999
34000         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
34001
34002 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34003
34004         * object.c: don't use mprotect ()  and fix intern pool hash table
34005         lookup for big endian systems.
34006
34007 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34008
34009         * icall.c: change type_is_subtype_of () signature.
34010
34011 2002-02-21  Mark Crichton  <crichton@gimp.org>
34012
34013         * rand.c, rand.h: Added random number generator for
34014         System.Security.Cryptography classes.
34015
34016         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
34017
34018         * icall.c: Added System.Security.Cryptography calls.
34019
34020 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34021
34022         * class.c, icall.c, metadata.c: better support for pointer types.
34023         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
34024         * reflection.c: Add support for getting custom attrs for properties
34025         and simplify some code.
34026
34027 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34028
34029         * icall.c: change getToken () and add custom attribute GetBlob()helper
34030         method.
34031         * reflection.h: add custom attrs array to the reflection builder structures.
34032         * reflection.c: encode and emit custom attributes for all the relevant
34033         reflection objects. Cache fieldref and methodref tokens. Change
34034         mono_image_create_token() interface to take a MonoDynamicAssembly.
34035         More complete custom attributes decoder. Load custom attributes for
34036         Assembly, Field, Method and Constructor objects, too. Make the
34037         returned array an Attribute[] one, not object[]. Added
34038         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
34039         custom attribute constructor.
34040
34041 2002-02-20  Dick Porter  <dick@ximian.com>
34042
34043         * icall.c:
34044         * rawbuffer.c:
34045         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34046         problem code out for now).
34047
34048 2002-02-19  Radek Doulik  <rodo@ximian.com>
34049
34050         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34051
34052 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34053
34054         * icall.c: register the GetCustomAttributes method.
34055         * object.c, object.h: add mono_string_new_len ().
34056         * reflection.h, reflection.c: added mono_runtime_invoke(),
34057         mono_install_runtime_invoke(). Added
34058         mono_reflection_get_custom_attrs () to load custom attributes and
34059         create the attribute objects.
34060
34061 2002-02-19  Dick Porter  <dick@ximian.com>
34062         * threads-dummy-types.c:
34063         * threads-dummy-types.h:
34064         * threads-dummy.c:
34065         * threads-dummy.h:
34066         * threads-pthread-types.c:
34067         * threads-pthread-types.h:
34068         * threads-pthread.c:
34069         * threads-pthread.h:  Deleted obsolete files
34070
34071 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34072
34073         * class.c (mono_class_vtable): runtime init the class when we
34074         allocate static class data.
34075
34076         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34077
34078         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34079         and String - but we will need generic marshalling support in the
34080         future. 
34081         (mono_init): set the domain name in a ms compatible way
34082
34083         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34084         String[].
34085
34086 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34087
34088         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34089         for sizes
34090
34091         * appdomain.c (mono_domain_unload): impl.
34092
34093 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34094
34095         * appdomain.c, object.c: fix intern pool implementation.
34096         * class.c: fix alignment code.
34097
34098 2002-02-16  Radek Doulik  <rodo@ximian.com>
34099
34100         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34101         and s2 > s1, just copy lower bytes to be compatible with little
34102         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34103         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34104
34105         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34106         force big_endian to be 1 for big endian machines 
34107         (ves_icall_iconv_new_decoder): ditto
34108
34109 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34110
34111         * socket-io.c (convert_sockopt_level_and_name): If the system
34112         doesn't define SOL_IP or SOL_TCP, get them by hand using
34113         getprotobyname() and caching the values (because this could be a
34114         slow operation).
34115         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34116         Use the appropriate struct when the system does support it. Ie,
34117         not all systems have struct ip_mreqn so use struct ip_mreq when
34118         appropriate.
34119
34120 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34121
34122         * reflection.c: handle finally clauses.
34123
34124 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34125
34126         * socket-io.c: use g_snprintf() instead of snprintf.
34127
34128 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34129
34130         * reflection.c (mono_param_get_objects): Cast second argument to
34131         mono_method_get_param_names to a const char** to silence the
34132         compiler warning.
34133
34134         * appdomain.c (mono_domain_assembly_open): Put parens around the
34135         truth statement in the for-loop.
34136
34137         * unicode.c (iconv_convert): Got rid of a compiler warning about
34138         int i being unused when the system has a new iconv.
34139         (iconv_get_length): Same.
34140
34141         * image.c (load_class_names): Cast the second argument to
34142         g_hash_table_insert() to char* to hush compiler warnings about the
34143         arg being a const.
34144         (mono_image_open): Same here.
34145
34146         * socket-io.c: Don't conditionally include sys/filio.h or
34147         sys/sockio.h here anymore since we now get them from
34148         io-layer/io-layer.h
34149         (inet_pton): If the system doesn't support inet_aton, implement
34150         using inet_addr and also #define INADDR_NONE if it isn't defined
34151         by the system.
34152
34153 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34154
34155         * metadata.c, metadata.h: added function to get packing and size info
34156         of a typedef.
34157         * reflection.h, reflection.c: handle field RVA data. Save info about
34158         the table layout if needed. Assign typedef indexes to all the types
34159         before dumping the info about them to avoid forward reference problems.
34160
34161 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34162
34163         * socket-io.c (convert_sockopt_level_and_name): ifdef
34164         SO_ACCEPTCONN because it is not defined on my system (old debian)
34165
34166 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34167
34168         * opcode.c: use stddef.h to get NULL.
34169
34170 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34171
34172         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34173         for FIONBIO, FIONREAD and SIOCATMARK.
34174         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34175         define INADDR_NONE and besides, inet_addr() is deprecated and
34176         should not be used. Use inet_pton() instead - it also has the
34177         added bonus that it can easily handle IPv6 addresses as well.
34178         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34179
34180 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34181
34182         * decimal.c: remove _MSC_VER conditional.
34183
34184 2002-02-13  Dick Porter  <dick@ximian.com>
34185
34186         * socket-io.c: 
34187         * icall.c: Internal calls for Blocking, Select, Shutdown,
34188         GetSocketOption and SetSocketOption
34189
34190 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34191
34192         * assembly.cs: better resolver: use it instead of some kludgy
34193         code.
34194
34195 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34196
34197         * reflection.c: the best way to speed-up the compiler is to avoid
34198         infinite loops.
34199
34200 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34201
34202         * class.c (mono_class_vtable): changed the object layout
34203         (obj->vtable->class). 
34204         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34205
34206 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34207
34208         * assembly.c: look for assemblies in the assembly dir, too.
34209
34210 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34211
34212         * class.c: fix thinko in mono_class_from_type().
34213
34214 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34215
34216         * exception.h, exception.c: added TypeLoadException.
34217         * object.h, object.c: added mono_array_clone ().
34218         * icall.c: handle throwOnError in AssemblyGetType().
34219         Added Array.Clone().
34220         * opcode.h, opcode.c: use a single value for the opcode val.
34221         Compile fix for non-gcc compilers.
34222
34223 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34224
34225         * opcodes.c, opcodes.h: export interesting info about opcodes.
34226
34227 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34228
34229         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34230         icalls. 
34231
34232         * class.c (class_compute_field_layout): set element_class for enums
34233         (mono_class_create_from_typedef): set element_class for normal classes
34234
34235         * icall.c (ves_icall_System_Enum_get_value): impl.
34236
34237         * class.c (mono_class_create_from_typedef): do not set valuetype
34238         flag for System.ValueType and System.Enum
34239
34240 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34241
34242         * unicode.c (iconv_convert): fix big endian problem.
34243
34244 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34245
34246         * class.c: add asserts if we are ever going to scribble over memory.
34247         * socket-io.c: not all systems have AF_IRDA defined.
34248
34249 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34250
34251         * class.c (class_compute_field_layout): do not consider static
34252         fields to compute alignment
34253
34254 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34255
34256         * appdomain.c (mono_appdomain_get): impl.
34257         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34258
34259 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34260
34261         * icall.c: ignore "file://" prefix when loading an assembly.
34262
34263 2002-01-23  Dick Porter  <dick@ximian.com>
34264
34265         * socket-io.c:
34266         * icall.c:
34267         * Makefile.am: Added socket support
34268
34269 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34270
34271         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34272         code back.  This should return the assemblies that are loaded by
34273         the runtime on behalf of an application domain. 
34274
34275         The current implementation is still broken, it just returns every
34276         assembly loaded, but until we get real applications domain this
34277         will do.
34278
34279 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34280
34281         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34282         AppDomain object.
34283
34284 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34285
34286         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34287         the mono_class_from_name lookup.
34288         (ves_icall_get_parameter_info): ditto.
34289         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34290         method.
34291         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34292
34293 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34294
34295         * class.c: load also nested classes on class init.
34296         System.ValueType instance methods gets passed boxed
34297         values, unless methods in derived classed that get a pointer to the
34298         data.
34299         * icall.c: use better name parsing code in GetType().
34300         * image.c, image.h: add mono_image_loaded ().
34301         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34302         * reflection.c, reflection.h: added mono_reflection_parse_type().
34303
34304 2002-01-22  Veronica De Santis <veron78@interfree.it>
34305
34306         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34307         * threads.c : Added the implementation of internal calls for events
34308         * threads.h : Added prototypes of internal calls for events
34309         
34310 2002-01-21  Radek Doulik  <rodo@ximian.com>
34311
34312         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34313
34314 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34315
34316         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34317         (mono_class_value_size): use min_align
34318
34319 2002-01-20  Dick Porter  <dick@ximian.com>
34320
34321         * threads.h:
34322         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34323         so it compiles on w32.
34324
34325 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34326
34327         * metadata.c (mono_type_stack_size): impl.
34328
34329         * class.c (mono_class_get_field): impl. memberref token
34330
34331 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34332
34333         * icall.h : Added the internal calls mapping for CreateMutex_internal
34334                     and ReleaseMutex_internal.
34335         * threads.h : Added the prototype of mutexes internal calls.
34336         * threads.c : Added the implementations of mutexes internal calls.
34337
34338 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34339
34340         * metaparse.h: removed unused file.
34341         * reflection.c, reflection.h: added stream_data_align () function 
34342         to align data in streams and keep stream aligned. Add support for
34343         exception support in method headers.
34344
34345 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34346
34347         * unicode.c: make iconv_convert () return the number of bytess written
34348         in the output buffer.
34349
34350 2002-01-15  Dick Porter  <dick@ximian.com>
34351         * threads.c: Make the runtime's idea of infinite timeouts coincide
34352         with the class library's
34353
34354         Fix a particularly egregious bug in mono_thread_cleanup(). That
34355         code was so utterly bogus it must have been written on a Monday.
34356
34357 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34358
34359         * reflection.h: add subtypes field to TypeBuilder.
34360         * reflection.c: encode constants for literal fields.
34361         Handle subtypes. Fix user string token (and add a zero byte)
34362         at the end.
34363         
34364 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34365
34366         * class.c (mono_class_init): bug fix: assign slot numbers for
34367         abstract methods.
34368
34369 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34370
34371         * reflection.c: don't try to output a code RVA for abstract methods.
34372         Small fixes for method header format. Output parameter info to the
34373         ParamDef table. Save method overriding info to MethodImpl table.
34374         Fix property support. Allow typedef.extends to be a type in the
34375         building assembly.
34376         * verify.c: fix off-by-one error.
34377
34378 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34379
34380         * class.c: fix mono_class_from_mono_type () for szarray types.
34381         Remove unused cache check in mono_class_from_type_spec().
34382         * icall.c: *type_from_name () functions handle simple arrays and byref.
34383         * reflection.c: handle byref and szarray types. Handle methods without
34384         body (gets P/Invoke compilation working). Handle types and fields in
34385         get_token ().
34386         * reflection.h: add rank to MonoTypeInfo.
34387
34388 2002-01-10  Dick Porter  <dick@ximian.com>
34389
34390         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34391         internal calls
34392
34393 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34394
34395         * icall.c: initialize class in type_from_handle ().
34396         Loop also in parent classes for get_method ().
34397         * reflection.c: properly encode class and valuetype types.
34398         Start on encoding TypeBuilder types. Handle fieldrefs.
34399         Use correct length when registering a user string.
34400         Handle ConstructorBuilder and MonoMethod in get_token ().
34401         Make mono_type_get_object () aware of cached types.
34402         * object.c: back out change to mono_string_new ().
34403
34404 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34405         * object.c: mono_string_new should return a NULL when the string 
34406         passed in is NULL -- not try to deference it.
34407         
34408 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34409
34410         * icall.c: hack to make IsSubType work for TypeBuilders.
34411         * reflection.c: emit constructors before methods.
34412         Retrieve param names in mono_param_get_objects().
34413
34414 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34415
34416         * Makefile.am: fix list of headers and sources so automake 1.5
34417         doesn't complain. Removed \# at end of list.
34418
34419 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34420
34421         * reflection.c: get token for a method ref. Set return type of
34422         constructor to void.
34423         * loader.c: debug message.
34424         * class.c: typo fix.
34425
34426 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34427
34428         * icall.c: fix array init with rank > 1. FindMembers
34429         loops in parent class as well.
34430         * image.c: do not insert nested types in name cache.
34431         * reflection.c: warning fix.
34432         * reflection.h: add override method (for interface impl).
34433
34434 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34435
34436         * metadata.c: fix customattr decoding.
34437
34438 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34439
34440         * rawbuffer.cs: Added native Win32 implementation, avoids using
34441         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34442
34443 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34444
34445         * class.c: make the low-level routines handle the cache.
34446
34447 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34448
34449         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34450
34451 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34452
34453         * class.c: fix mono_array_element_size() for objects.
34454         * class.h, class.c: add properties to MonoClass and load them
34455         at init time.
34456         * icall.c: check with isinst() when assigning a value to an array
34457         instead of requiring the classes to match exactly.
34458         Implemented icall for System.Type::GetType().
34459         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34460         enums. Handle bindingflags when looking for methods and fields.
34461         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34462         and mono_metadata_methods_from_property().
34463         * reflection.h, reflection.c: added structures for propreties,
34464         parameters and enums. Implemented mono_property_get_object() and
34465         mono_param_get_objects().
34466
34467 2001-12-18  Dick Porter  <dick@ximian.com>
34468
34469         * file-io.c: Use mono_string_to_utf16() instead of
34470         mono_string_chars()
34471
34472         * object.c: Added mono_string_to_utf16(), which copies the non
34473         NULL-terminated MonoString into a new double-null-terminated
34474         buffer.
34475
34476 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
34477
34478         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
34479
34480 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
34481
34482         * file-io.c: raise exceptions if handle is invalid.
34483
34484 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
34485
34486         * assembly.c: yet another check for mscorlib.
34487         * class.c, class.h: load nesting info for classes.
34488         * icall.c: many new functions to support the Reflection classes.
34489         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
34490         * reflection.h, reflection.c: mono_image_create_token(),
34491         mono_assembly_get_object(), mono_type_get_object(),
34492         mono_method_get_object(), mono_field_get_object(): methods to return
34493         objects that parallel the C representation of assemblies, types,
34494         methods, fields.
34495
34496 2001-12-11  Dick Porter  <dick@ximian.com>
34497
34498         * icall.c:
34499         * file-io.c: Internal calls for file IO.
34500
34501 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
34502
34503         * tabledefs.h: missing FileAttributes.
34504         * verify.h, verify.c: use is_valid_string () to simplify and check for
34505         valid strings more correctly. Fix warnings and speeling.
34506         Check more tables: Filed, File, ModuleRef, StandAloneSig.
34507         Check code: branches, maxstack, method calls.
34508
34509 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34510
34511         * object.c (mono_object_allocate): removed static, so that the jit
34512         can allocate value types.
34513
34514         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34515
34516 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34517
34518         * class.c: init enum types right away and register the
34519         token->MonoClass map in mono_class_create_from_typedef ().
34520         * verify.h, verify.c: first cut of the verifier.
34521         * pedump.c: add --verify switch to verify metadata tables.
34522         * tabledefs.h: add some missing enums.
34523
34524 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
34525
34526         * class.c (mono_install_runtime_class_init): impl.
34527         (mono_class_init): renamed mono_class_metadata_init to
34528         mono_class_init, also removed the metadata_inited flag
34529
34530         * object.c (mono_object_isinst): use faster algorithm
34531
34532 2001-11-30  Radek Doulik  <rodo@ximian.com>
34533
34534         * mono-endian.h: reverted last change
34535         added function prototypes
34536
34537         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
34538         add mono-endian.c back
34539
34540         * mono-endian.c: returned back, as Paolo pointed out, it's needed
34541         for unaligned access, I've mistaked it with endianess. I am
34542         sorry.
34543         (mono_read16): fix reverted endianess
34544         (mono_read64): ditto
34545         (mono_read32): ditto
34546
34547 2001-11-30  Dick Porter  <dick@ximian.com>
34548
34549         * exception.c: Implement mono_exception_from_name()
34550
34551 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34552
34553         * metadata.h, metadata.c: remove params_size and locals_size and their
34554         calculation from the metadata code: they are only usefult to the
34555         interp.
34556
34557 2001-11-29  Radek Doulik  <rodo@ximian.com>
34558
34559         * object.c (mono_ldstr): swap bytes here, it's probably not the
34560         best place, but works for me now, I'll redo it once I know mono
34561         better, also note that I add PROT_WRITE and don't reset back, also
34562         note that it's only affects big endians, so x86 should be OK
34563
34564         * mono-endian.h (read16): use just glib macros for both endians
34565
34566         * mono-endian.c: removed as glib macros are used in in
34567         mono-endian.h so we don't need to care about endianess for read
34568         macros as glib does that for us already
34569
34570 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
34571
34572         * class.h, class.h: take minimum alignment into consideration so
34573         that the fields of a class remain aligned also when in an array.
34574
34575 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34576
34577         * loader.h, loader.c: add mono_method_get_param_names().
34578         * class.c: 0-init class fields.
34579
34580 2001-11-26  Dick Porter  <dick@ximian.com>
34581
34582         * icall.c:
34583         * threads-types.h:
34584         * threads.c: New file that handles System.Threading on all platforms
34585
34586         * object.c: 
34587         * object.h: Remove the synchronisation struct from MonoObject,
34588         replace it with a pointer that gets initialised on demand
34589
34590         * Makefile.am: Replace all the system-specific threading code with
34591         a single file that uses the new wrapper library
34592
34593 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
34594
34595         * class.c, class.h: add mono_install_trampoline() so that the runtime
34596         can register a function to create a trampoline: removes the ugly
34597         requirement that a runtime needed to export arch_create_jit_trampoline.
34598         * object.h, object.c: added mono_install_handler() so that the runtime
34599         can install an handler for exceptions generated in C code (with
34600         mono_raise_exception()). Added C struct for System.Delegate.
34601         * pedump.c: removed arch_create_jit_trampoline.
34602         * reflection.c: some cleanups to allow registering user strings and
34603         later getting a token for methodrefs and fieldrefs before the assembly
34604         is built.
34605         * row-indexes.h: updates and fixes from the new ECMA specs.
34606
34607 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
34608
34609         * class.h, class.c: add enum_basetype field to MonoClass.
34610         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
34611         to get index in the constant table reated to a field, param or
34612         property.
34613         * reflection.h, reflection.c: handle constructors. Set public-key and
34614         version number of the built assembly to 0.
34615         * row-indexes.h: update from new ECMA spec.
34616
34617 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34618
34619         * class.h, class.c: add a max_interface_id to MonoClass.
34620         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
34621         since it's used to do that. Added mono_type_type_from_obj().
34622         Make GetType() return NULL instead of segfaulting if the type was not
34623         found. Handle simple arrays in assQualifiedName.
34624         * object.h: add a struct to represent an Exception.
34625         * reflection.c: output call convention in method signature.
34626         Add code to support P/Invoke methods and fixed offsets for fields.
34627
34628 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
34629
34630         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
34631         the value.
34632         * icall.c: use mono_array_addr instead of array->vector: fixes the
34633         reflection image writing.
34634         * reflection.c: init call convention byte to 0 in method signature.
34635         Encode the property signature. Don't output property-related methods
34636         twice. Really process the properties for a type (don't cast a field to
34637         a property, my mom always told me that).
34638         Fix 64 bit issues in pointer alignment in a different and more
34639         readable way.
34640
34641 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
34642
34643         * loader.h: Removed type class from MonoDefaults, added monotype
34644
34645         * loader.c: Loaded MonoType, removed loading of Type
34646
34647         * icall.c (my_mono_new_object): Now returns a System.MonoType,
34648         and fills in System.Type._impl with a RuntimeTypeHandle rather
34649         than the actual MonoClass *
34650
34651         (ves_icall_type_from_handle): change from type_class to
34652         monotype_class
34653
34654         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
34655         implemented
34656
34657         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
34658         implemented
34659
34660         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
34661
34662         (ves_icall_System_Reflection_Assembly_GetType): implemented
34663
34664         (ves_icall_System_MonoType_assQualifiedName): implemented
34665
34666         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
34667
34668 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
34669
34670         * assembly.c (mono_assembly_open): Implement a cache for the
34671         assemblies. 
34672
34673         (mono_assembly_close): only destroy the assembly when the last
34674         reference is gone.
34675         
34676 2001-11-09  Dick Porter  <dick@ximian.com>
34677
34678         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
34679
34680 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
34681
34682         * class.c (mono_class_metadata_init): bug fix: compute the right slot
34683
34684 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34685
34686         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
34687         from Martin Weindel.
34688         * object.h: add mono_string_chars ().
34689
34690 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
34691
34692         * reflection.c (build_compressed_metadata): Eliminates warnings
34693         and uses 64-bit clean code.
34694
34695         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
34696         (mono_type_equal): Change signature to eliminate warnings.
34697
34698 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34699
34700         * icall.c, loader.c: remove the internalcall array constructors.
34701         Changes to match the new MonoArray structure.
34702         * object.h, object.c: an array object doesn't allocate an extra
34703         vector. Add mono_array_new_full () to create jagged arrays easily.
34704
34705 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34706
34707         * metadata.h, metadata.c: add mono_metadata_field_info () to
34708         retreive all the info about a field from vairous tables.
34709         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34710         * class.h, class.c: augment MonoClassField with more info.
34711         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34712         policy and load a field's RVA if needed.
34713
34714 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34715
34716         * class.c (mono_class_metadata_init): create a trampoline for all
34717         virtual functions instead of actually compiling them.
34718
34719 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34720
34721         * class.h, class.c: include name in MonoClassField.
34722         * class.c: fix fundamental type of System.Object and System.String.
34723         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34724         tokens in ldtoken.
34725         * icall.c: remove internalcalls for the Reflection stuff that is now
34726         done in C# code.
34727         * loader.c: mono_field_from_memberref () implementation.
34728         * mono-endian.c: thinko (s/struct/union/g).
34729         * object.c, object.h: make the mono_string_* prototypes actually use
34730         MonoString instead of MonoObject.
34731         * reflection.c, reflection.h: updates for changes in the reflection
34732         code in corlib: we use C structures that map to the actual C# classes.
34733         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34734         fat method header if needed and use the info from the ILGenerator for
34735         methods. Handle fields in types. Misc fixes.
34736
34737 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34738
34739         * class.c (mono_class_metadata_init): bug fix: always allocate
34740         space for static class data
34741
34742 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34743
34744         * class.c (mono_compute_relative_numbering): use relative
34745         numbering to support fast runtime type checks.
34746
34747 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34748
34749         * class.c (mono_class_create_from_typeref): added debugging output
34750         to print class name when MonoDummy is returned instead of real class
34751
34752 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34753
34754         * class.c (mono_class_metadata_init): interface offset table now
34755         contains pointers into the vtable - this is more efficient for the jit
34756
34757 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34758
34759         * class.c (mono_class_metadata_init): use a temporary vtable (the
34760         old algorithm only worked for the interpreter, but not for the jit)
34761
34762 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34763
34764         * loader.c (method_from_memberref): use mono_class_get to get the
34765         class of an array instead of using System.Array directly.
34766         (mono_get_method): also add MEMBERREF methods to the method cache
34767         which usefull for arrays.
34768
34769 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34770
34771         * pedump.c (arch_compile_method): added to compute vtable entry
34772
34773         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34774         number of interfaces.
34775         
34776         * class.h: merged MonoArrayClass into MonoClass
34777
34778         * class.c (mono_class_create_from_typedef): compute the vtable size and
34779         allocate space to include the vtable inside MonoClass
34780         (mono_class_metadata_init): initialize the vtable
34781
34782 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34783
34784         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34785         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34786         * image.c: endian fixes by Laurent Rioux.
34787         * object.h, object.c: rename MonoStringObject to MonoString and
34788         MonoArrayObject to MonoArray. Change some function names to conform to
34789         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34790         guint16* as first argument, so don't use char*.
34791         Provide macros to do the interesting things on arrays in a portable way.
34792         * threads-pthread.c: updates for the API changes and #include <sched.h>
34793         (required for sched_yield()).
34794         * icall.c: updates for the API changes above.
34795         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34796         platforms that need them.
34797
34798 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34799
34800         * class.c: set the correct type for all the fundamental
34801         type when loading the class.
34802
34803 2001-10-05  Dick Porter  <dick@ximian.com>
34804
34805         * threads-pthread.c (pthread_mutex_timedlock): Simple
34806         compatibility version for C libraries that lack this call.
34807
34808 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34809
34810         * class.c: MonoTypes stored in MonoClass are stored as
34811         fundamental MonoTypes when the class represents a
34812         fundamental type (System.Int32, ...).
34813         The TypeHandle return by ldtoken is a MonoType*.
34814         * icall.c: ves_icall_get_data_chunk () write out all the
34815         PE/COFF stuff. Implement ves_icall_define_method (),
34816         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34817         * image.c: properly skip unknown streams.
34818         * loader.h, loader.c: add type_class to mono_defaults.
34819         * metadata.c, metadata.h: export compute_size () as
34820         mono_metadata_compute_size () with a better interface.
34821         Typo and C&P fixes.
34822         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34823         * reflection.c, reflection.h: many cleanups, fixes, output method
34824         signatures and headers, typedef and typeref info, compress the metadata
34825         tables, output all the heap streams, cli header etc.
34826         * row-indexes.h: typo fixes.
34827
34828 2001-10-04  Dick Porter  <dick@ximian.com>
34829
34830         * object.h: Add a synchronisation mutex struct to MonoObject
34831
34832         * object.c (mono_new_object): Initialise the object
34833         synchronisation mutexes
34834
34835         * icall.c: System.Threading.Monitor internal calls
34836         
34837         * threads-pthread.h:
34838         * threads-pthread.c: System.Threading.Monitor internal calls
34839
34840         * threads-types.h: New file, includes the system-specific thread
34841         structures
34842         
34843         * threads-pthread-types.h:
34844         * threads-pthread-types.c: New files, handle pthread-specific
34845         synchronisation types
34846
34847         * threads-dummy-types.h: 
34848         * threads-dummy-types.c: New files of dummy support for
34849         thread-specific types
34850
34851         * metadata.c:
34852         * image.c:
34853         * pedump.c: include mono-endian.h not endian.h
34854         
34855         * Makefile.am: More threads files.
34856         Name mono-endian.h not endian.h
34857
34858 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
34859
34860         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
34861         stuff and implement a few more bits.
34862         * icall.c: a field needs to be dereferenced twice. Do not use the same
34863         name for two variables in the same scope.
34864         * image.c, image.h: cleanups.
34865
34866 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
34867
34868         * class.c (mono_class_metadata_init): bug fix: compute the right size
34869
34870 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
34871
34872         * icall.c: implemented some of the Reflection internalcalls.
34873         * image.c, image.h: start writing out the PE/COFF image.
34874         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
34875         that does the reverse than decode_blob_size ().
34876         * object.c: use mono_metadata_encode_value (). Move here
34877         temporary implementation of mono_string_to_utf8 ().
34878         * rawbuffer.c: make malloc_map static.
34879
34880 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34881
34882         * metadata.c: fix type comparison for arrays.
34883         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
34884         Added a couple of new classes to monodefaults.
34885         * icall.c: added a couple of Reflection-related internalcalls.
34886         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34887         Added a byval_arg MonoType to MonoClass.
34888
34889 2001-09-28  Dick Porter  <dick@ximian.com>
34890
34891         * icall.c:
34892         * threads-pthread.h: 
34893         * threads-pthread.c: Implemented internal calls for
34894         LocalDataStoreSlot operations.  Applied mutexes around all shared
34895         data.  Reworked the thread creation and Start() operations to
34896         avoid a race condition.
34897         
34898         * threads-dummy.h:
34899         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34900
34901 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34902
34903         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34904
34905 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34906
34907         * class.c, loader.c: warn and return NULL instead of erroring out.
34908         * icall.c: added System.AppDomain::getCurDomain().
34909         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34910
34911 2001-09-25  Dick Porter  <dick@ximian.com>
34912
34913         * threads-pthread.h:
34914         * threads-pthread.c: Implemented timed thread joining and added
34915         System.Threading.Thread::Join_internal internal call
34916
34917         * icall.c: Added System.Threading.Thread::Join_internal internal call
34918
34919         * threads-dummy.h:
34920         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34921
34922 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34923
34924         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34925         mono_string_intern () to implement the semantics of the ldstr opcode
34926         and the interning of System.Strings.
34927         * icall.c: provide hooks to make String::IsIntern and String::Intern
34928         internalcalls.
34929
34930 2001-09-23  Dick Porter  <dick@ximian.com>
34931
34932         * threads-dummy.c: 
34933         * threads-dummy.h: New files of dummy threading routines
34934
34935         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
34936         support code based on system specifics
34937
34938         Rename PTHREAD_LIBS to THREAD_LIBS
34939         
34940 2001-09-23  Dick Porter  <dick@ximian.com>
34941
34942         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
34943         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
34944         internal calls.
34945         (mono_thread_init): Set up a Thread object instance to return when
34946         the main thread calls Thread.CurrentThread
34947         (mono_thread_cleanup): Wait for all subthreads to exit
34948
34949         * icall.c: New internal calls for System.Threading.Thread::Sleep
34950         (including Schedule) and CurrentThread
34951
34952         * threads.h: New file, to insulate thread-specific stuff from the
34953         rest of the code
34954
34955 2001-09-21  Dick Porter  <dick@ximian.com>
34956
34957         * threads-pthread.h: 
34958         * threads-pthread.c: New file, for handling pthreads-style
34959         threading support.  Start() now starts a new thread and executes
34960         the ThreadStart delegate instance.
34961
34962         * icall.c: Added the internalcall for
34963         System.Threading.Thread::Start_internal
34964
34965         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
34966
34967 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
34968
34969         * loader.c: work around the different signatures for delegates
34970         constructors csc generates in compiled code vs the ones compiled in mscorlib.
34971
34972 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34973
34974         * class.h, class.c: add mono_class_get_field_from_name ().
34975         * *: Fix C comments and other ANSI C issues.
34976
34977 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
34978
34979         * endian.h, assembly.c: fix some endianness issues.
34980
34981 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
34982
34983         * loader.h, load.c: add delegate_class to mono_defaults.
34984         Handle runtime provided methods in mono_get_method ().
34985
34986 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
34987
34988         * loader.c (mono_get_method): use pinvoke for internal call
34989
34990         * icall.c: use pinvoke for internal call
34991
34992         * loader.c (method_from_memberref): set the method name
34993
34994 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
34995
34996         * metadata.c: help the compiler generate better code for
34997         mono_class_from_mono_type ().
34998
34999 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
35000
35001         * class.c (mono_class_metadata_init): delayed computing of the
35002         class size to mono_class_metadata_init ()
35003
35004 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
35005
35006         * class.c, class.h: add an interfaces member to MonoClass.
35007         * image.c, image.h: add assembly_name field to MonoImage
35008         from the assembly table.
35009         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
35010
35011 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35012
35013         * class.c: Handle Array in mono_class_from_mono_type ().
35014         * metadata.c, pedump.c: some endian fixes.
35015
35016 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35017
35018         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
35019         * metadata.c: fix small problem introduced with the latest commit.
35020
35021 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
35022
35023         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
35024         We don't need a MonoMetadata pointer anymore to compare signatures in
35025         mono_metadata_signature_equal (), update callers.
35026         Reduced memory usage an number of allocations for MonoMethodHeader and
35027         MonoMethodSignature.
35028
35029 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
35030
35031         * metadata.c: added compare for szarray.
35032
35033 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
35034
35035         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
35036         and add a couple more types to it and mono_defaults. Give an hint on
35037         classes that need implementing in our corlib and are referenced
35038         in mscorlib.
35039
35040 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
35041
35042         * class.h, class.c: keep track if a class is also an Enum.
35043         * loader.c: Implement a couple more types for use in libffi
35044         marshalling. Gives better diagnostics when failing to dlopen
35045         a library. Set method->klass for P/Invoke methods, too.
35046
35047 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35048
35049         * class.c, class.h: add a MonoType this_arg to MonoClass that
35050         represents a pointer to an object of the class' type that
35051         can be used by the interpreter and later the type cache.
35052         Add best guess alignment info for valuetype objects.
35053
35054 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35055
35056         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35057         into MonoType: one less level of indirection and allocation and
35058         simplifies quite a bit of code. Added cache for MonoTypes that are
35059         used frequently, so that we don't need to allocate them all the time.
35060
35061 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35062
35063         * class.c (mono_class_create_from_typedef): System.Enum is also a
35064         value type, although it does not derive from System.ValueType
35065         (maybe a bug in the ms compiler?)
35066
35067         * metadata.c (mono_type_size): return the right size for value types
35068
35069         * loader.c (mono_get_method): only initialize method header if not abstract
35070
35071         * class.c (mono_class_from_mono_type): use mono_default values. 
35072
35073 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35074
35075         * *: use MonoClass pointers instead of <type_tokens>
35076         
35077         * class.h: new flag: metadata_inited.
35078
35079         * class.c (mono_class_metadata_init): impl.
35080         (mono_class_instance_size): impl.
35081         (mono_class_data_size): impl.
35082
35083 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35084
35085         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35086         MonoClass now has the name and name_space fields. 
35087         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35088         mono_get_method () takes and optional MonoClass as argument.
35089         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35090         instead that takes advantage of a map from class names to typedef
35091         tokens in MonoImage.
35092
35093 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35094
35095         * metadata.c: zero is not a valid alignment boundary.
35096         Merge MONO_TYPE_VOID in default decoding code.
35097
35098 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35099
35100         * image.h: merged MonoMetadata into MonoImage
35101
35102         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35103         identify the type of elements.
35104
35105 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35106
35107         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35108         * cil-coff.h: split MonoMSDOSHeader and add size info.
35109         * image.c: add some consistency checks.
35110         * metadata.c: fix row size computation: one programmer
35111         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35112         add explanation for the locator routine.
35113         Fix decoding of size in method header.
35114         
35115 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35116
35117         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35118         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35119         function from gnome-libs.  This uses the right path separator
35120         based on the OS, and also works around a bug in some systems where
35121         a double slash is not allowed. 
35122         (default_assembly_name_resolver): Use g_concat_dir_and_file
35123         (mono_assembly_open): ditto.
35124
35125 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35126
35127         * metadata.c (mono_metadata_signature_equal): impl.
35128
35129         * *: void is now a realy MonoType (instead of using NULL)
35130         
35131         * metadata.c (do_mono_metadata_parse_type): use
35132         mono_metadata_parse_type to parse void value.
35133
35134 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35135
35136         * metadata.c, metadata.h: in the signature and method header store
35137         only the space required for holding the loca vars and incoming arguments.
35138
35139 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35140
35141         * metadata.c (do_mono_metadata_parse_type): treat void like any
35142         other type (instead of assigning NULL);
35143
35144 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35145
35146         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35147
35148 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35149
35150         * image.c (do_mono_image_open): added a cache for arrays.
35151
35152 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35153
35154         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35155         decode a single column from a row in a metadata table and changes
35156         to take advantage of it in the typedef locator (gives a nice speed up).
35157         Store offset info for function params.
35158
35159 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35160
35161         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35162
35163 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35164
35165         * assembly.c: how could mono_assembly_close () had ever worked?
35166         * metadata.c, metadata.h: provide offset info for local vars.
35167         Implement mono_type_size () to take care of alignment as well
35168         as size (it was mono_field_type_size in cli/class.c before).
35169
35170 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35171
35172         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35173
35174         * assembly.h (CORLIB_NAME): set to corlib.dll
35175
35176         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35177
35178 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35179
35180         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35181         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35182         tokentype.h: massive namespace cleanup.
35183
35184 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35185
35186         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35187
35188 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35189
35190         * metadata.c (mono_metadata_free_type): added check for type !=
35191         NULL (void) before calling mono_metadata_free_type()
35192
35193 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35194
35195         * metadata.h, row_indexes.h: added header with enumerations to use
35196         to index in the columns from tables in metadata and to decode coded
35197         tokens: we should start using this instead of embedding magic numbers
35198         all over the code.
35199
35200 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35201
35202         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35203         Move metadata_t info from cli_image_info_t to MonoImage, where
35204         it's easily accessible. Changed all the uses accordingly.
35205         Added the method and class caches to MonoImage.
35206         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35207         and mono_metadata_decode_value () signature to be more consistent
35208         with the other parse functions (and simplify code). Taken advantage
35209         of zero-length array allocation with GCC. Removed reduntant (and
35210         wrong) MonoFieldType struct and use MonoParam instead. Changed
35211         mono_metadata_parse_field_type () to use common code for parsing.
35212         Added mono_metadata_typedef_from_field () and
35213         mono_metadata_typedef_from_method () to lookup a typedef index from a
35214         field or method token.
35215         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35216
35217 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35218
35219         * metadata.c (mono_metadata_parse_field_type): Implement. 
35220         (do_mono_metadata_parse_type): Split engine from
35221         mono_metadata_parse_type, so that we can create smaller structures
35222         for things that just have one pointer to the MonoType (look at
35223         the MonoFieldType)
35224
35225 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35226
35227         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35228         as Jan Gray found out, it is incorrect. 
35229
35230 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35231
35232         * assembly.c: Implement asssembly loading.  This loads an image
35233         and loads all the referenced assemblies.  Come to think of it, we
35234         could always do lazy loading of the assemblies. 
35235
35236         * image.c (mono_image_open): Keep loaded images in a hashtable.
35237
35238         * image.h (MonoImage): Add reference count.
35239
35240 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35241
35242         * assembly.c (mono_assembly_open): Keep track of the file name in
35243         case the assembly has no ASSEMBLY table.
35244
35245         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35246         from get.c here.
35247
35248 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35249
35250         * metadata.c, metadata.h: decode local vars in method header
35251         parse function. Change callers accordingly.
35252
35253 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35254
35255         * metadata.h, cil-coff.h: protect against multiple inclusion.
35256         Added some new structures to hold information decoded from metadata:
35257         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35258         and relevant decoding/free functions.
35259         * metadata.c: implement decoding functions. Add warning for out of bounds
35260         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35261         all the info about a method signature and invocation. Remove check on
35262         uninitialized local var in parse_mh() and fix memory leak.
35263
35264 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35265
35266         * metadata.h: More macros.
35267
35268         * tokentype.h: New file.
35269
35270 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35271
35272         * assembly.c: added a consistency check and initialize
35273         some structures with g_new0().
35274         * metadata.c: fixed a couple more bugs in table size computation
35275         and add other checks for out-of bound access to metadata.
35276
35277 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35278
35279         * metatada.c: fix bugs computing table sizes. Spew a
35280         warning when index in string heap is out of bounds.
35281
35282 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35283
35284         * metadata.h: Add a couple of macros to manipulate tokens. 
35285
35286 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35287
35288         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35289         cli_section_tables).
35290
35291 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35292
35293         * metadata.c (mono_metadata_user_string): New function, provides
35294         access to the UserString heap. 
35295
35296 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35297
35298         * metadata.c: Add inline documentation.
35299
35300 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35301
35302         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35303         files. 
35304
35305 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35306
35307         * typeattr.h: New file, TypeAttribute flags. 
35308
35309 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35310
35311         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35312         mono_assembly_ensure_section): Section loading code.
35313         (load_section_tables): Load the sections.
35314
35315         * mono/metadata/metadata.c (mono_metadata_locate_token,
35316         mono_metadata_locate): Functions to locate the information
35317         definition given a token or a table and an index.
35318         (mono_metadata_compute_table_bases): New.
35319         (compute_size): New function to compute the sizes of the various
35320         tables.
35321
35322         * mono/metadata/metadata.h: Finish listing the different index
35323         types. 
35324
35325         * mono/metadata/pedump.c: Improve to dump new information.
35326
35327 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35328
35329         * mono/metadata/metadata.c: Entered all the tables matching
35330         Beta2. 
35331
35332         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
35333
35334
35335
35336